@font-face {
  font-family: 'NB International Pro';
  src: url('../fonts/NB-International-Pro-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NB International Pro';
  src: url('../fonts/NB-International-Pro-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NB International Pro';
  src: url('../fonts/NB-International-Pro-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #0a0a0a;
  --color-text: #111111;
  --color-text-muted: #666666;
  --color-accent: #FF5A00;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-dark: rgba(255, 255, 255, 0.1);
  
  --font-main: 'NB International Pro', -apple-system, sans-serif;
  
  --container-pad: max(24px, 5vw);
  --section-pad: clamp(80px, 12vw, 160px) 0;
  
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
}

/* Lenis Recommended CSS */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Short page-load intro transition */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 500;
  background-color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-mark {
  width: 56px;
  height: 56px;
  opacity: 0;
}

html, body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
}

/* overflow-x:hidden lives here instead of html/body: setting it on the
   root/body forces their overflow-y to a used value of "auto" (per the
   CSS Overflow spec's overflow propagation rule), which turns body into
   its own (non-scrolling) scroll container and silently breaks
   position:sticky for every descendant on the page. Scoping the clip to
   this wrapper avoids that while still hiding horizontal bleed. */
.page-wrapper {
  /* "clip" (not "hidden") on purpose: any non-visible overflow-x forces
     the paired overflow-y to a used value of "auto", which makes this
     element act as a (non-scrolling) scroll container and silently
     breaks position:sticky for every descendant below it. "clip" hides
     horizontal bleed without creating that scroll container. */
  overflow-x: clip;
  width: 100%;
}

/* Floating Background Shapes (Morphing Lines) */
.bg-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  width: clamp(400px, 50vw, 900px);
  height: auto;
  fill: none;
  stroke: var(--color-border);
  stroke-width: 1px;
  opacity: 0.3;
}

.floating-shape.shape-1 { top: -10%; left: -10%; }
.floating-shape.shape-2 { top: 30%; right: -15%; opacity: 0.2; }
.floating-shape.shape-3 { bottom: -20%; left: 20%; width: clamp(300px, 30vw, 600px); opacity: 0.15; }

/* Full-bleed hero background video — the footage's own colors are
   untouched (no filter, no color-grade). A dark gradient tint sits between
   the video and the text purely for legibility; the text itself is white
   so it holds up regardless of what's playing underneath. */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Layout Utilities */
.container-fluid {
  width: 100%;
  padding: 0 var(--container-pad);
  max-width: 1800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.text-right { text-align: right; }
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }

/* Typography */
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-transform: uppercase;
}

/* Small orange block that precedes every section eyebrow label */
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 0.65em;
  background-color: var(--color-accent);
  flex-shrink: 0;
}

/* Slot-machine reel reveal, built up in JS (see index.js). Each .slot-char's
   width is pinned in JS to its own final glyph's measured width, so the
   wider random spin glyphs never throw off the settled letter-spacing. */
.slot-char {
  display: inline-block;
  overflow: hidden;
  height: 1.15em;
  vertical-align: top;
  text-align: center;
}

.slot-char.slot-space { width: 0.4em; }

.slot-reel {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slot-cell {
  display: block;
  height: 1.15em;
  line-height: 1.15em;
}

.massive-heading {
  font-size: max(2.5rem, min(calc(2.5rem + .04 * (100vw - 27.5rem)), 4.5rem));
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1em;
  max-width: 1070px;
  text-wrap: pretty;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-title-medium {
  font-size: max(2rem, min(calc(2rem + .03 * (100vw - 27.5rem)), 3.5rem));
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: -0.02em;
}

/* Editorial Text / Why Us */
.editorial-text {
  font-size: max(1.5rem, min(calc(1.5rem + .02 * (100vw - 27.5rem)), 2.5rem));
  letter-spacing: -0.02em;
  line-height: 1.25em;
  text-wrap: pretty;
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: 2.5rem;
}

.editorial-text .text-accent { font-weight: 400; }

/* GSAP SplitType Classes */
/* Plain inline (not inline-block, no position) — a browser quirk forces a
   hard line break in copy-paste / innerText serialization whenever an
   absolutely-positioned descendant sits inside an inline box. The
   word-block overlays below are therefore positioned relative to the
   .scrub-heading itself (in JS), not nested inside each .word, so plain
   copy-paste of split headings comes out correctly. */
.word { display: inline; white-space: nowrap; }
.scrub-heading .char {
  display: inline-block;
  opacity: 0;
}
.animate-fade { opacity: 0; }

/* Word block-reveal: each word in a .scrub-heading starts fully covered by a
   solid rectangle (color matched to that word's own text color — orange
   for accent words, set inline in JS otherwise), which then opens
   top-to-bottom as the character underneath fades in. Positioned/sized in
   JS relative to .scrub-heading (see index.js) rather than nested inside
   the word itself. */
.scrub-heading { position: relative; }
.word-block {
  position: absolute;
  pointer-events: none;
}

/* Buttons */
button, .btn-solid, .btn-outline {
  font-family: var(--font-main);
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out-expo);
}

.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.btn-solid {
  background: var(--color-accent);
  border: none;
  color: #fff;
  padding: 1.1rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 100px;
  transition: transform 0.3s var(--ease-out-expo), background 0.3s;
  display: inline-block;
}

.btn-solid:hover {
  background: #E04D00;
  transform: translateY(-2px);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* Above .nav-overlay (150) so the hamburger button — and the X it turns
     into — stays visible and clickable while the fullscreen menu is open. */
  z-index: 250;
  padding: 2rem 0;
  transition: padding 0.4s var(--ease-out-expo), background 0.4s;
  /* A dark scrim behind just the nav bar itself (not the whole video) so
     the logo and wordmark always have guaranteed contrast, no matter what
     color is playing behind them. */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.18) 75%, rgba(0, 0, 0, 0) 100%);
}

/* Header chrome is always the dark/white variant — text and icons stay
   white regardless of which section sits behind it. */
.header.scrolled {
  padding: 1.2rem 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-dark);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  transition: filter 0.3s;
  /* Cheap insurance against the hero video's own dark patches, independent
     of the light/dark section toggle below. */
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.2));
}

.logo-fill-white { fill: var(--color-text); transition: fill 0.3s; }

/* Orange arrow gets a dark outline so it stays readable no matter what's
   behind it — including the orange tones in the hero video, which the flat
   fill alone used to disappear into. */
.logo-fill-orange {
  fill: var(--color-accent);
  stroke: rgba(0, 0, 0, 0.6);
  stroke-width: 10px;
  paint-order: stroke fill;
}

/* Header wordmark/icon/hamburger are always the white/light variant,
   regardless of section behind — matches the always-dark header chrome. */
.header .logo-fill-white,
.dark-section .logo-fill-white { fill: #ffffff; }

.logo-text {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  transition: color 0.3s;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

.header .logo-text { color: #ffffff; }

/* Hamburger Icon */
.hamburger {
  background: transparent;
  border: none;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s, background-color 0.3s;
}

/* Hamburger open state */
.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
  background-color: #ffffff;
}
.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
  background-color: #ffffff;
}

/* Fullscreen Overlay Menu */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--ease-out-expo), visibility 0.5s;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.nav-item-link {
  color: #888888;
  font-size: max(1.8rem, min(3vw, 3rem));
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  letter-spacing: -0.02em;
}

.nav-item-link:hover {
  color: #ffffff;
  transform: scale(1.05);
}

.nav-overlay .book-trigger {
  margin-top: 1rem;
  font-size: 1rem;
}

/* Hero Section — text column on the left (plain section background, so
   legibility never depends on the video) and a framed video panel on the
   right. */
.section-hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  padding-top: 150px;
  padding-bottom: 4rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(2.5rem, 8vw, 8rem);
  width: 100%;
}

.hero-title {
  display: block;
  font-size: clamp(2.8rem, 6.4vw, 6.8rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-line {
  display: block;
}

/* First line: solid black, as requested — sits on the dark video tint so we
   give it a soft light halo purely for edge definition, not a color change. */
.hero-line-dark {
  color: #0a0a0a;
}

/* "Netherlands." stays plain orange text (no box) — a layered, soft-edged
   shadow (several low-opacity passes fading outward) keeps it off the
   video's own orange tones without a hard outline. */
.hero-accent {
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.55),
    0 4px 10px rgba(0, 0, 0, 0.5),
    0 8px 24px rgba(0, 0, 0, 0.45),
    0 14px 40px rgba(0, 0, 0, 0.35);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-subtext {
  max-width: min(1050px, 72vw);
  flex: 1 1 480px;
}

.hero-subtext p {
  font-size: clamp(1.15rem, 1.4vw, 1.4rem);
  line-height: 1.4;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  /* Very light shadow purely for legibility over the video, not a color
     change. */
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.hero-cta {
  flex-shrink: 0;
}

/* Generic Section Styles */
section:not(.section-hero) {
  padding: var(--section-pad);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

section > .container-fluid {
  width: 100%;
}

/* Light / Dark Mode Layout System */
.dark-section {
  background-color: var(--color-bg-alt);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-section .logo-text {
  color: #ffffff;
}

.dark-section .eyebrow {
  color: var(--color-accent);
}

/* Why NL Section */
.feature-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: clamp(3rem, 6vw, 6rem);
}

.feature-card {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  transition: border-color 0.4s var(--ease-out-expo);
}

.dark-section .feature-card {
  border-top: 1px solid var(--color-border-dark);
}

.feature-card:hover { border-color: var(--color-text); }
.dark-section .feature-card:hover { border-color: #ffffff; }

.feature-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  display: block;
}

.feature-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 1.25rem;
  display: block;
}

.feature-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.feature-desc {
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  font-weight: 300;
}

.dark-section .feature-desc {
  color: #aaaaaa;
}

/* Why Us Editorial */
.editorial-layout {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

.editorial-left { flex: 0 0 20%; }
.editorial-right {
  flex: 1;
  max-width: 950px;
}

/* Services */
.services-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.service-col {
  flex: 1 1 320px;
  padding: 3rem 2.5rem;
  background: #111111;
  border: 1px solid var(--color-border-dark);
  border-radius: 4px;
  transition: transform 0.5s var(--ease-out-expo), border-color 0.5s;
}

.service-col:hover { 
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}

/* Phase label -> icon morph: text and icon occupy the same box and
   crossfade into each other in JS once the card has scrolled into view. */
.service-phase {
  position: relative;
  display: block;
  height: 34px;
  margin-bottom: 1.5rem;
}

.phase-text {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8rem;
  line-height: 34px;
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.phase-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  opacity: 0;
}

.service-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border-dark);
}

.clean-list { list-style: none; }

.clean-list li {
  font-size: 1rem;
  padding: 1.1rem 0;
  color: #cccccc;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-weight: 300;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.clean-list li:last-child { border-bottom: none; }
.clean-list li::after {
  content: '→';
  color: var(--color-accent);
  font-weight: 700;
  margin-left: 10px;
  font-size: 1.1rem;
  transition: transform 0.3s;
}
.clean-list li:hover::after {
  transform: translateX(4px);
}

/* Scroll-driven Roadmap Timeline */
.section-method {
  position: relative;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: stretch;
}

.roadmap-left {
  align-self: stretch;
}

.roadmap-left-inner {
  position: sticky;
  top: 120px;
}

.roadmap-left .massive-heading {
  margin-top: 1.25rem;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.roadmap-intro {
  margin-top: 1.25rem;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.5;
  max-width: 380px;
}

.roadmap-container {
  margin-top: 0;
  position: relative;
  padding-left: 50px;
}

.roadmap-track {
  position: absolute;
  top: 0;
  left: 15px;
  width: 2px;
  height: 100%;
  background-color: var(--color-border);
}

.roadmap-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: var(--color-accent);
}

.roadmap-step {
  position: relative;
  padding-bottom: 9rem;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

.roadmap-step.active {
  opacity: 1;
}

.roadmap-dot-wrap {
  position: absolute;
  left: -50px;
  top: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.roadmap-dot {
  width: 10px;
  height: 10px;
  background-color: var(--color-text-muted);
  border-radius: 50%;
  transition: transform 0.4s var(--ease-out-expo), background-color 0.4s;
}

.roadmap-step.active .roadmap-dot {
  background-color: var(--color-accent);
  transform: scale(1.5);
  box-shadow: 0 0 12px var(--color-accent);
}

.roadmap-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.5rem;
}

.roadmap-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.roadmap-step p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 300;
  max-width: 700px;
}

/* FAQ Accordion */
.faq-layout {
  display: flex;
  gap: 5rem;
}

.faq-left {
  flex: 0 0 30%;
}

.faq-desc {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #aaaaaa;
  margin-top: 1.5rem;
}

.faq-right { flex: 1; }

.accordion-item {
  border-bottom: 1px solid var(--color-border-dark);
}

.accordion-item:first-child {
  border-top: 1px solid var(--color-border-dark);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: left;
  text-transform: none;
}

.acc-icon {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--color-accent);
  transition: transform 0.4s var(--ease-out-expo);
}

.accordion-item.active .acc-icon { transform: rotate(45deg); }

.accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.6s var(--ease-in-out-circ);
}

.accordion-content p {
  padding-bottom: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #cccccc;
  font-weight: 300;
}

/* Side-by-Side CTA / Contact form grid */
.section-cta {
  background-color: #ffffff;
  border-top: 1px solid var(--color-border);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.cta-left {
  position: sticky;
  top: 120px;
}

.cta-refined-heading {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-align: left;
  margin-bottom: 2rem;
  text-transform: none;
}

.cta-sub {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  font-weight: 300;
  max-width: 500px;
}

.cta-right {
  background: #f8f9fa;
  padding: 3.5rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.input-group {
  margin-bottom: 0;
}

.input-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.input-group input,
.input-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 1.1rem;
  padding: 0.6rem 0;
  outline: none;
  transition: border-color 0.3s;
}

.input-group input:focus,
.input-group textarea:focus { border-color: var(--color-text); }

.form-submit { width: 100%; margin-top: 1rem; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-error {
  color: #c0392b;
  font-size: 0.9rem;
  margin-top: 0.75rem;
  text-align: center;
}

.form-success {
  padding: 2.5rem;
  border: 1px solid var(--color-accent);
  text-align: center;
  border-radius: 4px;
}

.form-success h3 {
  color: var(--color-accent);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.hidden { display: none !important; }

/* Footer — a dark band (matching the site's alternating light/dark section
   rhythm) instead of white-on-white against the CTA section above it, with
   one consistent type treatment across both columns instead of the old
   mix of bold-uppercase on the right and light-case on the left. */
.footer {
  padding: 4rem 0;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #999999;
  background-color: var(--color-bg-alt);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-logo { margin-bottom: 1rem; }
.footer .logo-fill-white { fill: #ffffff; }
.footer .logo-text { color: #ffffff; }
.brand-sub { font-weight: 400; color: #999999; }
.footer-right { text-align: right; }
.footer-right p { margin-bottom: 0.5rem; }

/* Responsive Overrides */
@media (max-width: 1100px) {
  .hero-bottom { align-items: flex-start; flex-direction: column; }
  .feature-layout { grid-template-columns: repeat(2, 1fr); }
  .editorial-layout { flex-direction: column; gap: 2rem; }
  .editorial-text { font-size: 1.8rem; }
  .cta-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cta-left { position: static; }
  .roadmap-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .roadmap-left-inner { position: static; }
  .roadmap-intro { max-width: none; }
}

@media (max-width: 768px) {
  .feature-layout { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .footer-right { text-align: left; }
  .cta-right { padding: 2rem; }
  .input-row { grid-template-columns: 1fr; gap: 2rem; }
  .faq-layout { flex-direction: column; gap: 2.5rem; }
  .roadmap-step { padding-bottom: 4rem; }
}
