/* ============================================================
   SUBLIME CYBER FORENSICS LLP — HOMEPAGE STYLESHEET (v2)
   Dark premium enterprise cybersecurity theme.
   Signal Orange (#FF5A2F) is reserved for action — never decoration.
   ============================================================ */

@import url('https://api.fontshare.com/v2/css?f[]=general-sans@500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ----------------------------------------
   1. RESET
---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg, canvas { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button { font: inherit; border: none; background: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

/* ----------------------------------------
   2. DESIGN TOKENS
---------------------------------------- */
:root {
  --bg-base: #0B0C0E;
  --bg-surface: #14161A;
  --bg-elevated: #1B1E23;
  --border-subtle: #232730;
  --border-default: #34373D;
  --border-hairline: #1E2127;

  --text-primary: #F4F5F6;
  --text-secondary: #9CA0A8;
  --text-tertiary: #5E626B;

  --signal: #FF5A2F;
  --signal-hover: #FF7A52;
  --signal-press: #E04A22;
  --signal-muted: rgba(255, 90, 47, 0.10);
  --signal-border: rgba(255, 90, 47, 0.35);
  --signal-glow: rgba(255, 90, 47, 0.28);

  --sev-critical: #E5383B;

  --font-display: 'General Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px; --sp-5: 24px;
  --sp-6: 32px; --sp-7: 48px; --sp-8: 64px; --sp-9: 96px; --sp-10: 128px;

  --ease-instrument: cubic-bezier(0.2, 0.8, 0.2, 1);
  --dur-micro: 120ms;
  --dur-standard: 200ms;
  --dur-emphasis: 420ms;

  --content-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* ----------------------------------------
   3. BASE
---------------------------------------- */
body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image:
    linear-gradient(180deg, rgba(255, 90, 47, 0.025), transparent 40%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0px, rgba(255, 255, 255, 0.012) 1px, transparent 1px, transparent 3px);
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }

::selection { background: var(--signal-muted); color: var(--signal-hover); }

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Eyebrow labels — plain uppercase Inter, no terminal/mono treatment */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}
.section-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--signal);
  box-shadow: 0 0 8px var(--signal-glow);
  flex-shrink: 0;
}

.section-heading {
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.015em;
  max-width: 640px;
  margin-bottom: var(--sp-3);
}

.section-subhead {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: var(--sp-8);
}

/* ----------------------------------------
   4. LAYOUT
---------------------------------------- */
main > section {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--sp-9) var(--sp-7);
  border-bottom: 1px solid var(--border-hairline);
}
main > section:last-child { border-bottom: none; }

@media (max-width: 720px) {
  main > section { padding: var(--sp-8) var(--sp-5); }
}

/* ----------------------------------------
   5. BUTTONS
---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: background var(--dur-standard) var(--ease-instrument),
              border-color var(--dur-standard) var(--ease-instrument),
              box-shadow var(--dur-standard) var(--ease-instrument),
              transform var(--dur-micro) var(--ease-instrument);
}
.btn:active { transform: scale(0.98); }

.btn--primary { background: var(--signal); color: #0B0C0E; }
.btn--primary:hover { background: var(--signal-hover); box-shadow: 0 0 0 4px var(--signal-muted); }

.btn--secondary { background: transparent; color: var(--text-primary); border-color: var(--border-default); }
.btn--secondary:hover { border-color: var(--signal); background: var(--signal-muted); color: var(--signal-hover); }

.btn--danger { background: transparent; color: var(--sev-critical); border-color: rgba(229, 56, 59, 0.4); }
.btn--danger:hover { background: rgba(229, 56, 59, 0.1); border-color: var(--sev-critical); }

.btn--lg { padding: 15px 28px; font-size: 15px; }

/* ----------------------------------------
   6. HEADER
---------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(11, 12, 14, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-hairline);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--sp-4) var(--sp-7);
}

@media (max-width: 860px) {
  .site-header__inner { padding: var(--sp-4) var(--sp-5); }
}

.site-header__logo {
  display: flex;
  align-items: center;
}

.site-header__logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.site-header__nav-list { display: flex; gap: var(--sp-6); }
.site-header__nav-list a { font-size: 14px; color: var(--text-secondary); transition: color var(--dur-standard) var(--ease-instrument); }
.site-header__nav-list a:hover { color: var(--text-primary); }

.site-header__actions { display: flex; align-items: center; gap: var(--sp-4); }
.site-header__actions .btn { padding: 9px 16px; font-size: 13px; }

.site-header__menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  position: relative;
  flex-shrink: 0;
}
.site-header__menu-toggle span,
.site-header__menu-toggle span::before,
.site-header__menu-toggle span::after {
  content: '';
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--text-primary);
  transition: transform var(--dur-standard) var(--ease-instrument), opacity var(--dur-standard) var(--ease-instrument);
}
.site-header__menu-toggle span { top: 17px; }
.site-header__menu-toggle span::before { content: ''; top: -7px; }
.site-header__menu-toggle span::after { content: ''; top: 7px; }
.site-header__menu-toggle[aria-expanded="true"] span { background: transparent; }
.site-header__menu-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.site-header__menu-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .site-header__nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-default);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--dur-emphasis) var(--ease-instrument);
  }
  .site-header__nav.is-open { max-height: 360px; }
  .site-header__nav-list { flex-direction: column; gap: 0; padding: var(--sp-4) var(--sp-7); }
  .site-header__nav-list li { border-bottom: 1px solid var(--border-hairline); }
  .site-header__nav-list a { display: block; padding: var(--sp-4) 0; }
  .site-header__actions .btn--danger { display: none; }
  .site-header__menu-toggle { display: block; }
}

/* Logo */
.site-header__logo-img { height: 38px; }
@media (max-width: 860px) {
  .site-header__logo-img { height: 30px; }
}

/* Nav links: replace the flat color-swap hover with a thin
   underline that grows from center — quieter than a background
   change, reads as "premium" rather than "clicked a button." */
.site-header__nav-list a {
  position: relative;
  padding-bottom: 4px;
}
.site-header__nav-list a::after {
  content: '';
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 1px;
  background: var(--signal);
  transition: left var(--dur-standard) var(--ease-instrument),
              right var(--dur-standard) var(--ease-instrument);
}
.site-header__nav-list a:hover::after,
.site-header__nav-list a.is-active::after {
  left: 0;
  right: 0;
}
.site-header__nav-list a.is-active { color: var(--text-primary); }

/* Sticky header: subtle shadow + slightly tighter padding once
   the page has scrolled, so the bar feels anchored rather than
   just "stuck." Requires the HeaderState scroll listener in script.js. */
.site-header__inner {
  transition: padding var(--dur-standard) var(--ease-instrument);
}
.site-header.is-scrolled {
  box-shadow: 0 12px 24px -16px rgba(0, 0, 0, 0.6);
}
.site-header.is-scrolled .site-header__inner {
  padding-top: var(--sp-3);
  padding-bottom: var(--sp-3);
}

/* ----------------------------------------
   7. HERO — PHOTO SLIDER

   NOTE ON COLOR: slide text sits on top of a photograph, not on
   the page background — so it intentionally uses literal white/
   near-white values instead of var(--text-primary), which is
   near-black under the current light theme and would be invisible
   here. The orange tag and the primary button still use the
   normal --signal token, since those work against any backdrop.
---------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: min(86vh, 880px);
  min-height: 560px;
}

.hero-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--ease-instrument);
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 9, 11, 0.82) 0%,
    rgba(8, 9, 11, 0.62) 32%,
    rgba(8, 9, 11, 0.22) 60%,
    rgba(8, 9, 11, 0.05) 80%
  );
}

.hero-slide__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--sp-7);
  margin: 0 auto;
  max-width: var(--content-width);
}

.hero-slide__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: var(--sp-5);
  max-width: 480px;
}
.hero-slide__tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--signal);
  box-shadow: 0 0 8px var(--signal-glow);
  flex-shrink: 0;
}

.hero-slide__headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #F7F8F9;
  max-width: 540px;
  margin-bottom: var(--sp-6);
}

.hero-slide .btn--primary { align-self: flex-start; }

/* ----------------------------------------
   DOTS
---------------------------------------- */
.hero-slider__dots {
  position: absolute;
  z-index: 2;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--sp-3);
}

.hero-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: width var(--dur-standard) var(--ease-instrument),
              background var(--dur-standard) var(--ease-instrument),
              border-color var(--dur-standard) var(--ease-instrument);
}
.hero-slider__dot:hover { border-color: #FFFFFF; }
.hero-slider__dot.is-active {
  width: 22px;
  border-radius: 4px;
  background: var(--signal);
  border-color: var(--signal);
}
.hero-slider__dot:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

/* ----------------------------------------
   SCROLL CUE — sits on top of the slider rather than the old
   static hero background
---------------------------------------- */
.hero__scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: var(--sp-9);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--dur-standard) var(--ease-instrument);
}
.hero__scroll-cue:hover { color: #FFFFFF; }
.hero__scroll-chevron { animation: heroScrollBounce 2.2s var(--ease-instrument) infinite; }
@keyframes heroScrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

/* ----------------------------------------
   RESPONSIVE
---------------------------------------- */
@media (max-width: 720px) {
  .hero-slider { height: 78vh; min-height: 480px; }
  .hero-slide__content { padding: 0 var(--sp-5); }
  .hero-slide__headline { font-size: clamp(28px, 7vw, 36px); }
  .hero__scroll-cue { display: none; }
}

/* ----------------------------------------
   MOTION PREFERENCES
---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hero__scroll-chevron { animation: none; }
}



/* ----------------------------------------
   8. CYBERSECURITY SERVICES — ALL SEVEN, EQUAL WEIGHT
---------------------------------------- */
.services { position: relative; }
.services::before { display: none; }
.services > * { position: relative; z-index: 1; }

.services__intro { margin-bottom: var(--sp-9); }
.services__intro .section-subhead { margin-bottom: 0; }

.service-list-equal {
  display: flex;
  flex-direction: column;
  gap: var(--sp-9);
  margin-bottom: var(--sp-9);
}

.service-row-equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}

.service-row-equal--reverse .service-row-equal__image { order: 2; }
.service-row-equal--reverse .service-row-equal__content { order: 1; }

.service-row-equal__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.service-row-equal__title {
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-3);
}

.service-row-equal__desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: var(--sp-4);
}

.service-row-equal__link {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--signal);
  transition: color var(--dur-standard) var(--ease-instrument);
}
.service-row-equal__link span { display: inline-block; transition: transform var(--dur-standard) var(--ease-instrument); }
.service-row-equal__link:hover { color: var(--signal-hover); }
.service-row-equal__link:hover span { transform: translateX(3px); }

/* Section CTA */
.services__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-5);
  padding-top: var(--sp-7);
  border-top: 1px solid var(--border-hairline);
}
.services__cta-text { font-size: 17px; color: var(--text-secondary); }

@media (max-width: 860px) {
  .service-row-equal,
  .service-row-equal--reverse {
    grid-template-columns: 1fr;
  }
  .service-row-equal--reverse .service-row-equal__image { order: 1; }
  .service-row-equal--reverse .service-row-equal__content { order: 2; }
}

@media (max-width: 720px) {
  .services__cta { flex-direction: column; align-items: flex-start; }
}

/* ----------------------------------------
   9. METHODOLOGY
---------------------------------------- */
.methodology__intro { margin-bottom: var(--sp-8); }
.methodology__intro .section-subhead { margin-bottom: var(--sp-5); }

.methodology__frameworks {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--sp-3) var(--sp-4);
}

.methodology__frameworks-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.methodology__frameworks-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: 13px;
  color: var(--text-secondary);
}
.methodology__frameworks-list li { position: relative; padding-left: var(--sp-4); }
.methodology__frameworks-list li:first-child { padding-left: 0; }
.methodology__frameworks-list li:not(:first-child)::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--border-default);
}

.methodology-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: var(--sp-6);
}

.methodology-step {
  position: relative;
  padding-top: var(--sp-7);
  padding-right: var(--sp-5);
}

.methodology-step__line {
  position: absolute;
  top: 13px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-default);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease-instrument),
              background-color var(--dur-standard) var(--ease-instrument);
}
.methodology-steps.is-visible .methodology-step__line { transform: scaleX(1); }
.methodology-steps.is-visible .methodology-step:nth-child(1) .methodology-step__line { transition-delay: 0s; }
.methodology-steps.is-visible .methodology-step:nth-child(2) .methodology-step__line { transition-delay: 0.12s; }
.methodology-steps.is-visible .methodology-step:nth-child(3) .methodology-step__line { transition-delay: 0.24s; }
.methodology-steps.is-visible .methodology-step:nth-child(4) .methodology-step__line { transition-delay: 0.36s; }
.methodology-steps.is-visible .methodology-step:nth-child(5) .methodology-step__line { transition-delay: 0.48s; }

.methodology-step:hover .methodology-step__line { background: var(--signal); }

.methodology-step__number {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 1px solid var(--border-default);
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  transition: background var(--dur-standard) var(--ease-instrument),
              border-color var(--dur-standard) var(--ease-instrument),
              color var(--dur-standard) var(--ease-instrument);
}
.methodology-step:hover .methodology-step__number {
  background: var(--signal);
  border-color: var(--signal);
  color: var(--bg-base);
}

.methodology-step__title {
  font-size: 17px;
  margin-bottom: var(--sp-2);
  transition: color var(--dur-standard) var(--ease-instrument);
}
.methodology-step:hover .methodology-step__title { color: var(--signal); }

.methodology-step__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.methodology-step__deliverables {
  margin-top: var(--sp-4);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--dur-standard) var(--ease-instrument),
              transform var(--dur-standard) var(--ease-instrument);
  pointer-events: none;
}
.methodology-step:hover .methodology-step__deliverables,
.methodology-step:focus-within .methodology-step__deliverables {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.methodology-step__deliverables-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--sp-2);
}

.methodology-step__deliverables ul { display: flex; flex-direction: column; gap: 4px; }
.methodology-step__deliverables li {
  font-size: 12px;
  color: var(--text-secondary);
  position: relative;
  padding-left: 11px;
}
.methodology-step__deliverables li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--text-tertiary);
}

.methodology__why {
  margin-top: var(--sp-8);
  padding-top: var(--sp-7);
  border-top: 1px solid var(--border-hairline);
  max-width: 720px;
}

.methodology__why-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: var(--sp-3);
}

.methodology__why-text {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .methodology-steps { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .methodology-step__line { display: none; }
}
@media (max-width: 560px) {
  .methodology-steps { grid-template-columns: 1fr; }
  .methodology__frameworks { flex-direction: column; align-items: flex-start; gap: var(--sp-2); }
}

/* ----------------------------------------
   10. FRAMEWORKS + REGULATORY ALIGNMENT
---------------------------------------- */
.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-hairline);
  border: 1px solid var(--border-hairline);
  margin-bottom: var(--sp-8);
}

.framework-card { background: var(--bg-base); padding: var(--sp-6); transition: background var(--dur-standard) var(--ease-instrument); }
.framework-card:hover { background: var(--bg-surface); }

.framework-card__name { font-family: var(--font-mono); font-size: 14px; font-weight: 500; color: var(--signal); display: block; margin-bottom: var(--sp-3); }
.framework-card__desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

@media (max-width: 860px) { .framework-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .framework-grid { grid-template-columns: 1fr; } }

.regulatory { padding-top: var(--sp-7); border-top: 1px solid var(--border-hairline); }
.regulatory__heading { font-size: 18px; margin-bottom: var(--sp-2); }
.regulatory__subhead { font-size: 14px; color: var(--text-secondary); max-width: 540px; margin-bottom: var(--sp-6); }

.regulatory-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--sp-5); }

.regulatory-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding-left: var(--sp-4);
  border-left: 2px solid var(--border-default);
}

.regulatory-item__abbr { font-size: 15px; font-weight: 600; color: var(--text-primary); }
.regulatory-item__full { font-size: 12px; color: var(--text-tertiary); line-height: 1.5; }

@media (max-width: 860px) { .regulatory-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .regulatory-row { grid-template-columns: 1fr; } }

/* ----------------------------------------
   10b. PULL QUOTE
---------------------------------------- */
.pull-quote {
  position: relative;
  max-width: none;
  margin: 0;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border-hairline);
}

.pull-quote__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 11, 0.72), rgba(8, 9, 11, 0.78));
}

.pull-quote__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: var(--sp-9) var(--sp-7);
  text-align: center;
}

.pull-quote__mark {
  display: block;
  margin: 0 auto var(--sp-4);
  color: var(--signal);
}

.pull-quote__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #F7F8F9;
}

@media (max-width: 720px) {
  .pull-quote__inner { padding: var(--sp-7) var(--sp-5); }
  .pull-quote__mark { width: 32px; height: 24px; }
}

/* ----------------------------------------
   11. INDUSTRIES
---------------------------------------- */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }

.industry-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-3);
  transition: border-color var(--dur-standard) var(--ease-instrument),
              transform var(--dur-standard) var(--ease-instrument);
}
.industry-card:hover { border-color: var(--border-default); transform: translateY(-3px); }

.industry-card__title { font-size: 18px; }
.industry-card__desc { font-size: 14px; color: var(--text-secondary); flex-grow: 1; }
.industry-card__link { font-family: var(--font-mono); font-size: 12px; color: var(--signal); letter-spacing: 0.02em; transition: color var(--dur-standard) var(--ease-instrument); }
.industry-card__link:hover { color: var(--signal-hover); }

@media (max-width: 860px) { .industry-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .industry-grid { grid-template-columns: 1fr; } }

/* Teaser variant — 4 columns, one row */
.industry-grid--teaser {
  grid-template-columns: repeat(4, 1fr);
}

.industry-card--more {
  background: transparent;
  border-style: dashed;
  justify-content: center;
}
.industry-card--more .industry-card__title { color: var(--text-secondary); }
.industry-card--more:hover {
  border-color: var(--signal-border);
  background: var(--bg-surface);
}
.industry-card--more:hover .industry-card__title { color: var(--signal); }

@media (max-width: 960px) {
  .industry-grid--teaser { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .industry-grid--teaser { grid-template-columns: 1fr; }
}

/* ----------------------------------------
   12. WHY SUBLIME
---------------------------------------- */
.why-sublime-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-7) var(--sp-8); }
.why-sublime-card { padding-top: var(--sp-5); border-top: 1px solid var(--border-default); }
.why-sublime-card__title {
  font-size: 19px;
  margin-bottom: var(--sp-2);
  transition: color var(--dur-standard) var(--ease-instrument);
}
.why-sublime-card:hover .why-sublime-card__title { color: var(--signal); }
.why-sublime-card__desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* Trust tag — one per card, quiet, text-only, no badge chrome */
.why-sublime-card__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  border: 1px solid var(--border-default);
  border-radius: 4px;
  padding: 3px 8px;
  margin-top: var(--sp-4);
  transition: color var(--dur-standard) var(--ease-instrument),
              border-color var(--dur-standard) var(--ease-instrument);
}
.why-sublime-card:hover .why-sublime-card__tag {
  color: var(--signal);
  border-color: var(--signal-border);
}

/* Hover-reveal — same reserved-space technique used in the
   Methodology section: the line always occupies its position in
   the flow, so nothing around it shifts when it fades in. */
.why-sublime-card__reveal {
  font-size: 12.5px;
  color: var(--text-tertiary);
  line-height: 1.6;
  margin-top: var(--sp-3);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--dur-standard) var(--ease-instrument),
              transform var(--dur-standard) var(--ease-instrument);
  pointer-events: none;
}
.why-sublime-card:hover .why-sublime-card__reveal,
.why-sublime-card:focus-within .why-sublime-card__reveal {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 720px) { .why-sublime-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------
   13. METRICS
---------------------------------------- */
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border-hairline); border-radius: var(--radius-lg); overflow: hidden; }

.metric-card { padding: var(--sp-7) var(--sp-5); border-right: 1px solid var(--border-hairline); text-align: left; }
.metric-card:last-child { border-right: none; }

.metric-card__number { display: block; font-family: var(--font-mono); font-size: 36px; font-weight: 500; color: var(--signal); line-height: 1; margin-bottom: var(--sp-2); }
.metric-card__label { display: block; font-size: 13px; color: var(--text-secondary); }

@media (max-width: 860px) {
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .metric-card:nth-child(2) { border-right: none; }
  .metric-card:nth-child(odd) { border-bottom: 1px solid var(--border-hairline); }
}
@media (max-width: 560px) {
  .metrics-grid { grid-template-columns: 1fr; }
  .metric-card { border-right: none; border-bottom: 1px solid var(--border-hairline); }
  .metric-card:last-child { border-bottom: none; }
}

/* ----------------------------------------
   14. INSIGHTS
---------------------------------------- */
.insights-grid { display: flex; flex-direction: column; margin-bottom: var(--sp-6); }

.insight-card {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: var(--sp-6);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--border-hairline);
  transition: background var(--dur-standard) var(--ease-instrument);
}
.insight-card:first-child { border-top: 1px solid var(--border-hairline); }
.insight-card:hover { background: var(--bg-surface); }

.insight-card__tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-tertiary); }
.insight-card__title { font-size: 16px; font-weight: 600; margin-bottom: var(--sp-1); }
.insight-card__desc { font-size: 13px; color: var(--text-secondary); }
.insight-card__link { font-family: var(--font-mono); font-size: 12px; color: var(--signal); white-space: nowrap; }

@media (max-width: 720px) { .insight-card { grid-template-columns: 1fr; gap: var(--sp-2); } }

/* ----------------------------------------
   15. CONSULTATION
---------------------------------------- */
.consultation {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  margin: var(--sp-9) auto;
  max-width: var(--content-width);
  padding: var(--sp-8) var(--sp-7);
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: var(--sp-9);
  align-items: start;
}

/* ----------------------------------------
   LEFT — INTRO + TRUST + FORM
---------------------------------------- */
.consultation__heading { font-size: 30px; margin-bottom: var(--sp-3); }
.consultation__subhead { font-size: 15px; color: var(--text-secondary); max-width: 460px; margin-bottom: var(--sp-5); }

.consultation__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-7);
}
.consultation__trust li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--border-default);
  border-radius: 4px;
  padding: 4px 9px;
}

.consultation__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

.form-field { display: flex; flex-direction: column; gap: var(--sp-2); position: relative; }
.form-field--full { grid-column: 1 / -1; }

.form-field__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--dur-standard) var(--ease-instrument);
}
.form-field:focus-within .form-field__label { color: var(--text-primary); }

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-base);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color var(--dur-standard) var(--ease-instrument),
              box-shadow var(--dur-standard) var(--ease-instrument);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-tertiary); }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--signal);
  box-shadow: 0 0 0 3px var(--signal-muted);
}
.form-field textarea { resize: vertical; min-height: 88px; }

/* Smooth validation — only flags a field red once the visitor has
   actually typed something invalid and left it; never red on a
   field they haven't touched yet. */
.form-field input:not(:placeholder-shown):invalid,
.form-field textarea:not(:placeholder-shown):invalid {
  border-color: var(--sev-critical);
}

/* JS adds .has-error after a failed submit attempt (covers empty
   required fields, which :invalid alone won't visually flag while
   the placeholder is still showing). */
.form-field.has-error input,
.form-field.has-error select {
  border-color: var(--sev-critical);
}
.form-field__error {
  font-size: 12px;
  color: var(--sev-critical);
  min-height: 16px; /* reserved space — no layout shift when an error appears */
  opacity: 0;
  transition: opacity var(--dur-standard) var(--ease-instrument);
}
.form-field.has-error .form-field__error { opacity: 1; }

.consultation__form .btn {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: var(--sp-2);
  position: relative;
}

/* Loading state — button text fades, a small spinner takes over.
   No layout change: spinner is absolutely positioned over the label. */
.btn__spinner {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid rgba(11, 12, 14, 0.25);
  border-top-color: #0B0C0E;
  border-radius: 50%;
  animation: btnSpin 0.7s linear infinite;
}
.consultation__form .btn.is-loading .btn__label { opacity: 0; }
.consultation__form .btn.is-loading .btn__spinner { display: block; }
.consultation__form .btn.is-loading { pointer-events: none; opacity: 0.9; }

@keyframes btnSpin { to { transform: rotate(360deg); } }

.consultation__confidentiality {
  font-size: 12.5px;
  color: var(--text-tertiary);
  margin-top: var(--sp-5);
  line-height: 1.6;
  max-width: 540px;
}

/* Success state — replaces the form in the DOM flow (JS hides
   the form, un-hides this) rather than overlaying it */
.consultation__success { display: none; }
.consultation__success:not([hidden]) {
  display: block;
  animation: heroFadeUp 0.5s var(--ease-instrument) both;
}
.consultation__success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--signal-muted);
  color: var(--signal);
  font-size: 16px;
  margin-bottom: var(--sp-4);
}
.consultation__success-title { font-size: 20px; margin-bottom: var(--sp-3); }
.consultation__success-text { font-size: 14px; color: var(--text-secondary); line-height: 1.65; max-width: 460px; }

/* ----------------------------------------
   RIGHT — WHAT HAPPENS NEXT + CONTACT INFO
---------------------------------------- */
.consultation__next {
  display: flex;
  align-items: center;
}

.consultation__contact-info {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-top: 2px solid var(--signal);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.consultation__contact-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--border-hairline);
}
.contact-info__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-info__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.contact-info__value {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
}

/* ----------------------------------------
   RESPONSIVE
---------------------------------------- */
@media (max-width: 860px) {
  .consultation { grid-template-columns: 1fr; padding: var(--sp-6); }
  .consultation__form { grid-template-columns: 1fr; }
  .consultation__next { margin-top: var(--sp-2); }
  .consultation__contact-info { padding: var(--sp-6); }
}

/* ----------------------------------------
   16. FOOTER
---------------------------------------- */
.site-footer { border-top: 1px solid var(--border-hairline); background: var(--bg-base); }

.site-footer__top {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--sp-9) var(--sp-7) var(--sp-7);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: var(--sp-6);
}

.site-footer__logo { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.site-footer__tagline { font-size: 13px; color: var(--text-secondary); margin-top: var(--sp-3); max-width: 280px; }

.site-footer__heading { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: var(--sp-4); }
.site-footer__column ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.site-footer__column a { font-size: 13px; color: var(--text-secondary); transition: color var(--dur-standard) var(--ease-instrument); }
.site-footer__column a:hover { color: var(--signal); }

.site-footer__bottom {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--sp-5) var(--sp-7) var(--sp-7);
  border-top: 1px solid var(--border-hairline);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5); flex-wrap: wrap;
}

.site-footer__copyright { font-size: 12px; color: var(--text-tertiary); }
.site-footer__legal, .site-footer__social { display: flex; gap: var(--sp-5); }
.site-footer__legal a, .site-footer__social a { font-size: 12px; color: var(--text-tertiary); transition: color var(--dur-standard) var(--ease-instrument); }
.site-footer__legal a:hover, .site-footer__social a:hover { color: var(--text-primary); }

@media (max-width: 860px) { .site-footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ----------------------------------------
   17. MOTION PREFERENCES
---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .hero__canvas { display: none; }
}

/* ============================================================
   LIGHT THEME CONVERSION
   This second :root block fully overrides every token declared
   in the first one, and because it loads last, it wins automatic-
   ally without needing !important anywhere.

   Below the :root block is a short list of colors that were
   hardcoded as literal rgba()/hex values (not tokens) — those
   don't auto-flip with the tokens, so they're called out and
   overridden explicitly here.
   ============================================================ */

:root {
  /* Surfaces — page is pure white, cards sit on a faint gray,
     elevated/glass surfaces are white again but framed by shadow
     and border rather than a color shift */
  --bg-base: #FFFFFF;
  --bg-surface: #F5F6F7;
  --bg-elevated: #FFFFFF;
  --border-subtle: #E6E7EA;
  --border-default: #D5D7DA;
  --border-hairline: #EDEEF0;

  /* Text — re-tuned for AA contrast against white, not just
     inverted 1:1 from the dark values */
  --text-primary: #15171B;
  --text-secondary: #52565D;
  --text-tertiary: #74787F;

  /* Signal Orange — unchanged. It's the brand color, not a
     theme-dependent token, and it already has enough contrast
     against both white and near-black. */
  --signal: #FF5A2F;
  --signal-hover: #FF7A52;
  --signal-press: #E04A22;
  --signal-muted: rgba(255, 90, 47, 0.08);
  --signal-border: rgba(255, 90, 47, 0.35);
  --signal-glow: rgba(255, 90, 47, 0.25);

  --sev-critical: #D8342F;
}

/* HEADER — sticky blur was translucent black; needs to be
   translucent white now. */
.site-header {
  background: rgba(255, 255, 255, 0.85);
}

/* BODY TEXTURE — the faint grain stripe was white-on-black at
   1.2% opacity; flipped to dark-on-white at the same opacity. */
body {
  background-image:
    linear-gradient(180deg, rgba(255, 90, 47, 0.02), transparent 40%),
    repeating-linear-gradient(180deg, rgba(20, 22, 26, 0.015) 0px, rgba(20, 22, 26, 0.015) 1px, transparent 1px, transparent 3px);
}

