:root {
  --blue: #38b6ff;
  --blue-deep: #1f8bc9;
  --black: #0a0a0a;
  --navy: #0f1f3d;
  --slate: #123044;
  --white: #ffffff;
  --paper: #f2f4f6;
  --warm: #faf8f4;
  --line: #e5e9ee;
  --ink: #152230;
  --ink-2: #4a5b6b;
  --ink-3: #6d7c8c;
  --amber: #f5a623;
  --green: #1f805a;
  --red: #b53d3d;
  --shadow-sm: 0 10px 28px rgba(15, 31, 61, 0.08);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.18);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1180px;
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "IBM Plex Sans", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  /* Use normal wrapping: newer Chrome variants can still over-balance
     text-wrap: pretty on long translated desktop headings. */
  text-wrap: wrap;
}

h1 {
  font-size: clamp(2.75rem, 5.5vw, 5.5rem);
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.45rem, 2.7vw, 2.15rem);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--blue);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.container-narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 3px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--blue);
}

.lede {
  max-width: 760px;
  color: var(--ink-2);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.micro {
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: 0.77rem;
  letter-spacing: 0.02em;
}

.text-blue {
  color: var(--blue);
}

.text-amber {
  color: var(--amber);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(229, 233, 238, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.availability {
  padding: 7px 20px;
  color: var(--white);
  background: var(--navy);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-align: center;
  letter-spacing: 0.04em;
}

.availability strong {
  color: var(--blue);
}

.nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  flex: 0 0 auto;
}

.logo img {
  width: 150px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-links a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 9px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--black);
  background: var(--blue);
}

.btn-primary:hover {
  background: #64c6ff;
}

.btn-dark {
  color: var(--white);
  background: var(--navy);
}

.btn-dark:hover {
  background: var(--slate);
}

.btn-outline {
  color: var(--navy);
  border-color: var(--navy);
  background: transparent;
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(56, 182, 255, 0.23) 1.3px, transparent 1.3px);
  background-size: 38px 38px;
  content: "";
  mask-image: linear-gradient(to right, #000 10%, transparent 72%);
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 710px;
  align-items: center;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: 70px;
  padding-block: 64px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1,
.hero h2,
.dark h2,
.dark h3 {
  color: var(--white);
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 25px;
}

.hero .lede {
  max-width: 760px;
  color: #c7d4df;
}

/* Desktop reading measure: keep commercial hero copy horizontal and scannable.
   The home portrait keeps its own column, so its headline needs a slightly
   smaller ceiling than the other hero variants. */
@media (min-width: 981px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
    gap: 48px;
  }

  .hero-grid h1 {
    max-width: 100%;
    font-size: clamp(3rem, 3.8vw, 4.6rem);
  }

  .hero h1,
  .page-hero h1,
  .locale-hero h1 {
    max-width: min(100%, 920px);
    text-wrap: wrap;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero .lede,
  .page-hero .lede,
  .locale-hero .lede {
    max-width: min(100%, 820px);
    text-wrap: wrap;
  }

  .locale-home-hero .container {
    padding-right: min(380px, 34vw);
  }

  .locale-home-hero h1 {
    max-width: 100%;
    font-size: clamp(3.2rem, 3.9vw, 4.8rem);
  }
}

.hero .micro {
  margin-top: 16px;
  color: #9db1c2;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  align-self: end;
}

.hero-visual > img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-height: 520px;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center bottom;
}

.loft-setting-images figure { margin: 0; overflow: hidden; }
.loft-setting-images img { display: block; width: 100%; height: 250px; object-fit: cover; object-position: center; border-radius: var(--radius); }
.loft-setting-images figcaption { padding-top: 12px; color: var(--ink-3); font-size: .88rem; }
.loft-form { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 20px; }
.loft-form label { display: grid; gap: 6px; color: var(--white); font-size: .78rem; }
.loft-form input, .loft-form select { min-height: 42px; padding: 8px 10px; border: 1px solid #557080; border-radius: 4px; background: #101b22; color: var(--white); }
.loft-form button { align-self: end; min-height: 42px; }
.tally-embed { width: 100%; max-width: 760px; min-height: 420px; margin-top: 18px; overflow: hidden; border-radius: var(--radius); background: #fff; }
.hidden { position: absolute; left: -9999px; }

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: 0;
  right: 20px;
  bottom: 76px;
  background: var(--blue);
  content: "";
}

.hero-visual::before {
  width: 170px;
  height: 56px;
}

.hero-visual::after {
  right: 77px;
  bottom: 19px;
  width: 56px;
  height: 170px;
}

.hero-portrait {
  position: absolute;
  z-index: 1;
  right: -40px;
  bottom: 0;
  width: min(460px, 100%);
  max-height: 610px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.38));
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(56, 182, 255, 0.55);
  border-radius: 50%;
  color: var(--blue);
  text-decoration: none;
  transform: translateX(-50%);
  animation: scroll-cue-bounce 2.2s ease-in-out infinite;
}

.scroll-cue svg {
  width: 16px;
  height: 16px;
}

@keyframes scroll-cue-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

.page-hero {
  position: relative;
  padding: 66px 0 58px;
  color: var(--white);
  background: var(--black);
}

.page-hero h1 {
  max-width: 930px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.page-hero .lede {
  color: #c7d4df;
}

.page-hero-visual {
  position: relative;
}

.page-hero-photo {
  overflow: hidden;
  min-height: 390px;
  border: 1px solid rgba(56, 182, 255, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.page-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.page-hero-video video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  background: var(--black);
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.proof-strip-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 0.65fr 2.35fr;
  gap: 30px;
  padding-block: 24px;
}

.proof-strip-label {
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section {
  padding: 105px 0;
}

.section-sm {
  padding: 70px 0;
}

.section-grey {
  background: var(--paper);
}

.section-warm {
  background: var(--warm);
}

.dark {
  color: #c7d4df;
  background: var(--black);
}

.section-head {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 50px;
  margin-bottom: 52px;
}

.section-head h2 {
  margin-bottom: 0;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.card-dark {
  border-color: #26323d;
  color: #c7d4df;
  background: #121212;
  box-shadow: none;
}

.card-dark h3 {
  color: var(--white);
}

.card-accent {
  border-top: 5px solid var(--blue);
}

.card-number {
  display: block;
  margin-bottom: 16px;
  color: var(--blue-deep);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
}

.card h3 {
  margin-bottom: 14px;
}

.card p,
.card li {
  color: var(--ink-2);
}

.card-dark p,
.card-dark li {
  color: #b8c7d2;
}

.clean-list,
.check-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li,
.check-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 24px;
}

.clean-list li::before {
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--blue-deep);
  content: "";
}

.check-list li::before {
  position: absolute;
  top: 0.12em;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 700;
}

.signal-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: start;
}

.signal-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--black);
  background: var(--blue);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-weight: 700;
}

.quote-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border-left: 5px solid var(--blue);
  color: var(--white);
  background: var(--slate);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quote-card blockquote {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.55;
}

.quote-card cite {
  color: #c4d3de;
  font-style: normal;
}

.quote-card cite strong {
  display: block;
  color: var(--blue);
}

.proof-feature {
  display: grid;
  overflow: hidden;
  grid-template-columns: 0.95fr 1.05fr;
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.proof-feature-image {
  min-height: 500px;
}

.proof-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 76px);
  color: #c7d4df;
}

.proof-feature-copy h2,
.proof-feature-copy h3 {
  color: var(--white);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.stat {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
}

.stat strong {
  display: block;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.stat span {
  color: #afc0cc;
  font-size: 0.8rem;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.offer {
  display: flex;
  flex-direction: column;
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.offer-featured {
  border: 2px solid var(--blue);
  background: #f6fcff;
  box-shadow: 0 18px 44px rgba(10, 36, 56, 0.14);
  transform: translateY(-10px);
}

.offer-label {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--navy);
  background: var(--blue);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.price {
  margin: 8px 0 22px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
}

.offer .btn {
  margin-top: auto;
}

.offer h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.offer-grid .offer h3 { font-size: clamp(1.15rem, 1.8vw, 1.55rem); line-height: 1.12; }
.offer-grid .price { font-size: clamp(1.9rem, 3vw, 2.7rem); }
.offer-grid .check-list { font-size: .9rem; }

.offer-outcome {
  min-height: 5.2em;
}

.offer-mix {
  margin: 22px 0 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.phase-meter { display: grid; grid-template-columns: 74px 42px 1fr; align-items: center; gap: 8px; margin: 9px 0; color: var(--ink-3); font-family: var(--font-mono); font-size: .68rem; font-weight: 600; text-transform: uppercase; }
.phase-meter strong { color: var(--ink); text-align: right; }
.phase-meter i { display: block; height: 9px; overflow: hidden; background: #e8edf1; border-radius: 999px; }
.phase-meter i::after { display: block; width: var(--phase); height: 100%; content: ""; }
.phase-diagnose i::after { background: var(--navy); }
.phase-build i::after { background: var(--blue); }
.phase-embed i::after { background: #f0b74a; }
.offer-subhead { margin: 14px 0 6px; color: var(--ink-3); font-family: var(--font-mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.fit-list { margin: 0 0 15px; padding: 0; list-style: none; color: var(--ink-2); font-size: .85rem; }
.fit-list li { margin: 4px 0; }
.fit-list li::before { margin-right: 8px; color: var(--blue); content: "→"; font-weight: 700; }
.check-list li.phase-diagnose-text::marker { color: var(--navy); }
.check-list li.phase-build-text::marker { color: var(--blue); }
.check-list li.phase-embed-text::marker { color: #d59613; }
.check-list li.phase-diagnose-text::before { color: var(--navy); }
.check-list li.phase-build-text::before { color: var(--blue); }
.check-list li.phase-embed-text::before { color: #d59613; }
.offer-more { width: 100%; justify-content: center; margin-top: auto; padding: 10px 14px; font-size: .74rem; }

.mix-bar {
  display: flex;
  overflow: hidden;
  height: 12px;
  margin-bottom: 10px;
  background: #e8edf1;
  border-radius: 999px;
}

.mix-bar span {
  width: var(--mix);
  min-width: 0;
}

.mix-diagnose { background: var(--navy); }
.mix-build { background: var(--blue); }
.mix-embed { background: #f0b74a; }

.mix-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.offer-note {
  max-width: 860px;
  margin: 22px auto 0;
  color: var(--ink-3);
  font-size: 0.86rem;
  text-align: center;
}

.offer-cta {
  justify-content: center;
  margin-top: 30px;
}

.offer-links { display: grid; gap: 8px; margin-top: auto; padding-top: 18px; }
.offer-links .btn { width: 100%; justify-content: center; font-size: .76rem; }

.fit-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fit-selector .card {
  border-top: 4px solid var(--blue);
}

.comparison {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.comparison table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.comparison th,
.comparison td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison th {
  color: var(--white);
  background: var(--navy);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.comparison tr:last-child td {
  border-bottom: 0;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: #25313b;
  border: 1px solid #25313b;
  border-radius: var(--radius-lg);
}

.process-step {
  padding: 34px;
  color: #c7d4df;
  background: var(--black);
}

.process-step strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-step h3 {
  color: var(--white);
}

.case-card {
  overflow: hidden;
  padding: 0;
}

.case-card-top {
  min-height: 170px;
  padding: 28px;
  color: var(--white);
  background: var(--navy);
}

.case-card-top h3 {
  color: var(--white);
}

.case-card-body {
  padding: 28px;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.pill {
  display: inline-flex;
  padding: 5px 9px;
  color: var(--navy);
  background: #dff3ff;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
}

.insight-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.insight-visual {
  display: grid;
  min-height: 180px;
  padding: 24px;
  place-items: end start;
  color: var(--white);
  background: var(--navy);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.insight-visual.blue {
  color: var(--black);
  background: var(--blue);
}

.insight-visual.amber {
  color: var(--navy);
  background: var(--amber);
}

.insight-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px;
}

.insight-body a {
  margin-top: auto;
  color: var(--blue-deep);
  font-weight: 700;
}

.video-shell {
  position: relative;
  display: grid;
  min-height: 300px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius-lg);
}

.video-shell::before {
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 38px solid var(--blue);
  content: "";
}

.video-shell span {
  position: absolute;
  right: 26px;
  bottom: 22px;
  left: 26px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

/* Embedded video frame: keeps YouTube media responsive inside the branded cards. */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  align-self: start;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--black);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
}
.video-shell.video-embed::before { display: none; }

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-sm);
}

.faq-list summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 700;
}

.faq-list details p {
  margin: 16px 0 0;
  color: var(--ink-2);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  color: var(--white);
  background: var(--navy);
}
.cta-band#apply .micro { color: #c7d4df; }
.cta-band#apply .micro a { color: var(--blue); font-weight: 700; }

.cta-band::before,
.cta-band::after {
  position: absolute;
  background: var(--blue);
  content: "";
  opacity: 0.16;
}

.cta-band::before {
  top: -35px;
  right: 90px;
  width: 210px;
  height: 68px;
}

.cta-band::after {
  top: -105px;
  right: 161px;
  width: 68px;
  height: 210px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.cta-inner h2 {
  max-width: 740px;
  margin-bottom: 12px;
  color: var(--white);
}

.cta-inner p {
  max-width: 680px;
  margin-bottom: 0;
  color: #c7d4df;
}

.site-footer {
  padding: 62px 0 30px;
  color: #aebdc8;
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.72fr 0.72fr 0.72fr;
  gap: 40px;
}

.footer-logo {
  width: 175px;
  height: auto;
  margin-bottom: 18px;
}

.footer-heading {
  margin-bottom: 14px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a:hover {
  color: var(--blue);
}

.proof-strip-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.proof-block {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.proof-block p {
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0 0 12px;
}

.proof-block a {
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  font-size: 0.88rem;
}

.proof-block a:hover {
  text-decoration: underline;
}

.resource-links-band {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

/* Workshop promotion card used on high-intent pages. */
.workshop-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin: 34px 0;
  padding: 26px 30px;
  border: 1px solid rgba(56,182,255,.45);
  border-left: 5px solid var(--blue);
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.workshop-card .eyebrow { color: var(--blue); margin-bottom: 8px; }
.workshop-card h2, .workshop-card h3 { margin: 0 0 8px; color: var(--white); }
.workshop-card p { margin: 0; color: #c7d4df; max-width: 760px; }
.workshop-card .workshop-meta { margin-top: 10px; color: var(--white); font-family: var(--font-mono); font-size: .78rem; letter-spacing: .04em; }
@media (max-width: 760px) {
  .workshop-card { grid-template-columns: 1fr; gap: 16px; padding: 22px; }
}

.resource-links-inner {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.resource-links-inner p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.92rem;
}

.resource-links-inner .links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.resource-links-inner .links a {
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.92rem;
}

.resource-links-inner .links a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 45px;
  padding-top: 24px;
  border-top: 1px solid #2a2a2a;
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
}

.contact-panel {
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-options {
  display: grid;
  gap: 16px;
}

.contact-option {
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.contact-option:hover {
  border-color: var(--blue);
  background: #f4fbff;
}

.contact-option strong {
  display: block;
  color: var(--navy);
}

.cal-embed-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}

.cal-embed-wrap #my-cal-inline {
  min-height: 600px;
}

.fit-box {
  padding: 28px;
  border-left: 5px solid var(--amber);
  background: #fff8e9;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.sticky-mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .nav > .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    z-index: 110;
    top: 111px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 30px 24px;
    background: var(--white);
  }

  .menu-open .nav-links {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--line);
  }

  .nav-links a {
    display: block;
    padding: 17px 8px;
    font-size: 1.05rem;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 78px 0 0;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-portrait {
    right: 50%;
    transform: translateX(50%);
  }

  .proof-feature,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .proof-feature-image {
    min-height: 360px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .offer-grid,
  .fit-selector {
    grid-template-columns: 1fr;
  }

  .offer-featured {
    transform: none;
  }

  .offer-outcome {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .loft-form { grid-template-columns: 1fr; }
  .loft-setting-images img { height: 210px; }
  body {
    font-size: 16px;
  }

  .availability {
    padding-inline: 12px;
    font-size: 0.64rem;
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    top: 103px;
  }

  .logo img {
    width: 132px;
  }

  .section,
  .page-hero {
    padding: 76px 0;
  }

  .section-head,
  .grid-2,
  .grid-3,
  .grid-4,
  .offer-grid,
  .process,
  .proof-strip-inner {
    grid-template-columns: 1fr;
  }

  .section-head {
    gap: 22px;
    margin-bottom: 36px;
  }

  .hero-grid {
    padding-top: 62px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 5.2rem);
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-portrait {
    width: 340px;
    max-height: 420px;
  }

  .company-list {
    justify-content: flex-start;
    gap: 10px 22px;
  }

  .proof-strip-label {
    margin-bottom: -15px;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .sticky-mobile-cta {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    color: var(--black);
    background: var(--blue);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    font-family: var(--font-display);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
  }

  .site-footer {
    padding-bottom: 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .scroll-cue {
    animation: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .sticky-mobile-cta,
  .button-row {
    display: none !important;
  }

  .section,
  .page-hero {
    padding: 35px 0;
  }

  .page-hero,
  .hero,
  .dark,
  .cta-band {
    color: var(--ink);
    background: var(--white);
  }
}

/* ============ V6 LAYER — 2026-08-23 ============ */
/* Robust mobile menu: solid navy panel, white links — readable on any background */
@media (max-width: 980px) {
  .nav { position: relative; }
  .nav-links {
    position: absolute;
    z-index: 130;
    top: 100%;
    right: 0;
    left: 0;
    bottom: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 22px 26px;
    background: var(--navy);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  }
  .menu-open .nav-links { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links a {
    display: block;
    padding: 16px 6px;
    color: var(--white);
    font-size: 1.05rem;
  }
  .nav-links a:not(.btn)::after { display: none; }
}

/* V6 stat band */
.v6-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 26px 0 8px;
  position: relative;
  z-index: 2;
}
.v6-stat {
  padding: 18px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.v6-stat strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1;
}
.v6-stat strong em { color: var(--blue); font-style: normal; }
.v6-stat span {
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* V6 block navigation cards */
.blockcard {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 225px;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.blockcard:hover { transform: translateY(-4px); border-color: var(--blue); }
.blockcard .go { margin-top: 16px; color: var(--blue-deep); font-weight: 700; }

/* V6 badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 99px;
  background: #dff3ff;
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}
.dark .badge { background: rgba(56, 182, 255, 0.15); color: var(--blue); }

/* V6 media placeholders */
.videoph {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
  border-radius: var(--radius-lg);
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.videoph::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-left: 42px solid var(--blue);
}
.videoph span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9db1c2;
}
.videoph.video-embed::before { display: none; }
/* Keep the embedded YouTube frame at its native 16:9 ratio. The generic
   placeholder uses a tall minimum height, which otherwise creates a large
   black canvas and makes the video appear letterboxed/cropped. */
.videoph.video-embed {
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
}
.photoph {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 18px;
  border: 2px dashed rgba(56, 182, 255, 0.6);
  border-radius: var(--radius);
  background: rgba(56, 182, 255, 0.06);
  color: var(--blue-deep);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

/* Offer 2 "everything plus" intro */
.offer .plus-intro {
  margin: 4px 0 0;
  padding: 10px 12px;
  background: rgba(56, 182, 255, 0.12);
  border-left: 4px solid var(--blue);
  border-radius: 0 8px 8px 0;
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 980px) {
  .v6-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .videoph, .video-embed { min-height: 0; }
}

/* ============ V6.1 — mobile type scale + compact contact hero (2026-08-23) ============ */
@media (max-width: 760px) {
  .hero h1 { font-size: clamp(2.05rem, 8.5vw, 2.9rem); }
  .page-hero h1 { font-size: clamp(1.9rem, 7.5vw, 2.5rem); }
  h2 { font-size: clamp(1.55rem, 6.5vw, 2.1rem); }
  .hero-grid { padding-top: 46px; }
}
.page-hero.compact { padding: 30px 0 46px; }
.locale-hero h1 { color: var(--white) !important; }
.locale-hero .lede { color: rgba(255, 255, 255, 0.86) !important; }
.page-hero.compact h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 10px; }
.page-hero.compact .lede { font-size: clamp(0.98rem, 1.6vw, 1.1rem); }
@media (max-width: 760px) {
  .page-hero.compact { padding: 22px 0 44px; }
  .page-hero.compact h1 { font-size: clamp(1.45rem, 6.5vw, 1.9rem); }
}
.contact-grid-v2 { grid-template-columns: 3fr 2fr; align-items: start; }
@media (max-width: 980px) { .contact-grid-v2 { grid-template-columns: 1fr; } }

/* RUTTENS+ Visual System — responsive homepage personality hero */
.rvs-home-hero {
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(56, 182, 255, 0.36);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.rvs-home-hero picture,
.rvs-home-hero-image {
  display: block;
  width: 100%;
  height: 100%;
}
.rvs-home-hero-image {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
}
.rvs-home-hero::before,
.rvs-home-hero::after { display: none; }

/* Loft Sprint hero: preserve the supplied 16:9 artwork instead of forcing it
   into the taller portrait treatment used by other hero visuals. */
body[data-page="loft-sprint"] .hero-visual > img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 720px) {
  .rvs-home-hero { min-height: 520px; }
  .rvs-home-hero-image { object-position: center top; }
}


/* Language selector — shared EN/NL/FR control */
.language-switcher { display: flex; align-items: center; gap: 2px; margin-left: auto; white-space: nowrap; }
.language-switcher a { padding: 7px 6px; border: 1px solid transparent; color: var(--navy); font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; }
.language-switcher a:hover, .language-switcher a:focus-visible { border-color: var(--blue); outline: none; }
.language-switcher a[aria-current="page"] { border-color: var(--blue); background: #eaf7ff; }
@media (max-width: 980px) { .language-switcher { gap: 0; } .language-switcher a { padding: 7px 5px; font-size: 0.68rem; } }

/* Insight article image cards */
.insight-visual.insight-image { position: relative; padding: 0; overflow: hidden; background: var(--navy); }
.insight-visual.insight-image img { width: 100%; height: 100%; min-height: 180px; object-fit: cover; display: block; opacity: .86; }
.insight-visual.insight-image span { position: absolute; inset: auto 0 0; padding: 16px 18px; color: var(--white); background: linear-gradient(transparent, rgba(0,0,0,.86)); font: 600 1.15rem/1.05 var(--font-display); text-transform: uppercase; }
