/* AquaFromAir — Global Styles */
/* Auto-extracted from homepage. Do not edit manually — use theme customizer or edit source. */

/* ─── SELF-HOSTED FONTS ─────────────────────────────────────────────────── */
@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}


  :root {
    --abyss:      #1A2B2C;
    --teal:       #3D7A80;
    --teal-deep:  #2C5F64;
    --teal-mid:   #4E8F95;
    --aqua:       #86CCE0;
    --aqua-pale:  #C8E9F2;
    --linen:      #F2EBE1;
    --linen-mid:  #EAE0D4;
    --linen-dark: #DDD0C0;
    --gold:       #C8A96E;
    --mist:       #F2F5F2;
    --mist-pale:  #E6F3F4;
    --white:      #FFFFFF;
    --slate:      #7A9496;
    --text:       #2C3B3C;
    --text-light: #6B7C7D;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { overflow-x: hidden; overscroll-behavior: none; }

  body {
    font-family: 'Nunito Sans', sans-serif;
    background: var(--linen);
    color: var(--text);
    overscroll-behavior: none;
  }

  /* ─── TICKER ─────────────────────────────────────── */
  .ticker-wrap {
    overflow: hidden;
    background: var(--abyss);
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .ticker {
    display: flex; width: max-content;
    animation: ticker 48s linear infinite;
  }
  .ticker-item {
    padding: 13px 40px;
    font-family: 'Jost', sans-serif;
    font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase;
    color: rgba(255,255,255,0.6); white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .ticker-item span { color: var(--gold); }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ─── NAV ─────────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 max(56px, calc((100% - 1100px) / 2));
    background: rgba(242,235,225,0.96);
    backdrop-filter: blur(16px);
    transition: box-shadow 0.3s;
  }
  nav.scrolled {
    box-shadow: 0 2px 24px rgba(26,43,44,0.08);
  }
  .nav-logo {
    display: flex; align-items: center;
    height: 36px;
    text-decoration: none;
    flex-shrink: 0;
  }
  .nav-logo svg { height: 28px; width: auto; }
  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }
  .nav-links a {
    font-size: 13px; font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text); text-decoration: none;
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0;
    height: 1.5px; background: var(--teal);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.25s ease;
  }
  .nav-links a:hover { color: var(--teal); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-links a.nav-active,
  .nav-links li.current-menu-item > a { color: var(--teal); }
  .nav-links a.nav-active::after,
  .nav-links li.current-menu-item > a::after { transform: scaleX(1); }
  .nav-right {
    display: flex; align-items: center; gap: 20px;
  }
  .nav-social {
    display: flex; align-items: center; gap: 14px;
  }
  .nav-social a {
    display: flex; align-items: center; justify-content: center;
    color: var(--slate);
    transition: color 0.2s, transform 0.2s;
  }
  .nav-social a:hover { color: var(--teal); transform: translateY(-1px); }
  .nav-social-divider {
    width: 1px; height: 20px;
    background: rgba(61,122,128,0.2);
  }
  .nav-cta {
    background: var(--teal); color: var(--white);
    padding: 11px 28px;
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: var(--teal-deep); transform: translateY(-1px); }

  /* ─── HAMBURGER BUTTON ───────────────────────────── */
  .nav-hamburger {
    display: none;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none; border: none; cursor: pointer;
    padding: 4px;
    z-index: 200;
    flex-shrink: 0;
  }
  .nav-hamburger span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* ─── MOBILE DRAWER ──────────────────────────────── */
  .nav-drawer {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(242,235,225,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 0px solid rgba(61,122,128,0.12);
    padding: 0;
    z-index: 99;
    overflow-y: auto;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
  }
  .nav-drawer.open {
    max-height: 80vh;
    padding: 8px 0 24px;
    border-bottom-width: 1px;
  }
  .nav-drawer ul {
    list-style: none;
    padding: 0;
  }
  .nav-drawer ul li a {
    display: block;
    padding: 14px 28px;
    font-size: 15px; font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid rgba(61,122,128,0.06);
    transition: background 0.15s, color 0.15s;
  }
  .nav-drawer ul li a:hover { background: rgba(61,122,128,0.06); color: var(--teal); }
  .nav-drawer ul li a.nav-active,
  .nav-drawer ul li.current-menu-item > a { color: var(--teal); background: rgba(61,122,128,0.06); }
  .nav-drawer-social {
    display: flex; align-items: center; gap: 20px;
    padding: 16px 28px 4px;
  }
  .nav-drawer-social a {
    color: var(--slate);
    display: flex; align-items: center;
    transition: color 0.2s;
  }
  .nav-drawer-social a:hover { color: var(--teal); }
  .nav-drawer-cta {
    display: block;
    margin: 12px 28px 0;
    background: var(--teal); color: var(--white);
    padding: 13px 28px;
    font-size: 13px; font-weight: 600; letter-spacing: 0.03em;
    text-decoration: none; text-align: center;
    border-radius: 2px;
    transition: background 0.2s;
  }
  .nav-drawer-cta:hover { background: var(--teal-deep); }

  /* ─── MOBILE BREAKPOINT ──────────────────────────── */
  /* ─── HERO ────────────────────────────────────────── */
  .hero {
    min-height: 660px;
    padding-top: 72px;
    background: var(--abyss);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    position: relative;
    overflow: visible;
  }

  

  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 60px 64px 0 max(56px, calc((200% - 1100px) / 2));
    position: relative; z-index: 2;
    grid-column: 1; grid-row: 1;
  }

  .hero-overtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px; font-weight: 400;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--aqua);
    margin-top: 60px;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.1s forwards;
  }

  .hero-headline {
    font-family: Georgia, serif;
    font-size: 46px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.1;
    color: var(--white);
    margin-top: 20px;
    margin-bottom: 1px;
    animation: slideUp 0.7s ease 0.1s both;
  }
  .hero-headline strong {
    font-style: normal;
    font-weight: 500;
    display: block;
    color: var(--white);
  }
  .hero-headline-teal {
    display: block;
    font-style: normal;
    font-weight: 500;
    color: var(--white);
  }
  .hero-headline .teal { color: var(--aqua); }
  .hero-slogan {
    color: rgba(255,255,255,1);
    font-weight: 400;
    font-style: italic;
  }

  .hero-tagline {
    font-family: Georgia, serif;
    font-size: 16px; font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.38);
    line-height: 1.5;
    max-width: 420px;
    margin-bottom: 28px;
    letter-spacing: 0.01em;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.3s forwards;
  }

  .hero-subline {
    font-size: 17px; font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.50;
    max-width: 580px;
    margin-bottom: 26px;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.38s forwards;
  }

  .hero-actions {
    display: flex; gap: 32px; align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.5s forwards;
    grid-column: 1; grid-row: 2;
    padding: 0 64px 0 max(56px, calc((200% - 1100px) / 2));
  }
  .btn-primary {
    background: var(--teal);
    color: var(--white);
    padding: 14px 32px;
    font-family: 'Jost', sans-serif;
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.11em;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s, gap 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: var(--teal-deep); }
  .btn-ghost-light {
    color: rgba(255,255,255,0.6);
    font-family: 'Jost', sans-serif;
    font-size: 13px; font-weight: 400;
    letter-spacing: 0.11em;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: color 0.2s, gap 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 2px;
  }
  .btn-ghost-light:hover { color: rgba(255,255,255,0.9); border-bottom-color: rgba(255,255,255,0.5); gap: 12px; }

  /* Trust row */
  .hero-trust {
    margin-top: 25px;
    display: flex; gap: 32px;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.65s forwards;
    grid-column: 1; grid-row: 3;
    padding: 0 64px 60px max(56px, calc((200% - 1100px) / 2));
  }
  .hero-trust-item {
    display: flex; flex-direction: column; gap: 4px;
  }
  .hero-trust-value {
    font-family: Georgia, serif;
    font-size: 28px; font-weight: 700;
    color: var(--white); line-height: 1;
  }
  .hero-trust-label {
    font-size: 12px; font-weight: 300;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em;
  }
  .hero-trust-upto {
    font-size: 12px; font-weight: 300;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.04em;
  }
  .hero-trust-item.has-upto {
    flex-direction: row; align-items: baseline; gap: 6px;
  }
  .hero-trust-value-col {
    display: flex; flex-direction: column; gap: 2px;
  }
  .hero-trust-divider {
    width: 1px; background: rgba(255,255,255,0.1);
    align-self: stretch; margin: 4px 0;
  }

  /* Hero right — machine visual */
  .hero-right {
    position: relative;
    display: flex; align-items: flex-end; justify-content: center;
    padding: 60px 48px 80px;
    overflow: visible;
    opacity: 0;
    animation: fadeIn 1s ease 0.4s forwards;
    top: -1px;
    grid-column: 2; grid-row: 1 / 4;
  }
  /* Big background circle */
  .hero-right::before {
    content: '';
    position: absolute;
    bottom: 45px; left: 50%;
    transform: translateX(-50%);
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
      rgba(86,184,176,0.18) 0%,
      rgba(61,122,128,0.13) 35%,
      rgba(61,122,128,0.05) 65%,
      transparent 100%);
    border: 1px solid rgba(61,122,128,0.18);
    box-shadow: 0 0 80px 20px rgba(61,140,135,0.10), 0 0 160px 40px rgba(61,122,128,0.07);
  }
  /* Outer ambient bloom */
  .hero-right::after {
    content: '';
    position: absolute;
    bottom: 0px; left: 50%;
    transform: translateX(-50%);
    width: 620px; height: 480px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 50% 60%,
      rgba(61,140,135,0.10) 0%,
      rgba(31,43,52,0.0) 70%);
    pointer-events: none;
    z-index: 0;
  }
  .hero-machine-wrap {
    position: relative; z-index: 2;
    width: 100%; max-width: 340px;
    display: flex; flex-direction: column; align-items: center;
  }
  /* Product image placeholder — in real WP this is an <img> */
  .machine-img-placeholder {
    width: 280px; height: 420px;
    background: linear-gradient(160deg, #2a3e40 0%, #1a2b2c 60%, #253535 100%);
    border-radius: 12px 12px 4px 4px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(134,204,224,0.08);
  }
  .machine-img-placeholder::before {
    content: '';
    position: absolute;
    top: 20px; left: 20px; right: 20px; bottom: 20px;
    border: 1px solid rgba(134,204,224,0.1);
    border-radius: 8px;
  }
  .machine-img-label {
    font-family: Georgia, serif;
    font-size: 13px; font-style: italic; font-weight: 300;
    color: rgba(134,204,224,0.4);
    letter-spacing: 0.05em;
  }
  /* Hero product image (set via Customizer) */
  .hero-product-img {
    display: block;
    width: auto;
    max-width: 300px;
    height: 420px;
    object-fit: contain;
    object-position: bottom center;
    position: relative;
    z-index: 4;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  }

  /* Floating badges */
  .machine-badge {
    position: absolute;
    z-index: 3;
    background: var(--linen);
    padding: 10px 16px;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    display: flex; flex-direction: column; gap: 2px;
  }
  .badge-val {
    font-family: Georgia, serif;
    font-size: 15px; font-weight: 700;
    color: var(--teal-deep);
    line-height: 1;
  }
  .badge-label {
    font-size: 9px; font-weight: 400;
    color: var(--slate);
    letter-spacing: 0.06em; text-transform: uppercase;
  }
  .badge-left {
    left: 5px; top: 38%;
    animation: float 4s ease-in-out infinite;
  }
  .badge-right {
    right: 10px; top: 58%;
    animation: float 4s ease-in-out 2s infinite;
  }
  .badge-top-left {
    left: 10px; top: 19%;
    animation: float 4s ease-in-out 1s infinite;
  }
  .badge-bottom-left {
    left: -15px; bottom: 14%;
    animation: float 4s ease-in-out 3s infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
  }

  /* ─── PILLARS STRIP ───────────────────────────────── */
  .pillars {
    background: var(--linen);
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--linen-dark);
  }
  .pillar {
    padding: 40px 36px;
    border-right: 1px solid var(--linen-dark);
    display: flex; flex-direction: column; gap: 12px;
    transition: background 0.2s;
  }
  .pillar:last-child { border-right: none; }
  .pillar:hover { background: var(--white); }
  .pillar-icon {
    width: 40px; height: 40px;
    background: var(--mist-pale);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .pillar-title {
    font-family: Georgia, serif;
    font-size: 17px; font-weight: 400;
    color: var(--abyss);
  }
  .pillar-body {
    font-size: 14px; font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
  }

  /* ─── SECTION: WHAT IT DOES FOR YOU ──────────────── */
  .section-impact {
    background: var(--mist);
    padding: 120px 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }
  .impact-left {}
  .section-label {
    font-size: 12px; font-weight: 400;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-label::before {
    content: '';
    display: block; width: 0px; height: 0px;
    background: var(--teal);
  }
  .section-h2 {
    font-family: Georgia, serif;
    font-size: clamp(34px, 3.5vw, 54px);
    font-weight: 300;
    font-style: italic;
    color: var(--abyss);
    line-height: 1.15;
    margin-bottom: 24px;
  }
  .section-h2 strong {
    font-style: normal; font-weight: 700;
    display: block;
  }
  .section-body {
    font-size: 16px; font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
  }
  .impact-right {
    display: flex; flex-direction: column; gap: 2px;
  }
  .impact-card {
    background: var(--white);
    padding: 28px 32px;
    display: flex; gap: 24px; align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s;
    border-left: 3px solid transparent;
  }
  .impact-card:hover {
    transform: translateX(4px);
    box-shadow: -4px 0 0 var(--teal), 4px 0 24px rgba(61,122,128,0.08);
    border-left-color: var(--teal);
  }
  .impact-num {
    font-family: Georgia, serif;
    font-size: 36px; font-weight: 300;
    color: var(--linen-dark);
    line-height: 1; flex-shrink: 0;
    width: 48px;
  }
  .impact-text {}
  .impact-title {
    font-family: Georgia, serif;
    font-size: 18px; font-weight: 400;
    color: var(--abyss); margin-bottom: 6px;
  }
  .impact-desc {
    font-size: 14px; font-weight: 300;
    color: var(--text-light); line-height: 1.7;
  }

  /* ─── SECTION: HOW IT WORKS ───────────────────────── */
  .section-how { background: var(--linen); }


  .v1 {
    background: var(--linen);
    padding: 40px max(56px, calc((100% - 1100px) / 2));
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: auto auto;
    column-gap: 80px;
    row-gap: 0;
    align-items: start;
  }
  
  /* LEFT */
  .v1-left {
    margin-bottom: 0px;
}
  .v1-kicker {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 18px;
    display: flex; align-items: center; gap: 10px;
  }
  .v1-headline {
    font-family: Georgia, serif;
    font-size: clamp(26px, 2.8vw, 42px);
    font-weight: 300;
    font-style: normal;
    color: var(--abyss);
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .v1-headline strong {
    font-style: italic;
    font-weight: 300;
    color: var(--teal);
    display: block;
  }
  .v1-headline em { font-style: italic; color: var(--teal); }
  
  /* Quote block */
  .v1-intro {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    max-width: 520px;
  }
  
  /* Quote block */
  .v1-quotes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0 10px 18px;
    border-left: 2px solid var(--teal);
    margin-bottom: 10px;
  }
  .v1-quote {
    font-family: Georgia, serif;
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    color: var(--teal-deep);
    line-height: 1.55;
    letter-spacing: -0.01em;
  }
  
  /* ── Link — Arrow tile ── */
  .lv-tile {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    background: var(--abyss);
    color: white;
    padding: 16px 22px;
    border-radius: 12px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    align-self: flex-start;
    width: 100%;
    max-width: 420px;
  }
  .lv-tile:hover {
    background: var(--teal-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(44,95,100,0.22);
  }
  .lv-tile-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
  }
  .lv-tile-text {
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    line-height: 1.3;
  }
  .lv-tile-arrow {
    font-size: 22px;
    color: var(--gold);
    transition: transform 0.2s;
    padding-left: 20px;
    flex-shrink: 0;
  }
  .lv-tile:hover .lv-tile-arrow { transform: translateX(5px); }
  
  /* RIGHT — step rows */
  .v1-steps {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 18px;
    grid-column: 2;
    grid-row: 1 / 3;
  }
  
  /* Continuous vertical rail */
  .v1-steps::before {
    content: '';
    position: absolute;
    left: 0; top: 16px; bottom: 16px;
    width: 2px;
    background: linear-gradient(to bottom, var(--linen-dark), var(--linen-dark) 70%, transparent);
  }
  
  .v1-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 12px 0 12px 20px;
    position: relative;
    cursor: default;
  }
  .v1-step + .v1-step {
    border-top: 1px solid var(--linen-mid);
  }
  
  .v1-step-n {
    font-family: Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--linen-dark);
    line-height: 1;
    transition: color 0.25s;
    display: block;
    margin-bottom: 0;
  }
  .v1-step:hover .v1-step-n { color: var(--teal); }
  
  /* Icon sits next to the number in a row */
  .v1-step-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
  }
  
  /* Title row with icon */
  .v1-step-head {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 0;
    padding-top: 0;
  }
  .v1-step-icon {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: var(--linen-mid);
    border: 1px solid var(--linen-dark);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s, border-color 0.25s;
  }
  .v1-step-icon svg { display: block; }
  .v1-step:hover .v1-step-icon {
    background: rgba(61,122,128,0.1);
    border-color: var(--teal);
  }
  .v1-step:hover .v1-step-icon svg path,
  .v1-step:hover .v1-step-icon svg circle,
  .v1-step:hover .v1-step-icon svg line,
  .v1-step:hover .v1-step-icon svg polyline,
  .v1-step:hover .v1-step-icon svg ellipse {
    stroke: var(--teal);
  }
  
  .v1-step-title {
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--abyss);
    line-height: 1.2;
    transition: color 0.25s;
  }
  .v1-step:hover .v1-step-title { color: var(--teal-deep); }
  
  .v1-step-sub {
    display: none;
  }
  
  
  /* ════════════════════════════════════════════
     VARIANT A+D / 2
     Same DNA but:
     — White background (contrast vs linen neighbours)
     — Quote pair lives ABOVE the steps as a
       full-width banner between top and steps
     — Steps go horizontal (A-style) not vertical
     — Link is inline after last step
  ════════════════════════════════════════════ */
  .v2 {
    background: var(--white);
    padding: 80px 72px;
  }
  
  /* Top row */
  .v2-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
  }
  .v2-kicker {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
  }
  .v2-headline {
    font-family: Georgia, serif;
    font-size: clamp(28px, 2.8vw, 40px);
    font-weight: 300;
    font-style: italic;
    color: var(--abyss);
    line-height: 1.15;
  }
  .v2-headline strong { font-style: normal; font-weight: 700; }
  
  /* Quote banner — sits as a horizontal strip */
  .v2-quote-strip {
    background: var(--linen);
    border-left: 3px solid var(--teal);
    padding: 20px 32px;
    margin-bottom: 44px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
  }
  .v2-quote-text {
    font-family: Georgia, serif;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: var(--teal-deep);
    line-height: 1.6;
  }
  .v2-quote-divider {
    width: 1px;
    height: 40px;
    background: var(--linen-dark);
  }
  .v2-quote-text:last-child {
    color: var(--slate);
  }
  
  /* Horizontal steps — A style */
  .v2-steps {
    display: flex;
    align-items: center;
    gap: 0;
  }
  .v2-step {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    padding: 24px 20px;
    border: 1px solid var(--linen-dark);
    background: var(--linen);
    transition: background 0.2s, border-color 0.2s;
    cursor: default;
    position: relative;
  }
  .v2-step + .v2-step { border-left: none; }
  .v2-step:hover {
    background: var(--white);
    border-color: var(--teal);
    z-index: 1;
  }
  .v2-step-icon {
    font-size: 22px;
    flex-shrink: 0;
  }
  .v2-step-content {}
  .v2-step-n {
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    letter-spacing: 0.11em;
    color: var(--slate);
    margin-bottom: 4px;
  }
  .v2-step-word {
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--abyss);
    margin-bottom: 2px;
  }
  .v2-step-sub {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.5;
  }
  
  /* Top border accent on hover */
  .v2-step::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }
  .v2-step:hover::before { transform: scaleX(1); }
  
  /* Link tile at end */
  .v2-link-tile {
    flex-shrink: 0;
    width: 140px;
    padding: 24px 20px;
    background: var(--teal-deep);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    transition: background 0.2s;
    border: 1px solid var(--teal-deep);
    border-left: none;
    gap: 20px;
  }
  .v2-link-tile:hover { background: var(--teal); }
  .v2-link-label {
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
  }
  .v2-link-text {
    font-family: Georgia, serif;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.4;
  }
  .v2-link-arrow {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    color: var(--gold);
    transition: transform 0.2s;
  }
  .v2-link-tile:hover .v2-link-arrow { transform: translateX(4px); }
  
  /* ════════════════════════════════════════════
     VARIANT 3 — SVG illustration in left col
  ════════════════════════════════════════════ */
  .v3 {
    background: var(--linen);
    padding: 80px 72px;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 80px;
    align-items: center;
  }
  .v3-kicker {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 18px;
    display: flex; align-items: center; gap: 10px;
  }
  .v3-headline {
    font-family: Georgia, serif;
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 300;
    font-style: italic;
    color: var(--abyss);
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .v3-headline strong { font-style: normal; font-weight: 700; display: block; }
  .v3-intro {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 520px;
  }
  .v3-svg-wrap {
    margin-bottom: 24px;
    width: 100%;
  }
  .v3-quote-wrap {
    padding: 16px 0 16px 18px;
    border-left: 2px solid var(--teal);
    margin-bottom: 28px;
  }
  .v3-quote {
    font-family: Georgia, serif;
    font-size: 19px;
    font-weight: 300;
    font-style: italic;
    color: var(--teal-deep);
    line-height: 1.55;
    letter-spacing: -0.01em;
  }
  .v3-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
    border-bottom: 1px solid rgba(61,122,128,0.3);
    padding-bottom: 4px;
    transition: gap 0.2s, border-color 0.2s;
  }
  .v3-link:hover { gap: 16px; border-color: var(--teal); }
  
  .v3-steps {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 18px;
  }
  .v3-steps::before {
    content: '';
    position: absolute;
    left: 0; top: 16px; bottom: 16px;
    width: 2px;
    background: linear-gradient(to bottom, var(--linen-dark), var(--linen-dark) 70%, transparent);
  }
  .v3-step {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 20px;
    align-items: start;
    padding: 22px 0 22px 20px;
    position: relative;
    cursor: default;
  }
  .v3-step + .v3-step { border-top: 1px solid var(--linen-mid); }
  .v3-step-n {
    font-family: Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--linen-dark);
    line-height: 1;
    transition: color 0.25s;
    padding-top: 3px;
  }
  .v3-step:hover .v3-step-n { color: var(--teal); }
  .v3-step-head {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 7px;
    padding-top: 3px;
  }
  .v3-step-icon {
    width: 26px; height: 26px;
    border-radius: 7px;
    background: var(--linen-mid);
    border: 1px solid var(--linen-dark);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s, border-color 0.25s;
  }
  .v3-step:hover .v3-step-icon { background: rgba(61,122,128,0.1); border-color: var(--teal); }
  .v3-step:hover .v3-step-icon svg path,
  .v3-step:hover .v3-step-icon svg circle,
  .v3-step:hover .v3-step-icon svg line,
  .v3-step:hover .v3-step-icon svg polyline,
  .v3-step:hover .v3-step-icon svg ellipse { stroke: var(--teal); }
  .v3-step-title {
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--abyss);
    line-height: 1.2;
    transition: color 0.25s;
  }
  .v3-step:hover .v3-step-title { color: var(--teal-deep); }
  .v3-step-sub {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
  }
  
  /* ════════════════════════════════════════════
     ICON ANIMATIONS
  ════════════════════════════════════════════ */
  
  /* 01 — Fan spin */
  @keyframes fan-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
  .icon-fan-blades {
    animation: fan-spin 2.4s linear infinite;
  }
  .prod-fan-spin {
    animation: fan-spin 3.5s linear infinite;
    transform-origin: 298.5px 262px;
  }
  
  /* 02 — Droplets falling into reservoir */
  @keyframes drop-1 {
    0%   { transform: translateY(0);   opacity: 1; }
    60%  { transform: translateY(4px); opacity: 1; }
    80%  { transform: translateY(4px); opacity: 0; }
    100% { transform: translateY(0);   opacity: 0; }
  }
  @keyframes drop-2 {
    0%   { transform: translateY(0);   opacity: 0; }
    20%  { transform: translateY(0);   opacity: 1; }
    80%  { transform: translateY(5px); opacity: 1; }
    95%  { transform: translateY(5px); opacity: 0; }
    100% { transform: translateY(0);   opacity: 0; }
  }
  @keyframes drop-3 {
    0%   { transform: translateY(0);   opacity: 0; }
    40%  { transform: translateY(0);   opacity: 1; }
    90%  { transform: translateY(4px); opacity: 1; }
    100% { transform: translateY(4px); opacity: 0; }
  }
  /* Reservoir ripple */
  @keyframes ripple {
    0%,100% { transform: scaleX(1);   opacity: 0.5; }
    50%      { transform: scaleX(1.2); opacity: 1;   }
  }
  .icon-drop-1 { animation: drop-1 2s ease-in infinite; }
  .icon-drop-2 { animation: drop-2 2s ease-in infinite 0.5s; }
  .icon-drop-3 { animation: drop-3 2s ease-in infinite 1.1s; }
  .icon-ripple { transform-origin: 7px 12px; animation: ripple 2s ease-in-out infinite; }
  
  /* 03 — Filters pulse height in sequence */
  @keyframes filter-pulse-a {
    0%,100% { transform: scaleY(1);    }
    33%      { transform: scaleY(1.18); }
  }
  @keyframes filter-pulse-b {
    0%,100% { transform: scaleY(1);    }
    50%      { transform: scaleY(1.22); }
  }
  @keyframes filter-pulse-c {
    0%,100% { transform: scaleY(1);    }
    66%      { transform: scaleY(1.15); }
  }
  .icon-filter-a {
    transform-origin: 2.5px 12px;
    animation: filter-pulse-a 2.1s ease-in-out infinite;
  }
  .icon-filter-b {
    transform-origin: 7px 12px;
    animation: filter-pulse-b 2.1s ease-in-out infinite 0.3s;
  }
  .icon-filter-c {
    transform-origin: 11.5px 12px;
    animation: filter-pulse-c 2.1s ease-in-out infinite 0.6s;
  }
  /* UV glow flicker */
  @keyframes uv-glow {
    0%,100% { opacity: 0.3; }
    50%      { opacity: 1;   }
  }
  .icon-uv { animation: uv-glow 1.8s ease-in-out infinite; }
  
  /* 04 — Glass tilt as if taking a sip */
  @keyframes glass-tilt {
    0%          { transform: rotate(0deg);   }
    15%         { transform: rotate(-18deg); }
    35%         { transform: rotate(-18deg); }
    55%         { transform: rotate(0deg);   }
    100%        { transform: rotate(0deg);   }
  }
  @keyframes water-slosh {
    0%          { transform: rotate(0deg) translateX(0);   }
    15%         { transform: rotate(12deg) translateX(-1px); }
    35%         { transform: rotate(12deg) translateX(-1px); }
    55%         { transform: rotate(0deg) translateX(0);   }
    100%        { transform: rotate(0deg) translateX(0);   }
  }
  @keyframes steam-drift {
    0%,100% { transform: translateY(0) scaleX(1); opacity: 0.5; }
    50%     { transform: translateY(-2px) scaleX(1.1); opacity: 0.9; }
  }
  .icon-glass-group {
    transform-origin: 7px 12px;
    animation: glass-tilt 3.5s ease-in-out infinite;
  }
  .icon-water {
    transform-origin: 7px 10px;
    animation: water-slosh 3.5s ease-in-out infinite;
  }
  .icon-steam-1 { transform-origin: 5.5px 1.5px; animation: steam-drift 1.4s ease-in-out infinite; }
  .icon-steam-2 { transform-origin: 7px 2px;     animation: steam-drift 1.4s ease-in-out infinite 0.3s; }
  .icon-steam-3 { transform-origin: 8.5px 1.5px; animation: steam-drift 1.4s ease-in-out infinite 0.6s; }
  
  /* ════════════════════════════════════════════
     VARIANT DARK — #2c5f64 background
  ════════════════════════════════════════════ */
  .vd {
    background: var(--teal-deep);
    padding: 56px 72px;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 0;
    align-items: stretch;
  }
  
  /* Left column */
  .vd-left {
    padding-right: 64px;
    border-right: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .vd-kicker {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--aqua);
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
  }
  
  .vd-headline {
    font-family: Georgia, serif;
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.92);
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .vd-headline strong {
    font-style: normal;
    font-weight: 700;
    display: block;
    color: #fff;
  }
  
  .vd-intro {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.85;
    margin-bottom: 32px;
    max-width: 500px;
  }
  
  .vd-quote-wrap {
    padding: 16px 0 16px 20px;
    border-left: 2px solid var(--gold);
    margin-bottom: 32px;
  }
  .vd-quote {
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    letter-spacing: -0.01em;
  }
  
  .vd-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--aqua);
    border-bottom: 1px solid rgba(134,204,224,0.3);
    padding-bottom: 4px;
    transition: gap 0.2s, border-color 0.2s;
    align-self: flex-start;
  }
  .vd-link:hover { gap: 16px; border-color: var(--aqua); }
  
  /* Right column — steps */
  .vd-steps {
    padding-left: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .vd-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px 0;
    cursor: default;
    position: relative;
  }
  .vd-step + .vd-step {
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  
  /* Left sub-col: number stacked above icon */
  .vd-step-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 2px;
  }
  
  .vd-step-n {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.09em;
    color: rgba(255,255,255,0.25);
    line-height: 1;
    transition: color 0.25s;
  }
  .vd-step:hover .vd-step-n { color: var(--aqua); }
  
  .vd-step-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s, border-color 0.25s;
  }
  .vd-step:hover .vd-step-icon {
    background: rgba(134,204,224,0.1);
    border-color: rgba(134,204,224,0.5);
  }
  
  .vd-step-title {
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: 400;
    color: rgba(255,255,255,0.88);
    line-height: 1.2;
    margin-bottom: 6px;
    padding-top: 2px;
    transition: color 0.25s;
  }
  .vd-step:hover .vd-step-title { color: #fff; }
  
  .vd-step-sub {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.42);
    line-height: 1.75;
  }

    /* ─── SECTION: THE GENERATORS ───────────────────────── */
  .section-machines {
    background: var(--linen);
    padding: 120px 72px;
  }
  .machines-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 60px;
  }
  .view-all-link {
    font-size: 13px; font-weight: 400;
    color: var(--teal); text-decoration: none;
    letter-spacing: 0.04em;
    display: flex; align-items: center; gap: 6px;
    border-bottom: 1px solid rgba(61,122,128,0.3);
    padding-bottom: 2px;
    transition: gap 0.2s, border-color 0.2s;
    align-self: flex-end; margin-bottom: 4px;
  }
  .view-all-link:hover { gap: 10px; border-color: var(--teal); }

  .machine-segments {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; margin-bottom: 2px;
  }
  .machine-segment {
    background: var(--white);
    padding: 40px 36px;
    display: flex; flex-direction: column;
    transition: box-shadow 0.2s;
    border-top: 3px solid transparent;
    cursor: pointer;
    text-decoration: none;
  }
  .machine-segment:hover {
    box-shadow: 0 8px 40px rgba(61,122,128,0.1);
    border-top-color: var(--teal);
  }
  .machine-segment.featured {
    background: var(--teal-deep); border-top-color: var(--gold);
  }
  .seg-label {
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 20px;
  }
  .machine-segment.featured .seg-label { color: var(--aqua-pale); }
  .seg-name {
    font-family: Georgia, serif;
    font-size: 28px; font-weight: 300; font-style: italic;
    color: var(--abyss); margin-bottom: 8px;
  }
  .machine-segment.featured .seg-name { color: var(--white); }
  .seg-range {
    font-size: 14px; font-weight: 300;
    color: var(--text-light); margin-bottom: 24px;
  }
  .machine-segment.featured .seg-range { color: rgba(255,255,255,0.55); }
  .seg-desc {
    font-size: 14px; font-weight: 300;
    color: var(--text-light); line-height: 1.7;
    margin-bottom: 32px; flex: 1;
  }
  .machine-segment.featured .seg-desc { color: rgba(255,255,255,0.6); }
  .seg-models {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-bottom: 28px;
  }
  .seg-model-tag {
    font-size: 11px; font-weight: 400;
    padding: 4px 10px;
    background: var(--mist-pale);
    color: var(--teal-deep);
    border-radius: 2px;
  }
  .machine-segment.featured .seg-model-tag {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
  }
  .seg-cta {
    font-size: 13px; font-weight: 600;
    color: var(--teal); text-decoration: none;
    display: flex; align-items: center; gap: 6px;
    transition: gap 0.2s;
  }
  .machine-segment:hover .seg-cta { gap: 10px; }
  .machine-segment.featured .seg-cta { color: var(--gold); }
  .machine-enterprise {
    background: var(--abyss);
    padding: 40px 36px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px;
  }
  .ent-left {}
  .ent-label {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--slate); margin-bottom: 12px;
  }
  .ent-name {
    font-family: Georgia, serif;
    font-size: 24px; font-weight: 300; font-style: italic;
    color: var(--white); margin-bottom: 8px;
  }
  .ent-desc {
    font-size: 14px; font-weight: 300;
    color: rgba(255,255,255,0.45); line-height: 1.65;
    max-width: 480px;
  }
  .ent-models { display: flex; gap: 8px; flex-wrap: wrap; }
  .ent-tag {
    font-size: 11px; padding: 4px 10px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5);
    border-radius: 2px;
  }
  .ent-cta {
    background: var(--teal); color: var(--white);
    padding: 13px 28px; font-size: 13px; font-weight: 600;
    text-decoration: none; border-radius: 2px;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
  }
  .ent-cta:hover { background: var(--teal-mid); }

  /* ─── SECTION: SUSTAINABILITY ─────────────────────── */
  .section-sustain {
    background: var(--teal-deep);
    padding: 100px 72px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 100px; align-items: center;
  }
  .sustain-left {}
  .sustain-stat-group {
    display: flex; flex-direction: column; gap: 32px;
    margin-top: 48px;
  }
  .sustain-stat {
    border-left: 2px solid rgba(255,255,255,0.15);
    padding-left: 24px;
  }
  .sustain-stat-val {
    font-family: Georgia, serif;
    font-size: 44px; font-weight: 700;
    color: var(--white); line-height: 1; margin-bottom: 4px;
  }
  .sustain-stat-desc {
    font-size: 14px; font-weight: 300;
    color: rgba(255,255,255,0.55); line-height: 1.6;
  }
  .sustain-right {}
  .sustain-h2 {
    font-family: Georgia, serif;
    font-size: clamp(32px, 3.2vw, 52px);
    font-weight: 300; font-style: italic;
    color: var(--white); line-height: 1.2;
    margin-bottom: 20px;
  }
  .sustain-h2 strong { font-style: normal; font-weight: 700; display: block; }
  .sustain-body {
    font-size: 15px; font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.8; margin-bottom: 36px;
  }
  .sustain-points {
    display: flex; flex-direction: column; gap: 16px;
  }
  .sustain-point {
    display: flex; gap: 14px; align-items: flex-start;
    font-size: 14px; font-weight: 300;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
  }
  .sustain-point::before {
    content: '✓';
    color: var(--aqua-pale);
    font-size: 13px; flex-shrink: 0; margin-top: 2px;
  }

  /* ─── SECTION: TESTIMONIALS ───────────────────────── */
  .section-stories {
    background: var(--mist);
    padding: 120px 72px;
  }
  .stories-intro {
    max-width: 520px; margin-bottom: 64px;
  }
  .stories-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2px;
  }
  .story-card {
    background: var(--white);
    padding: 44px 40px;
    display: flex; flex-direction: column;
    gap: 24px;
    transition: box-shadow 0.2s;
  }
  .story-card:hover { box-shadow: 0 12px 48px rgba(61,122,128,0.1); }
  .story-card.teal-bg {
    background: var(--teal);
  }
  .story-quote {
    font-family: Georgia, serif;
    font-size: 18px; font-weight: 300; font-style: italic;
    color: var(--abyss); line-height: 1.65;
  }
  .story-card.teal-bg .story-quote { color: var(--white); font-size: 20px; }
  .story-attr {
    font-size: 12px; font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.04em;
  }
  .story-card.teal-bg .story-attr { color: rgba(255,255,255,0.6); }
  .story-attr span { color: var(--teal); font-weight: 600; }
  .story-card.teal-bg .story-attr span { color: var(--aqua-pale); }
  .story-small .story-quote { font-size: 15px; }

  /* ─── SECTION: WHY AFA ────────────────────────────── */
  .section-why {
    background: var(--linen);
    padding: 120px 72px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 100px; align-items: start;
  }
  .why-left {}
  .why-promise {
    font-family: Georgia, serif;
    font-size: clamp(28px, 2.8vw, 44px);
    font-weight: 300; font-style: italic;
    color: var(--abyss); line-height: 1.25;
    margin-top: 20px;
  }
  .why-promise strong {
    font-style: normal; font-weight: 700;
  }
  .why-body {
    font-size: 15px; font-weight: 300;
    color: var(--text-light); line-height: 1.8;
    margin-top: 20px; margin-bottom: 36px;
  }
  .why-right {
    display: flex; flex-direction: column; gap: 0;
  }
  .why-point {
    padding: 28px 0;
    border-bottom: 1px solid var(--linen-dark);
    display: flex; gap: 20px; align-items: flex-start;
  }
  .why-point:last-child { border-bottom: none; }
  .why-point-icon {
    font-size: 20px; flex-shrink: 0; margin-top: 2px;
    width: 36px; text-align: center;
  }
  .why-point-title {
    font-family: Georgia, serif;
    font-size: 17px; font-weight: 400;
    color: var(--abyss); margin-bottom: 6px;
  }
  .why-point-body {
    font-size: 14px; font-weight: 300;
    color: var(--text-light); line-height: 1.7;
  }

  /* ─── FINAL CTA ───────────────────────────────────── */
  .section-cta {
    background: var(--teal-deep);
    padding: 100px 72px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    position: relative; overflow: hidden;
  }
  .cta-bg-text {
    position: absolute;
    right: -20px; top: 50%;
    transform: translateY(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(160px, 22vw, 280px);
    color: rgba(255,255,255,0.06);
    line-height: 1;
    pointer-events: none; user-select: none;
    letter-spacing: -0.02em;
  }
  .cta-left { position: relative; z-index: 1; }
  .cta-h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 400;
    color: var(--white); line-height: 1.0;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
  }
  .cta-h2 .outline {
    -webkit-text-stroke: 2px rgba(255,255,255,0.4);
    color: transparent;
  }
  .cta-sub {
    font-size: 15px; font-weight: 300;
    color: rgba(255,255,255,0.6); line-height: 1.75;
    max-width: 480px;
  }
  .cta-right {
    display: flex; flex-direction: column; gap: 14px;
    align-items: stretch;
    position: relative; z-index: 1;
    max-width: 340px; margin-left: auto;
  }
  .btn-cta-white {
    padding: 14px 32px; text-align: center;
    background: var(--white);
    color: var(--teal-deep);
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.11em;
    border-radius: 4px;
    transition: background 0.2s;
  }
  .btn-cta-white:hover { background: var(--linen); }
  .btn-cta-outline {
    padding: 13px 32px; text-align: center;
    border: 1px solid rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 13px; font-weight: 400;
    letter-spacing: 0.11em;
    border-radius: 4px;
    transition: all 0.2s;
  }
  .btn-cta-outline:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }

  /* ─── TRUST TICKER ──────────────────────────────────── */
  .afticker {
    position: fixed;
    top: 72px; left: 0; right: 0;
    z-index: 90;
    background: var(--abyss);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    height: 48px;
    overflow: hidden;
  }
  .afticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    height: 100%;
    animation: aftickerScroll 40s linear infinite;
  }
  .afticker-track:hover { animation-play-state: paused; }
  @keyframes aftickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .afticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    height: 48px;
    border-right: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
  }
  .afticker-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  .afticker-icon svg {
    width: 14px; height: 14px;
    stroke: var(--gold);
    flex-shrink: 0;
  }
  .afticker-label {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
  }

  /* Admin bar offset */
  .admin-bar #main-nav { top: 32px; }
  .admin-bar .afticker { top: 104px; }
  .admin-bar .nav-drawer { top: 104px; }

  /* ─── FOOTER — Design 2 Asymmetric ─────────────────── */
  footer {
    background: var(--abyss);
    border-top: 2px solid var(--teal);
    position: relative;
    overflow: hidden;
  }
  .footer-nav-cols { display: contents; }
  .footer-ghost {
    position: absolute; right: -80px; top: -100px;
    width: 900px; height: 900px;
    opacity: 0.045; pointer-events: none; z-index: 0;
    overflow: hidden;
  }
  .footer-ghost svg { width: 100%; height: 100%; }
  .footer-upper {
    padding: 50px max(56px, calc((100% - 1100px) / 2)) 39px;
    display: grid;
    grid-template-columns: 1.8fr 1.3fr 1.3fr 1.3fr;
    gap: 0;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative; z-index: 1;
    align-items: start;
  }
  .footer-logo-wrap { display: block; margin-bottom: 0; margin-left: -8px; }
  .footer-brand-headline {
    font-family: Georgia, serif; font-size: clamp(22px, 2vw, 30px);
    font-weight: 300; color: var(--linen);
    line-height: 1.2; margin: 18px 0 10px;
  }
  .footer-brand-headline em { font-style: italic; color: var(--aqua); }
  .footer-social-row {
    display: flex; align-items: center; gap: 6px; margin-bottom: 24px; padding-top: 20px;
  }
  .footer-social-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 3px; text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
  }
  .footer-social-link svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.6); transition: fill 0.2s; }
  .footer-social-link:hover { border-color: rgba(255,255,255,0.35); transform: translateY(-2px); }
  .footer-social-link:hover svg { fill: rgba(255,255,255,0.85); }
  .footer-col-title {
    font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 600;
    letter-spacing: 0.13em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 20px;
  }
  .footer-links { list-style: none; }
  .footer-links li + li { margin-top: 8px; }
  .footer-links a {
    font-size: 14px; font-weight: 300;
    color: rgba(255,255,255,0.75); text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: block;
  }
  .footer-links a:hover { color: rgba(255,255,255,0.85); padding-left: 6px; }
  .footer-bottom {
    padding: 16px max(56px, calc((100% - 1100px) / 2));
    display: flex; align-items: center; justify-content: space-between;
    position: relative; z-index: 1;
  }
  .footer-copy {
    font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: 0.06em;
    color: rgba(255,255,255,0.6);
  }
  .footer-hq { display: flex; align-items: center; gap: 6px; font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
  .footer-legal { display: flex; gap: 18px; }
  .footer-legal a {
    font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: 0.06em;
    color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s;
  }
  .footer-legal a:hover { color: rgba(255,255,255,0.85); }

  /* ─── ANIMATIONS ──────────────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes slideUp {
    from { transform: translateY(16px); }
    to   { transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  /* Scroll-triggered fade-in */
  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1; transform: translateY(0);
  }

  /* ─── TRUST STRIP ─────────────────────────────────── */
  .trust-strip {
    background: var(--linen-mid);
    border-top: 1px solid var(--linen-dark);
    border-bottom: 1px solid var(--linen-dark);
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    padding: 0 72px;
  }
  .trust-item {
    display: flex; gap: 16px; align-items: center;
    padding: 32px 0;
  }
  .trust-item-icon {
    font-size: 22px; flex-shrink: 0;
  }
  .trust-item-text {
    display: flex; flex-direction: column; gap: 3px;
  }
  .trust-item-text strong {
    font-size: 13.5px; font-weight: 600;
    color: var(--abyss);
    letter-spacing: 0.01em;
  }
  .trust-item-text span {
    font-size: 12px; font-weight: 300;
    color: var(--text-light);
    line-height: 1.5;
  }
  .trust-divider {
    width: 1px; height: 40px;
    background: var(--linen-dark);
    margin: 0 40px;
  }

  /* ── SECTION B ── */
  /* ─── SECTION: THE PROBLEM (Global Water Reality) ─── */
  .section-problem { background: var(--linen); padding: 72px 0 0; }
  .sb-inner { padding: 0 max(56px, calc((100% - 1100px) / 2)); }
  .sb-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--teal); text-align: center; margin-bottom: 18px;
  }
  .sb-headline {
    font-family: Georgia, serif;
    font-size: clamp(30px, 2.8vw, 46px);
    font-weight: 300; font-style: normal; line-height: 1.2;
    color: var(--abyss); text-align: center;
    max-width: 680px; margin: 0 auto 56px;
  }
  .sb-headline em { color: var(--teal); }
  .sb-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto auto;
    column-gap: 20px;
    padding-bottom: 52px;
  }
  .sb-card {
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
    background: var(--white);
    border-radius: 3px;
    padding: 28px 28px 24px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s;
  }
  .sb-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }
  .sb-card:hover::after { transform: scaleX(1); }
  .sb-card:hover { box-shadow: 0 4px 20px rgba(26,43,44,0.08); }
  .sb-card-header { display: flex; align-items: flex-start; gap: 10px; padding-bottom: 14px; }
  .sb-card-icon { width: 30px; height: 30px; flex-shrink: 0; margin-top: 1px; }
  .sb-card-icon svg { width: 30px; height: 30px; display: block; }
  .sb-card-title {
    font-size: 13px; font-weight: 600;
    color: var(--abyss); line-height: 1.45;
  }
  .sb-stat {
    font-family: Georgia, serif;
    font-size: 38px; font-weight: 700;
    color: var(--abyss); line-height: 1;
    letter-spacing: -0.02em;
    padding-bottom: 12px;
    display: flex; align-items: baseline; gap: 2px;
  }
  .sb-stat-sup {
    font-family: Georgia, serif;
    font-size: 14px; font-weight: 300; font-style: italic;
    color: var(--teal); line-height: 1;
  }
  .sb-card-body {
    font-size: 15px; font-weight: 300;
    line-height: 1.72; color: var(--text-light);
    padding-bottom: 10px; align-self: start;
  }
  .sb-source {
    display: inline-flex; align-items: center; gap: 5px;
    font-family: 'Jost', sans-serif;
    font-size: 8.5px; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--teal); opacity: 0.6;
    text-decoration: none; align-self: end;
    transition: opacity 0.15s;
  }
  .sb-source:hover { opacity: 1; }
  .sb-dots { display: none; }
  .uc-dots { display: none; }
  .sp-dots { display: none; }
  .sb-footer {
    background: var(--teal);
    display: flex; align-items: center;
    justify-content: center;
    padding: 52px 72px;
  }
  .sb-footer-copy {
    font-family: Georgia, serif;
    font-size: clamp(18px, 1.8vw, 24px); font-weight: 300; font-style: italic;
    color: rgba(255,255,255,0.72); line-height: 1.5em;
    text-align: center;
  }
  .sb-footer-copy strong { font-style: normal; font-weight: 600; color: var(--white); }
  .mob-break { display: none; }
  .desk-break { display: block; }
  .sb-footer-cta {
    display: inline-flex; align-items: center; gap: 10px;
    white-space: nowrap;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--white);
    font-size: 13px; font-weight: 600; letter-spacing: 0.03em;
    text-decoration: none; padding: 13px 28px; border-radius: 2px;
    flex-shrink: 0; transition: background 0.2s, transform 0.15s;
  }
  .sb-footer-cta:hover { background: rgba(255,255,255,0.25); transform: translateY(-1px); }
  .link-icon { flex-shrink: 0; }

  /* ═══════════════════════════
     SECTION C — MAIN
  ═══════════════════════════ */
  /* ─── SECTION: THE SOLUTION (What It Does For You) ── */
  .section-solution {
    position: relative;
    overflow: visible;
    background: var(--abyss);
  }



  /* Main 3-col layout */
  .c-body {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 2fr 200px 1fr;
    gap: 0 40px;
    padding: 64px max(56px, calc((100% - 1100px) / 2)) 48px;
    align-items: center;
  }

  /* ── LEFT ── */
  .c-left { display: flex; flex-direction: column; gap: 22px; min-width: 0; }
  .c-headline { margin-bottom: -11px; }
  .c-tagline { margin-bottom: 9px; }

  .c-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--aqua); opacity: 1;
  }

  .c-headline {
    font-family: Georgia, serif;
    font-size: clamp(24px, 2.4vw, 38px);
    font-weight: 300; font-style: normal;
    color: var(--mist); line-height: 1.15;
    white-space: nowrap;
  }
  .c-headline em { color: var(--aqua); font-style: italic; }

  .c-tagline {
    font-size: 15px; font-weight: 300;
    color: rgba(242,245,242,0.85); line-height: 1.7;
    white-space: nowrap;
  }

  /* Spec table with icons — 2 columns */
  .c-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
  }
  .c-spec-row {
    display: grid;
    grid-template-columns: 20px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  /* top border on first two items (top of each column) */
  .c-spec-row:nth-child(1),
  .c-spec-row:nth-child(2) { border-top: 1px solid rgba(255,255,255,0.06); }
  .c-spec-icon { width: 20px; height: 20px; opacity: 0.8; }
  .c-spec-icon svg { width: 20px; height: 20px; display: block; }
  .c-spec-k {
    font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.65);
  }
  .c-spec-v {
    font-family: Georgia, serif;
    font-size: 13px; font-weight: 700; color: var(--gold);
    text-align: right;
  }

  /* ── CENTRE: Product ── */
  .c-product {
    display: flex; align-items: center; justify-content: center;
    position: relative; padding-bottom: 0;
    overflow: visible;
    min-height: 200px;
  }
  .c-product::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
      rgba(10,20,22,0.55) 0%,
      rgba(20,38,42,0.35) 40%,
      rgba(61,122,128,0.08) 70%,
      transparent 100%);
    box-shadow: 0 0 60px 10px rgba(61,140,135,0.08);
    pointer-events: none;
    z-index: 1;
  }
  .c-product img {
    width: auto; height: 320px; max-width: 180px; display: block; object-fit: contain;
    filter:
      drop-shadow(0 0 50px rgba(134,204,224,0.25))
      drop-shadow(0 0 100px rgba(134,204,224,0.1))
      drop-shadow(0 40px 56px rgba(0,0,0,0.4));
    position: relative; z-index: 2;
  }
  /* glow handled by section::after */
  

  /* ── RIGHT ── */
  .c-right { display: flex; flex-direction: column; gap: 20px; justify-content: center; min-width: 0; }

  .c-stages-wrap { display: flex; flex-direction: column; gap: 6px; }
  .c-stages-label {
    font-family: 'Jost', sans-serif;
    font-size: 8.5px; letter-spacing: 0.10em; text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 4px;
  }
  .c-stages { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 0; }
  .c-stage {
    font-family: 'Jost', sans-serif;
    font-size: 11px; color: rgba(255,255,255,0.75);
    background: rgba(134,204,224,0.06);
    border: 1px solid rgba(134,204,224,0.25);
    padding: 4px 10px; border-radius: 2px;
  }

  /* CTA — button left, note right */
  .c-cta-block { display: flex; flex-direction: row; gap: 16px; align-items: center; }
  .c-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--teal); color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 13px; font-weight: 500; letter-spacing: 0.11em;
    text-decoration: none; padding: 14px 28px; border-radius: 4px;
    white-space: nowrap; transition: background 0.2s, gap 0.2s;
  }
  .c-cta:hover { background: var(--teal-deep); gap: 14px; }
  .c-note {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px; font-weight: 300; font-style: normal;
    color: rgba(255,255,255,0.85); line-height: 1.6;
    max-width: 140px;
  }

  /* ── MACHINE ROW ── */
  .c-machine-row {
    position: relative; z-index: 2;
    display: flex;
    align-items: flex-end; justify-content: space-between;
    padding: 32px max(56px, calc((100% - 1100px) / 2)) 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 0;
  }
  .c-machine-row-label {
    font-family: 'Jost', sans-serif;
    font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    align-self: center;
    white-space: nowrap;
  }
  .mach-items {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    flex: 1;
    justify-content: center;
  }
  .mach-item {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    cursor: pointer; opacity: 0.7; transition: opacity 0.2s;
  }
  .mach-item:hover { opacity: 1; }
  .mach-active { opacity: 1; }
  .mach-img { display: flex; align-items: flex-end; }
  .mach-name {
    font-family: 'Jost', sans-serif;
    font-size: 8px; letter-spacing: 0.09em; text-transform: uppercase;
  }

  .c-view-all {
    font-family: 'Jost', sans-serif;
    font-size: 13px; font-weight: 500; letter-spacing: 0.11em;
    color: var(--aqua); text-decoration: none;
    border-bottom: 1px solid rgba(134,204,224,0.3); padding-bottom: 2px;
    align-self: center; white-space: nowrap;
    transition: opacity 0.2s, border-color 0.2s;
  }
  .c-view-all:hover { opacity: 0.8; border-color: var(--aqua); }

  /* ── BOTTOM PAD ── */
  .c-pad {
    position: relative; z-index: 2;
    height: 40px;
  }


  /* ═══════════════════════════
     SECTION C — PRODUCT SELECTOR (mobile swipe cards)
  ═══════════════════════════ */
  .vb-section {
    background: var(--abyss);
    display: flex; flex-direction: column;
  }
  /* Desktop: hide mobile swipe section; show desktop section */
  .vb-section { display: none; }
  .section-solution { display: block; }
  .vb-header { padding: 32px 20px 16px; }
  .vb-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--aqua); margin-bottom: 10px;
  }
  .vb-headline {
    font-family: Georgia, serif;
    font-size: clamp(26px, 8vw, 36px);
    font-weight: 300; color: var(--mist); line-height: 1.1;
  }
  .vb-headline em { color: var(--aqua); font-style: italic; display: block; }
  .vb-progress {
    display: flex; align-items: center; gap: 10px;
    padding: 0 20px 20px;
  }
  .vb-progress-track {
    flex: 1; height: 2px;
    background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden;
  }
  .vb-progress-fill {
    height: 100%; background: var(--aqua); border-radius: 2px;
    transition: width 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .vb-progress-text {
    font-family: 'Jost', sans-serif;
    font-size: 9px; letter-spacing: 0.10em;
    color: rgba(255,255,255,0.3); white-space: nowrap;
  }
  .vb-track {
    display: flex; overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; gap: 12px; padding: 0 20px 24px;
  }
  .vb-track::-webkit-scrollbar { display: none; }
  .vb-card {
    flex: 0 0 calc(100vw - 52px);
    scroll-snap-align: start;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 20px;
    display: flex; flex-direction: column; gap: 14px;
    position: relative; overflow: hidden;
    transition: border-color 0.3s;
  }
  .vb-card.focused { border-color: rgba(134,204,224,0.28); }
  .vb-card-ghost {
    position: absolute; bottom: -8px; right: -8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 90px; line-height: 1;
    color: rgba(134,204,224,0.04);
    pointer-events: none; user-select: none; white-space: nowrap;
  }
  .vb-card-meta { display: flex; flex-direction: column; gap: 3px; }
  .layout-stack .vb-card-meta { align-items: center; text-align: center; }
  .vb-card-label {
    font-family: 'Jost', sans-serif;
    font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--aqua);
  }
  .vb-card-name {
    font-family: Georgia, serif;
    font-size: 26px; font-weight: 300; color: var(--mist); line-height: 1;
  }
  .layout-split .vb-card-body {
    display: flex; align-items: stretch; gap: 12px; min-height: 150px;
  }
  .layout-split .vb-specs-col {
    flex: 1; display: flex; flex-direction: column; gap: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .layout-split .vb-svg-col {
    flex: 0 0 42%; display: flex; align-items: center; justify-content: center; position: relative;
  }
  .layout-split .vb-svg-col::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(61,122,128,0.2) 0%, transparent 70%);
    pointer-events: none; border-radius: 8px;
  }
  .vb-spec-row {
    display: flex; flex-direction: column; gap: 2px;
    padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .vb-spec-row:last-child { border-bottom: none; }
  .vb-spec-k {
    font-family: 'Jost', sans-serif;
    font-size: 9.5px; letter-spacing: 0.10em; text-transform: uppercase;
    color: rgba(255,255,255,0.6);
  }
  .vb-spec-v {
    font-family: Georgia, serif;
    font-size: 13px; font-weight: 700; color: var(--gold); line-height: 1.2;
  }
  .layout-stack .vb-svg-wrap {
    display: flex; align-items: center; justify-content: center;
    min-height: 90px; position: relative;
  }
  .layout-stack .vb-svg-wrap::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(61,122,128,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .vb-specs-grid {
    display: grid;
    grid-template-columns: minmax(0, 55%) minmax(0, 45%);
    gap: 1px; background: rgba(255,255,255,0.06);
    border-radius: 6px; overflow: hidden;
  }
  .vb-spec-cell {
    background: rgba(255,255,255,0.03);
    padding: 8px 10px; display: flex; flex-direction: column; gap: 3px; min-width: 0;
  }
  .vb-spec-cell-k {
    font-family: 'Jost', sans-serif;
    font-size: 9.5px; letter-spacing: 0.10em; text-transform: uppercase;
    color: rgba(255,255,255,0.6);
  }
  .vb-spec-cell-v {
    font-family: Georgia, serif;
    font-size: 12px; font-weight: 700; color: var(--gold); line-height: 1.2;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .vb-filter-block { display: flex; flex-direction: column; gap: 7px; }
  .vb-filter-badge {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 9.5px; letter-spacing: 0.10em; text-transform: uppercase;
    color: rgba(134,204,224,0.85);
    background: rgba(134,204,224,0.08); border: 1px solid rgba(134,204,224,0.2);
    padding: 3px 9px; border-radius: 2px; margin-bottom: 2px;
  }
  .vb-filter-pills { display: flex; flex-wrap: wrap; gap: 4px; }
  .vb-filter-pill {
    font-family: 'Jost', sans-serif;
    font-size: 10px; color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
    padding: 3px 7px; border-radius: 2px;
  }
  .vb-cta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--teal); color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 11px; font-weight: 500; letter-spacing: 0.11em;
    text-decoration: none; padding: 13px 20px; border-radius: 6px; transition: background 0.2s;
  }
  .vb-cta:active { background: var(--teal-deep); }
  .vb-swipe-hint {
    text-align: center; font-family: 'Jost', sans-serif;
    font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase;
    color: rgba(255,255,255,0.6); padding: 0 20px 10px;
  }
  .vb-thumb-nav {
    display: flex; align-items: flex-end; justify-content: center;
    gap: 10px; padding: 14px 20px 18px;
    border-top: 1px solid rgba(255,255,255,0.06);
    overflow-x: auto; scrollbar-width: none;
  }
  .vb-thumb-nav::-webkit-scrollbar { display: none; }
  .vb-thumb-item {
    display: flex; flex-direction: column; align-items: center; gap: 5px;
    cursor: pointer; opacity: 0.6; transition: opacity 0.2s; flex-shrink: 0; padding: 4px 2px;
  }
  .vb-thumb-item.active { opacity: 1; }
  .vb-thumb-name {
    font-family: 'Jost', sans-serif;
    font-size: 7px; letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.3); white-space: nowrap;
  }
  .vb-thumb-item.active .vb-thumb-name { color: var(--aqua); }
  .vb-view-all {
    display: block; text-align: center; padding: 2px 20px 32px;
    font-family: 'Jost', sans-serif;
    font-size: 13px; font-weight: 500; letter-spacing: 0.11em;
    color: var(--aqua); text-decoration: none;
  }

  .vb-header { padding: 32px 20px 16px; }
  .vb-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--aqua); margin-bottom: 10px;
  }
  .vb-headline {
    font-family: Georgia, serif;
    font-size: clamp(26px, 8vw, 36px);
    font-weight: 300; color: var(--mist); line-height: 1.1;
  }
  .vb-headline em { color: var(--aqua); font-style: italic; display: block; }
  .vb-progress {
    display: flex; align-items: center; gap: 10px;
    padding: 0 20px 20px;
  }
  .vb-progress-track {
    flex: 1; height: 2px;
    background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden;
  }
  .vb-progress-fill {
    height: 100%; background: var(--aqua); border-radius: 2px;
    transition: width 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .vb-progress-text {
    font-family: 'Jost', sans-serif;
    font-size: 9px; letter-spacing: 0.10em;
    color: rgba(255,255,255,0.3); white-space: nowrap;
  }
  .vb-track {
    display: flex; overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; gap: 12px; padding: 0 20px 24px;
  }
  .vb-track::-webkit-scrollbar { display: none; }
  .vb-card {
    flex: 0 0 calc(100vw - 52px);
    scroll-snap-align: start;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 20px;
    display: flex; flex-direction: column; gap: 14px;
    position: relative; overflow: hidden;
    transition: border-color 0.3s;
  }
  .vb-card.focused { border-color: rgba(134,204,224,0.28); }
  .vb-card-ghost {
    position: absolute; bottom: -8px; right: -8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 90px; line-height: 1;
    color: rgba(134,204,224,0.04);
    pointer-events: none; user-select: none; white-space: nowrap;
  }
  .vb-card-meta { display: flex; flex-direction: column; gap: 3px; }
  .layout-stack .vb-card-meta { align-items: center; text-align: center; }
  .vb-card-label {
    font-family: 'Jost', sans-serif;
    font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--aqua);
  }
  .vb-card-name {
    font-family: Georgia, serif;
    font-size: 26px; font-weight: 300; color: var(--mist); line-height: 1;
  }
  .layout-split .vb-card-body {
    display: flex; align-items: stretch; gap: 12px; min-height: 150px;
  }
  .layout-split .vb-specs-col {
    flex: 1; display: flex; flex-direction: column; gap: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .layout-split .vb-svg-col {
    flex: 0 0 42%; display: flex; align-items: center; justify-content: center; position: relative;
  }
  .layout-split .vb-svg-col::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(61,122,128,0.2) 0%, transparent 70%);
    pointer-events: none; border-radius: 8px;
  }
  .vb-spec-row {
    display: flex; flex-direction: column; gap: 2px;
    padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .vb-spec-row:last-child { border-bottom: none; }
  .vb-spec-k {
    font-family: 'Jost', sans-serif;
    font-size: 9.5px; letter-spacing: 0.10em; text-transform: uppercase;
    color: rgba(255,255,255,0.6);
  }
  .vb-spec-v {
    font-family: Georgia, serif;
    font-size: 13px; font-weight: 700; color: var(--gold); line-height: 1.2;
  }
  .layout-stack .vb-svg-wrap {
    display: flex; align-items: center; justify-content: center;
    min-height: 90px; position: relative;
  }
  .layout-stack .vb-svg-wrap::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(61,122,128,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .vb-specs-grid {
    display: grid;
    grid-template-columns: minmax(0, 55%) minmax(0, 45%);
    gap: 1px; background: rgba(255,255,255,0.06);
    border-radius: 6px; overflow: hidden;
  }
  .vb-spec-cell {
    background: rgba(255,255,255,0.03);
    padding: 8px 10px; display: flex; flex-direction: column; gap: 3px; min-width: 0;
  }
  .vb-spec-cell-k {
    font-family: 'Jost', sans-serif;
    font-size: 9.5px; letter-spacing: 0.10em; text-transform: uppercase;
    color: rgba(255,255,255,0.6);
  }
  .vb-spec-cell-v {
    font-family: Georgia, serif;
    font-size: 12px; font-weight: 700; color: var(--gold); line-height: 1.2;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .vb-filter-block { display: flex; flex-direction: column; gap: 7px; }
  .vb-filter-badge {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 9.5px; letter-spacing: 0.10em; text-transform: uppercase;
    color: rgba(134,204,224,0.85);
    background: rgba(134,204,224,0.08); border: 1px solid rgba(134,204,224,0.2);
    padding: 3px 9px; border-radius: 2px; margin-bottom: 2px;
  }
  .vb-filter-pills { display: flex; flex-wrap: wrap; gap: 4px; }
  .vb-filter-pill {
    font-family: 'Jost', sans-serif;
    font-size: 10px; color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
    padding: 3px 7px; border-radius: 2px;
  }
  .vb-cta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--teal); color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 11px; font-weight: 500; letter-spacing: 0.11em;
    text-decoration: none; padding: 13px 20px; border-radius: 6px; transition: background 0.2s;
  }
  .vb-cta:active { background: var(--teal-deep); }
  .vb-swipe-hint {
    text-align: center; font-family: 'Jost', sans-serif;
    font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase;
    color: rgba(255,255,255,0.6); padding: 0 20px 10px;
  }
  .vb-thumb-nav {
    display: flex; align-items: flex-end; justify-content: center;
    gap: 10px; padding: 14px 20px 18px;
    border-top: 1px solid rgba(255,255,255,0.06);
    overflow-x: auto; scrollbar-width: none;
  }
  .vb-thumb-nav::-webkit-scrollbar { display: none; }
  .vb-thumb-item {
    display: flex; flex-direction: column; align-items: center; gap: 5px;
    cursor: pointer; opacity: 0.6; transition: opacity 0.2s; flex-shrink: 0; padding: 4px 2px;
  }
  .vb-thumb-item.active { opacity: 1; }
  .vb-thumb-name {
    font-family: 'Jost', sans-serif;
    font-size: 7px; letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.3); white-space: nowrap;
  }
  .vb-thumb-item.active .vb-thumb-name { color: var(--aqua); }
  .vb-view-all {
    display: block; text-align: center; padding: 2px 20px 32px;
    font-family: 'Jost', sans-serif;
    font-size: 13px; font-weight: 500; letter-spacing: 0.11em;
    color: var(--aqua); text-decoration: none;
  }


  /* ═══════════════════════════════════════════════════════════
     SECTION: USE CASES
  ═══════════════════════════════════════════════════════════ */
  .use-cases-section {
    background: var(--linen);
    padding: 56px max(56px, calc((100% - 1100px) / 2)) 0;
    position: relative;
    overflow: hidden;
  }
  .use-cases-section::before {
    content: "USE CASES";
    font-family: 'Bebas Neue', sans-serif;
    font-size: 220px;
    color: rgba(61,122,128,0.07);
    position: absolute;
    top: -20px;
    right: -30px;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
  }
  .uc-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; position: relative; z-index: 1; }
  .uc-kicker { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.11em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
  .uc-headline { font-family: Georgia, serif; font-size: clamp(30px, 2.8vw, 42px); font-weight: 300; font-style: normal; line-height: 1.1; color: var(--abyss); }
  .uc-headline em { font-style: italic; color: var(--teal); }
  .uc-header-right { width: 420px; flex-shrink: 0; text-align: right; }
  .uc-intro { font-size: 15px; font-weight: 300; line-height: 1.65; color: var(--slate); margin-bottom: 16px; }
  .uc-all-link { display: inline-flex; align-items: center; gap: 8px; font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.11em; text-transform: uppercase; color: var(--abyss); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; transition: color 0.2s, gap 0.2s; }
  .uc-all-link:hover { color: var(--teal); gap: 12px; }
  .uc-all-link svg { transition: transform 0.2s; }
  .uc-all-link:hover svg { transform: translateX(3px); }
  .uc-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; position: relative; z-index: 1; }
  .uc-tile { background: var(--teal-deep); padding: 28px 20px 24px; cursor: pointer; text-decoration: none; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 14px; transition: background 0.25s; min-height: 180px; }
  .uc-tile::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
  .uc-tile:hover { background: var(--abyss); }
  .uc-tile:hover::after { transform: scaleX(1); }
  .uc-tile-icon { width: 36px; height: 36px; opacity: 0.85; flex-shrink: 0; transition: opacity 0.2s, transform 0.3s; }
  .uc-tile:hover .uc-tile-icon { opacity: 1; transform: scale(1.08); }
  .uc-tile-body { flex: 1; }
  .uc-tile-label { font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
  .uc-tile-name { font-family: Georgia, serif; font-size: 19px; font-weight: 300; color: var(--linen); line-height: 1.2; margin-bottom: 10px; }
  .uc-tile-hook { font-size: 15px; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,0.85); transition: color 0.2s; }
  .uc-tile:hover .uc-tile-hook { color: rgba(242,235,225,0.9); }
  .uc-tile-arrow { align-self: flex-end; color: var(--gold); opacity: 0; transform: translateX(-6px); transition: opacity 0.25s, transform 0.25s; font-size: 16px; }
  .uc-tile:hover .uc-tile-arrow { opacity: 1; transform: translateX(0); }
  .uc-footnote-bar { background: var(--linen); padding: 18px max(56px, calc((100% - 1100px) / 2)) 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; position: relative; z-index: 1; }
  .uc-footnote-note { display: flex; align-items: flex-start; gap: 10px; font-family: 'Jost', sans-serif; font-size: 10.5px; letter-spacing: 0.06em; color: var(--slate); }
  .uc-footnote-note div { white-space: nowrap; }
  .uc-footnote-note > span { color: var(--teal); font-size: 14px; line-height: 1; }
  .uc-charity-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); border: 1px solid var(--gold); border-radius: 2px; padding: 7px 14px; text-decoration: none; transition: background 0.2s; flex-shrink: 0; }
  .uc-charity-pill:hover { background: transparent; }
  .uc-charity-pill:hover .uc-charity-label, .uc-charity-pill:hover .uc-charity-sub { color: var(--abyss); }
  .uc-charity-icon { width: 14px; height: 14px; color: var(--abyss); flex-shrink: 0; }
  .uc-charity-pill:hover .uc-charity-icon { color: var(--abyss); }
  .uc-charity-text { display: flex; flex-direction: column; gap: 1px; }
  .uc-charity-label { font-family: 'Jost', sans-serif; font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--abyss); }
  .uc-charity-sub { font-family: 'Nunito Sans', sans-serif; font-size: 11px; color: var(--abyss); opacity: 0.9; transition: opacity 0.2s; }
  .uc-charity-pill:hover .uc-charity-sub { opacity: 0.7; }
  .uc-ticker-wrap { overflow: hidden; background: var(--abyss); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.1); margin-top: 20px; }
  .uc-ticker-track { display: flex; width: max-content; animation: ucTicker 50s linear infinite; }
  .uc-ticker-track:hover { animation-play-state: paused; }
  @keyframes ucTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .uc-ticker-item { padding: 13px 40px; font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.6); white-space: nowrap; border-right: 1px solid rgba(255,255,255,0.1); cursor: default; transition: color 0.2s; }
  .uc-ticker-item:hover { color: rgba(255,255,255,0.9); }
  .uc-ticker-item span { color: var(--gold); }


  /* ─── GENERATORS CTA STRIP ─────────────────────────────────── */
  .gen-cta {
    background: var(--abyss);
    padding: 72px 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    overflow: hidden;
  }
  .gen-cta::after {
    content: "GENERATORS";
    font-family: 'Bebas Neue', sans-serif;
    font-size: 180px;
    color: rgba(134,204,224,0.04);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
  }
  .gen-cta-copy { position: relative; z-index: 1; }
  .gen-cta-kicker {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .gen-cta-headline {
    font-family: Georgia, serif;
    font-size: clamp(28px, 2.6vw, 38px);
    font-weight: 300;
    font-style: normal;
    line-height: 1.1;
    color: var(--linen);
    white-space: nowrap;
  }
  .gen-cta-headline em { font-style: italic; color: var(--aqua); }
  .gen-cta-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 10px;
    line-height: 1.6;
    max-width: 420px;
  }
  .gen-cta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }
  .gen-cta-capacities { display: flex; gap: 5px; }
  .gen-cta-cap {
    font-family: 'Jost', sans-serif;
    font-size: 8.5px;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 2px;
  }
  .gen-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--teal);
    color: #fff;
    padding: 14px 14px;
    font-family: 'Jost', sans-serif;
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.11em;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s, gap 0.2s;
    white-space: nowrap;
  }
  .gen-cta-btn:hover { background: var(--teal-deep); gap: 14px; }


  /* ═══════════════════════════════════════════════════════════
     SECTION: SOCIAL PROOF
  ═══════════════════════════════════════════════════════════ */
  .section-social {
    background: var(--linen);
    padding: 80px 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    border-top: 1px solid rgba(61,122,128,0.1);
  }
  .social-header { margin-bottom: 36px; }
  .social-kicker {
    font-family: 'Jost', sans-serif;
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.13em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 10px;
    display: flex; align-items: center; gap: 10px;
  }
  .social-headline {
    font-family: Georgia, serif;
    font-size: clamp(26px, 2.4vw, 36px);
    font-weight: 300; font-style: italic;
    color: var(--abyss); line-height: 1.1;
  }
  .social-headline em { color: var(--teal); font-style: italic; }

  /* Testimonials */
  .testimonials-grid { display: flex; flex-direction: column; gap: 2px; }
  .t-card {
    background: var(--white);
    padding: 28px 32px;
    display: flex; flex-direction: column; gap: 14px;
    transition: box-shadow 0.2s;
  }
  .t-card:hover { box-shadow: 0 4px 24px rgba(61,122,128,0.08); }
  .t-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; }
  .t-quote {
    font-family: Georgia, serif;
    font-size: 14px; font-weight: 300; font-style: italic;
    color: var(--abyss); line-height: 1.65;
    border: none; margin: 0; padding: 0;
  }
  .t-author { display: flex; align-items: center; gap: 12px; }
  .t-img-wrap { flex-shrink: 0; }
  .t-img-placeholder {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--teal-deep); opacity: 0.25;
  }
  .t-name {
    font-family: 'Jost', sans-serif;
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.04em; color: var(--abyss);
  }
  .t-context {
    font-family: 'Jost', sans-serif;
    font-size: 10px; font-weight: 400;
    letter-spacing: 0.08em; color: var(--slate);
    text-transform: uppercase; margin-top: 2px;
  }

  /* Blog */
  .blog-grid { display: flex; flex-direction: column; gap: 2px; }
  .blog-card {
    display: flex; gap: 20px;
    background: var(--white);
    padding: 20px;
    text-decoration: none;
    transition: box-shadow 0.2s;
    align-items: flex-start;
  }
  .blog-card:hover { box-shadow: 0 4px 24px rgba(61,122,128,0.08); }
  .blog-img-wrap { flex-shrink: 0; }
  .blog-img-placeholder {
    width: 80px; height: 80px;
    background: rgba(61,122,128,0.15);
  }
  .blog-body { flex: 1; }
  .blog-meta {
    font-family: 'Jost', sans-serif;
    font-size: 9px; font-weight: 400;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--slate); margin-bottom: 6px;
  }
  .blog-title {
    font-family: Georgia, serif;
    font-size: 15px; font-weight: 300;
    color: var(--abyss); line-height: 1.3;
    margin-bottom: 6px;
  }
  .blog-excerpt {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px; font-weight: 300;
    color: var(--slate); line-height: 1.6;
    margin-bottom: 10px;
  }
  .blog-read {
    font-family: 'Jost', sans-serif;
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.09em; text-transform: uppercase;
    color: var(--teal);
    border-bottom: 1px solid rgba(61,122,128,0.3);
    padding-bottom: 1px;
  }
  .blog-card:hover .blog-read { border-color: var(--teal); }


  /* ─── SECTION: SOCIAL PROOF ───────────────────────── */
  .section-proof {
    background: var(--linen);
    padding: 80px 72px;
    position: relative;
    overflow: hidden;
  }
  .proof-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
  }
  .proof-kicker {
    font-family: 'Jost', sans-serif;
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.13em; text-transform: uppercase;
    color: var(--teal);
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 10px;
  }
  .proof-headline {
    font-family: Georgia, serif;
    font-size: clamp(28px, 2.6vw, 38px);
    font-weight: 300; font-style: italic;
    color: var(--abyss); line-height: 1.1;
  }
  .proof-headline em { color: var(--teal); font-style: italic; }

  /* ── TESTIMONIALS ROW ── */
  .proof-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 2px;
  }
  .proof-quote {
    background: var(--white);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 2px solid transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .proof-quote:hover {
    border-top-color: var(--teal);
    box-shadow: 0 6px 32px rgba(61,122,128,0.08);
  }
  .proof-stars {
    display: flex; gap: 3px;
  }
  .proof-star {
    color: var(--gold);
    font-size: 13px;
  }
  .proof-text {
    font-family: Georgia, serif;
    font-size: 14px; font-weight: 300; font-style: italic;
    color: var(--abyss); line-height: 1.7;
    flex: 1;
  }
  .proof-author {
    display: flex; align-items: center; gap: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(61,122,128,0.08);
  }
  .proof-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--teal-deep);
    display: flex; align-items: center; justify-content: center;
    font-family: Georgia, serif;
    font-size: 14px; font-weight: 300;
    color: var(--linen);
    flex-shrink: 0;
  }
  .proof-name {
    font-family: 'Jost', sans-serif;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--abyss);
  }
  .proof-context {
    font-size: 11px; font-weight: 300;
    color: var(--slate);
  }

  /* ── BLOG ROW ── */
  .proof-blog {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 48px;
  }
  .proof-blog-kicker {
    font-family: 'Jost', sans-serif;
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.13em; text-transform: uppercase;
    color: var(--teal);
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 24px;
    grid-column: 1 / -1;
  }
  .proof-post {
    background: var(--abyss);
    padding: 32px 28px;
    text-decoration: none;
    display: flex; flex-direction: column; gap: 14px;
    transition: background 0.2s;
    position: relative;
    overflow: hidden;
  }
  .proof-post::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .proof-post:hover { background: var(--teal-deep); }
  .proof-post:hover::after { transform: scaleX(1); }
  .proof-post-tag {
    font-family: 'Jost', sans-serif;
    font-size: 9px; font-weight: 500;
    letter-spacing: 0.13em; text-transform: uppercase;
    color: var(--gold);
  }
  .proof-post-title {
    font-family: Georgia, serif;
    font-size: 17px; font-weight: 300; font-style: italic;
    color: var(--linen); line-height: 1.4;
    flex: 1;
  }
  .proof-post-meta {
    font-family: 'Jost', sans-serif;
    font-size: 10px; letter-spacing: 0.08em;
    color: rgba(255,255,255,0.35);
    display: flex; align-items: center; justify-content: space-between;
  }
  .proof-post-arrow { color: var(--gold); font-size: 14px; }


  /* ─── SECTION: SOCIAL PROOF ─────────────────── */

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --abyss:     #1A2B2C;
    --teal:      #3D7A80;
    --teal-deep: #2C5F64;
    --linen:     #F2EBE1;
    --gold:      #C8A96E;
    --aqua:      #86CCE0;
  }
  /* ── SHARED ── */
  .sp-kicker {
    font-family: 'Jost', sans-serif;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.11em; text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 20px;
  }
  .sp-headline {
    font-family: Georgia, serif;
    font-size: clamp(28px, 2.4vw, 38px);
    font-weight: 300; font-style: normal;
    color: var(--linen); line-height: 1.05;
    margin-bottom: 24px;
  }
  .sp-headline em { color: var(--aqua); }
  .sp-stars { color: var(--gold); font-size: 11px; letter-spacing: 1px; }
  .sp-all-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Jost', sans-serif;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.11em; text-transform: uppercase;
    color: rgba(255,255,255,0.45); text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-bottom: 2px; margin-bottom: 4px;
    transition: color 0.2s, gap 0.2s;
  }
  .sp-all-link:hover { color: var(--linen); gap: 9px; }
  .sp-post-date {
    font-family: 'Jost', sans-serif;
    font-size: 10px; letter-spacing: 0.08em;
    color: rgba(255,255,255,0.55);
  }
  /* Avatar — supports real image via <img> inside */
  .sp-avatar {
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    font-family: Georgia, serif;
    font-weight: 300; color: var(--aqua);
    flex-shrink: 0; overflow: hidden; position: relative;
  }
  .sp-avatar img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; border-radius: 50%;
  }
  .sp-name {
    font-family: 'Jost', sans-serif;
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.04em; color: var(--linen);
  }
  .sp-ctx {
    font-family: 'Jost', sans-serif;
    font-size: 10px; letter-spacing: 0.08em;
    text-transform: uppercase; color: rgba(255,255,255,0.4);
    margin-top: 1px;
  }
  .sp-post-read {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 9px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.28); margin-top: 6px;
    transition: color 0.2s, gap 0.2s;
  }


  /* ════════════════════════════════════════
     VERSION 2 — Full-width horizontal rows
  ════════════════════════════════════════ */
  .sp-v2 {
    background: var(--teal-deep);
    padding: 56px max(56px, calc((100% - 1100px) / 2));
    position: relative; overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .sp-v2::before {
    content: "VOICES";
    font-family: 'Bebas Neue', sans-serif; font-size: 280px;
    color: rgba(255,255,255,0.025);
    position: absolute; left: -20px; top: -50px;
    line-height: 1; pointer-events: none;
  }
  .sp-v2::after {
    content: "BLOGS";
    font-family: 'Bebas Neue', sans-serif; font-size: 280px;
    color: rgba(255,255,255,0.025);
    position: absolute; right: -10px; top: 40%;
    line-height: 1; pointer-events: none;
  }
  .sp-v2-inner { position: relative; z-index: 1; }

  /* V2 testimonials — 3 across */
  .sp-v2-quotes {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; margin-bottom: 44px;
  }
  .sp-v2-quote {
    background: rgba(255,255,255,0.05);
    padding: 0;
    display: flex; gap: 0; align-items: stretch;
    border-bottom: 2px solid transparent;
    transition: background 0.2s, border-color 0.2s;
    overflow: hidden;
  }
  .sp-v2-quote:hover { background: rgba(255,255,255,0.09); border-bottom-color: var(--gold); }
  .sp-v2-quote .sp-avatar {
    width: 80px; min-height: 100%; height: auto;
    flex-shrink: 0; border-radius: 0;
    background: rgba(26,43,44,0.55);
    border: none;
    font-size: 28px; font-weight: 300;
    color: rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
  }
  .sp-v2-quote .sp-avatar img {
    border-radius: 0;
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .sp-v2-quote-body { flex: 1; padding: 20px 22px; }
  .sp-v2-quote-body .sp-name { margin-bottom: 1px; }
  .sp-v2-quote-body .sp-ctx { margin-bottom: 10px; }
  .sp-v2-quote-body .sp-stars { margin-bottom: 8px; font-size: 10px; }
  .sp-v2-text {
    font-family: Georgia, serif;
    font-size: 14px; font-weight: 300; font-style: italic;
    color: rgba(255,255,255,0.78); line-height: 1.6;
  }

  /* V2 blog divider + header */
  .sp-v2-divider {
    height: 1px; background: rgba(255,255,255,0.07);
    margin-bottom: 36px;
  }
  .sp-v2-blog-hdr {
    display: flex; align-items: flex-end;
    justify-content: space-between; margin-bottom: 20px;
  }
  .sp-v2-blog-hdr .sp-headline { margin-bottom: 0; }

  /* V2 blog — 3-col horizontal grid */
  .sp-v2-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .sp-v2-post {
    background: rgba(26,43,44,0.4);
    padding: 20px 22px;
    text-decoration: none;
    display: flex; flex-direction: column; gap: 10px;
    border-bottom: 2px solid transparent;
    transition: background 0.2s, border-color 0.2s;
  }
  .sp-v2-post:hover { background: rgba(26,43,44,0.75); border-bottom-color: var(--gold); }
  .sp-v2-post-thumb {
    width: 100%;
    height: 120px;
    background: rgba(26,43,44,0.5);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .sp-v2-post-thumb svg { opacity: 0.18; }
  .sp-v2-post-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
  .sp-v2-post-meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
  .sp-post-cat {
    font-size: 9px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.55);
  }
  .sp-post-sep {
    font-size: 9px; color: rgba(255,255,255,0.15);
  }
  .sp-post-read-time {
    font-size: 9px; letter-spacing: 0.06em;
    color: rgba(255,255,255,0.55);
  }
  .sp-v2-post-title {
    font-family: Georgia, serif;
    font-size: 15px; font-weight: 300; font-style: italic;
    color: var(--linen); line-height: 1.3;
  }
  .sp-v2-post-excerpt {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px; font-weight: 300;
    color: rgba(255,255,255,0.85); line-height: 1.6; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .sp-v2-post-arrow {
    font-size: 14px; color: rgba(255,255,255,0.15); align-self: flex-end;
    transition: color 0.2s, transform 0.2s;
  }
  .sp-v2-post:hover .sp-v2-post-arrow { color: var(--gold); transform: translateX(3px); }

  /* ─── SECTION: PRE-FOOTER CTA ─────────────────── */
  /* ── SHARED BUTTONS ── */
  .btn-gold {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 500;
    letter-spacing: 0.11em;
    background: var(--gold); color: var(--abyss);
    padding: 16px 32px; border-radius: 6px; text-decoration: none;
    transition: opacity 0.2s, gap 0.2s; border: none; cursor: pointer;
  }
  .btn-gold:hover { opacity: 0.88; gap: 14px; }
  .btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 500;
    letter-spacing: 0.11em;
    background: transparent; color: rgba(26,43,44,0.55);
    padding: 15px 32px; border-radius: 6px; text-decoration: none;
    border: 1.5px solid rgba(26,43,44,0.2);
    transition: color 0.2s, border-color 0.2s, gap 0.2s;
  }
  .btn-outline:hover { color: var(--abyss); border-color: rgba(26,43,44,0.45); gap: 14px; }

  /* ── SHARED TAGS ── */
  .tags {
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .tag {
    font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(26,43,44,0.45);
    border: 1px solid rgba(26,43,44,0.15);
    padding: 5px 11px; border-radius: 2px;
  }

  /* ══════════════════════════════════════════
     VARIANT 1 — "Stop buying water."
     Layout: headline left, content right, ghost centred
  ══════════════════════════════════════════ */
  #v1 {
    background: var(--linen);
    padding: 88px 72px 68px;
    position: relative; overflow: hidden;
  }
  .v1-ghost {
    font-family: 'Bebas Neue', sans-serif; font-size: 360px;
    color: rgba(26,43,44,0.045);
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1; pointer-events: none; white-space: nowrap;
    letter-spacing: -0.02em; z-index: 0;
  }  .v1-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; max-width: 1100px; margin: 0 auto;
  }
  .v1-kicker {
    font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500;
    letter-spacing: 0.11em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 18px;
  }
  .v1-headline {
    font-family: Georgia, serif;
    font-size: clamp(32px, 3vw, 50px);
    font-weight: 300; font-style: normal;
    color: var(--abyss); line-height: 1.05;
  }
  .v1-headline em { font-style: italic; color: var(--teal); display: block; }
  .v1-right { display: flex; flex-direction: column; gap: 28px; }
  .v1-body {
    font-size: 15px; font-weight: 300;
    color: rgba(26,43,44,0.55); line-height: 1.7;
    margin-top: 20px; max-width: 460px;
  }
  .v1-btns { display: flex; gap: 10px; align-items: center; }


  /* ══════════════════════════════════════════
     VARIANT 2

  /* ══════════════════════════════════════════
     VARIANT 1 — "Stop buying water."
     Layout: headline left, content right, ghost centred
  ══════════════════════════════════════════ */
  #v1 {
    background: var(--linen);
    padding: 88px 72px 68px;
    position: relative; overflow: hidden;
  }
  .v1-ghost {
    font-family: 'Bebas Neue', sans-serif; font-size: 360px;
    color: rgba(26,43,44,0.045);
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1; pointer-events: none; white-space: nowrap;
    letter-spacing: -0.02em; z-index: 0;
  }  .v1-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; max-width: 1100px; margin: 0 auto;
  }
  .v1-kicker {
    font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500;
    letter-spacing: 0.11em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 18px;
  }
  .v1-headline {
    font-family: Georgia, serif;
    font-size: clamp(32px, 3vw, 50px);
    font-weight: 300; font-style: normal;
    color: var(--abyss); line-height: 1.05;
  }
  .v1-headline em { font-style: italic; color: var(--teal); display: block; }
  .v1-right { display: flex; flex-direction: column; gap: 28px; }
  .v1-body {
    font-size: 15px; font-weight: 300;
    color: rgba(26,43,44,0.55); line-height: 1.7;
    margin-top: 20px; max-width: 460px;
  }
  .v1-btns { display: flex; gap: 10px; align-items: center; }
  #prefooter-cta { background: var(--linen); padding: 88px 72px 68px; position: relative; overflow: hidden; }

  /* ═══════════════════════════════════════════
     MOBILE — max-width: 768px
  ════════════════════════════════════════════ */
  @media (max-width: 768px) {

    /* Section C: swap desktop→mobile */
    .section-solution { display: none !important; }
    .vb-section { display: flex !important; }
    .vb-swipe-hint { display: none !important; }
    .vb-thumb-nav { display: none !important; }
    .vb-view-all { display: none !important; }
    /* ── Nav ── */
    nav {
      padding: 0 20px;
      height: 64px;
      border-bottom: none !important;
      box-shadow: none;
    }
    .nav-links,
    .nav-right { display: none; }
    .nav-hamburger { display: flex !important; }
    .afticker { top: 64px; height: 52px; }
    .afticker-item { height: 52px; }
    .nav-drawer { display: block !important; top: 64px !important; background: rgba(242,235,225,0.98); backdrop-filter: blur(20px); }
    .nav-drawer.open { max-height: 80vh !important; padding: 8px 0 24px; border-bottom-width: 1px; }
    .nav-logo svg { height: 36px; }

    /* ── Hero ── */
    .hero {
      grid-template-columns: 1fr;
      min-height: auto;
      padding-top: 64px;
      margin-top: -1px;
      display: flex;
      flex-direction: column;
    }
    .hero-left {
      padding: 80px 24px 0;
      margin-bottom: -115px;
      order: 1;
      display: flex;
      flex-direction: column;
      grid-column: unset; grid-row: unset;
    }
    .hero-overtitle {
      font-size: 12px;
      letter-spacing: 0.10em;
      margin-top: 10px !important;
      margin-bottom: 12px;
      white-space: nowrap;
    }
    .hero-headline {
      font-size: clamp(34px, 9vw, 46px);
      font-style: normal;
      margin-top: 10px;
      padding-top: 8px;
      padding-bottom: 8px;
      margin-bottom: 16px;
    }
    .hero-tagline { display: none; }
    .hero-subline {
      font-size: 15px;
      line-height: 1.65;
      margin-bottom: 28px;
      max-width: 100%;
    }
    .hero-actions {
      flex-direction: column;
      gap: 16px;
      align-items: stretch;
      margin-bottom: 0;
      margin-left: 30px;
      margin-right: 30px;
      order: 3;
      grid-column: unset; grid-row: unset;
      padding: 0;
    }
    .btn-primary {
      justify-content: center;
      padding: 15px 24px;
      text-align: center;
    }
    .btn-ghost-light {
      text-align: center;
      justify-content: center;
      padding-top: 4px;
      margin-bottom: 45px;
    }
    .hero-trust {
      margin-top: 36px;
      gap: 0;
      justify-content: space-between;
      align-items: flex-end;
      border-top: none;
      order: 4;
      grid-column: unset; grid-row: unset;
      padding: 0 24px 40px;
    }
    .hero-trust-item {
      flex: 1;
      align-items: center;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }
    .hero-trust-upto {
      font-size: 11px;
      font-weight: 300;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.04em;
      margin-bottom: 2px;
      line-height: 1;
    }
    .hero-trust-item.has-upto {
      flex-direction: column;
      align-items: center;
    }
    .hero-trust-value-col {
      display: flex; flex-direction: column; align-items: center;
    }
    .hero-trust-value { font-size: 22px; line-height: 1; }
    .hero-trust-label { font-size: 11px; margin-top: 4px; color: rgba(255,255,255,0.6); }
    .hero-trust-divider { margin: 0 4px; align-self: stretch; }
    .hero-right {
      order: 2;
      padding: 0 16px 24px;
      padding-top: 25px !important;
      min-height: auto;
      justify-content: flex-start;
      align-items: center;
      overflow: visible;
      grid-column: unset; grid-row: unset;
    }
    .hero-right::before {
      width: 340px; height: 340px;
      bottom: 20px;
    }
    .hero-right::after { display: none; }
    .hero-machine-wrap { width: 320px; max-width: 320px; overflow: visible; margin: 25px auto 0; }
    .machine-img-placeholder { width: 300px; height: 440px; }
    .hero-product-img { width: 320px; max-width: 320px; height: 440px; }
    .machine-badge { padding: 6px 9px; }
    .badge-val { font-size: 14px; }
    .badge-label { font-size: 9px; }
    .badge-left       { left: 0px;   top: 44%; }
    .badge-right      { right: 7px;  top: 66%; }
    .badge-top-left   { left: 16px;  top: calc(25% - 25px); }
    .badge-bottom-left{ left: -9px;  bottom: calc(10% + 20px); }

    /* ── Problem / Challenge section ── */
    .section-problem { padding: 56px 0 0; }
    .sb-inner { padding: 0 20px; }
    .sb-headline {
      font-size: 30px;
      margin-bottom: 36px;
    }
    .section-h2 { font-size: 30px; }
    /* ── Lede standard: Nunito Sans 15px 300 ── */
    .pillar-body,
    .section-body,
    .v1-intro,
    .why-body,
    .sb-card-body,
    .c-tagline,
    .v1-body,
    .v1-step-sub,
    .uc-intro,
    .uc-tile-hook,
    .sp-v2-text {
      font-family: 'Nunito Sans', sans-serif;
      font-size: 15px;
      font-weight: 300;
    }
    .sb-cards {
      display: flex;
      flex-direction: row;
      overflow-x: auto;
      overflow-y: visible;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;
      gap: 14px;
      padding: 0 20px 10px;
      grid-template-columns: unset;
      scrollbar-width: none;
    }
    .sb-cards::-webkit-scrollbar { display: none; }
    .sb-card {
      flex: 0 0 280px;
      scroll-snap-align: start;
      display: flex;
      flex-direction: column;
      grid-row: unset;
      grid-template-rows: unset;
    }
    .sb-card-title { -webkit-line-clamp: unset; overflow: visible; }
    .sb-stat { font-size: 32px; }
    .sb-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      padding: 10px 0 20px;
    }
    .sb-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: rgba(61,122,128,0.25);
      transition: background 0.25s, transform 0.25s;
      cursor: pointer;
    }
    .sb-dot.active {
      background: var(--teal);
      transform: scale(1.2);
    }

    /* ── What it does for you (impact) section ── */
    .section-impact {
      padding: 56px 20px;
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .sb-footer { padding: 40px 30px; }
    .sb-footer-copy { font-size: 20px; }
    .vb-filter-block { display: none; }
    .mob-break { display: block; }
    .desk-break { display: none; }

    /* ── Generators CTA banner ── */
    .gen-cta {
      padding: 48px 20px;
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
    }
    .gen-cta-headline { white-space: normal; font-size: 30px; padding: 10px 0; }
    .gen-cta-sub { white-space: normal; font-size: 14px; margin-top: 16px; }
    .gen-cta-right { align-items: flex-start; width: 100%; gap: 12px; }
    .gen-cta-capacities { gap: 5px; flex-wrap: wrap; }
    .gen-cta-cap { padding: 4px 8px; font-size: 10px; }
    .gen-cta-btn { width: calc(100% - 60px) !important; margin: 10px 0 0 0px !important; display: flex; justify-content: center; align-self: flex-start; }

    /* ── How It Works ── */
    .v1 {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      padding: 56px 20px;
      gap: 32px;
      display: flex;
      flex-direction: column;
    }
    .v1-left { display: flex; flex-direction: column; gap: 12px; }
    .v1-intro { margin-bottom: 0; }
    .v1-quotes { margin-bottom: 0; }
    .v1-steps { grid-column: unset; grid-row: unset; }
    .lv-tile { grid-column: unset; grid-row: unset; max-width: 100%; margin-top: -20px; }
    .v1-headline { font-size: 30px; margin-bottom: 0px; }
    .v1-steps::before { display: none; }
    .v1-steps { padding-left: 0; }
    .v1-step { padding-left: 0; padding-right: 0; }

    /* ── Social proof / blog section ── */
    .sp-v2 { padding: 56px 20px 40px; }
    .sp-kicker { font-size: 12px; margin-bottom: 20px; }
    .sp-headline { font-size: 30px; padding-bottom: 20px; }
    .sp-v2-quotes {
      display: flex;
      flex-direction: row;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;
      gap: 10px;
      padding-bottom: 10px;
      grid-template-columns: unset;
      margin-bottom: 0;
      scrollbar-width: none;
    }
    .sp-v2-quotes::-webkit-scrollbar { display: none; }
    .sp-v2-quote {
      flex: 0 0 calc(80vw - 25px);
      scroll-snap-align: start;
    }
    .sp-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      padding: 10px 0 20px;
    }
    .sp-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.25);
      transition: background 0.2s, transform 0.2s;
      cursor: pointer;
    }
    .sp-dot.active {
      background: rgba(255,255,255,0.85);
      transform: scale(1.2);
    }
    .sp-v2-blog-hdr { flex-direction: column; align-items: flex-start; gap: 4px; margin-bottom: 16px; }
    .sp-v2-blog-hdr .sp-headline { padding-bottom: 10px; }
    .sp-v2-posts {
      display: flex;
      flex-direction: row;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;
      gap: 10px;
      padding-bottom: 10px;
      grid-template-columns: unset;
      scrollbar-width: none;
    }
    .sp-v2-posts::-webkit-scrollbar { display: none; }
    .sp-all-link { display: none; }
    .sp-v2-post {
      flex: 0 0 280px;
      width: 280px;
      scroll-snap-align: start;
      overflow: hidden;
    }
    .sp-v2-post .sp-v2-post-title { font-size: 18px !important; }
    .use-cases-section { padding: 56px 20px 0; }
    .uc-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 28px;
    }
    .uc-headline { font-size: 30px; }
    .uc-header-right { width: 100%; text-align: left; }
    .uc-grid {
      display: flex;
      flex-direction: row;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;
      gap: 10px;
      padding-bottom: 10px;
      grid-template-columns: unset;
      scrollbar-width: none;
    }
    .uc-grid::-webkit-scrollbar { display: none; }
    .uc-tile {
      flex: 0 0 280px;
      scroll-snap-align: start;
      min-height: 200px;
    }
    .uc-footnote-bar {
      padding: 16px 20px 24px;
      justify-content: center !important;
    }
    .uc-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      padding: 10px 0 0px;
    }

    /* ── Pre-footer CTA ── */
    #prefooter-cta { padding: 56px 20px 48px; }
    .v1-inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .v1-headline { font-size: 30px; }
    .v1-body { margin-top: 10px; font-size: 14px; }
    .v1-btns { flex-direction: column; align-items: stretch; }
    .btn-gold, .btn-outline { width: 100%; justify-content: center; text-align: center; }
    .v1-ghost { display: none; }
    .sp-v2-quotes { padding-bottom: 10px; }
    #sp-quote-dots { padding-bottom: 20px; }
    #sp-post-dots { padding-bottom: 20px; }
    .tag { font-size: 8.5px; padding: 4px 9px; }

    /* ── Footer ── */
    .footer-ghost { display: none; }
    .footer-upper {
      grid-template-columns: 1fr;
      padding: 48px 20px 40px;
      gap: 40px;
    }
    .footer-nav-cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px 20px;
    }
    .footer-support-col {
      grid-column: 1 / -1;
    }
    .footer-support-col .footer-links {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px 20px;
    }
    .footer-support-col .footer-links li + li { margin-top: 0; }
    .footer-social-row { flex-wrap: wrap; padding-top: 10px !important; }
    .footer-brand-headline { font-size: clamp(20px, 6vw, 28px); margin-top: 18px !important; margin-bottom: 5px !important; }
    .footer-bottom {
      padding: 20px;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
    .footer-legal { flex-wrap: wrap; gap: 10px; }

  }


  /* ── Interactive model switcher enhancements ── */
  .c-product-svg {
    width: auto;
    display: block;
    position: relative; z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 16px rgba(134,204,224,0.2));
  }
  .c-product-svg.switching {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  .c-spec-v {
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .c-spec-v.switching {
    opacity: 0;
    transform: translateX(6px);
  }
  .c-stage {
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .c-stage.switching {
    opacity: 0;
    transform: translateY(4px);
  }
  .c-cta {
    transition: background 0.2s, gap 0.2s, opacity 0.25s ease;
  }
  .c-cta.switching {
    opacity: 0;
  }
  .c-stages-label {
    transition: opacity 0.2s ease;
  }
  /* Mach item active state — handled by JS */
  .mach-item { transition: opacity 0.2s, transform 0.15s; }
  .mach-item:hover { opacity: 1; transform: translateY(-2px); }
  .mach-active { opacity: 1 !important; }

@media (max-width: 600px) {
  .card-read-time { font-size: 12px !important; }
}

/* ── Homepage use-case ticker (fp-usecase-ticker) ─────────────────
   Standalone class — never shares selectors with uc-ticker-wrap.
   Option C: linen background, linen-dark borders, abyss text.
──────────────────────────────────────────────────────────────────── */
.fp-usecase-ticker {
  overflow: hidden;
  background: var(--linen);
  border-top: 1px solid var(--linen-dark);
  border-bottom: 1px solid var(--linen-dark);
  margin-top: 8px;
  margin-bottom: 8px;
}
.fp-usecase-ticker-track {
  display: flex;
  width: max-content;
  animation: fpUsecaseTicker 50s linear infinite;
}
.fp-usecase-ticker-track:hover { animation-play-state: paused; }
@keyframes fpUsecaseTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.fp-usecase-ticker-item {
  padding: 13px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(13,31,34,0.3);
  white-space: nowrap;
  border-right: 1px solid var(--linen-dark);
  cursor: default;
  transition: color 0.2s;
}
.fp-usecase-ticker-item:hover { color: rgba(13,31,34,0.7); }
.fp-usecase-ticker-item span { color: var(--teal); }

/* ─── INTERIOR PAGE HERO — STANDARD ─────────────────────────────────────────
   Single source of truth for all interior page hero sections.
   Nav (72px) + afticker (48px) = 120px handled by body { padding-top: 120px }
   in each page-specific CSS. Hero section itself then adds 48px internal space
   above the eyebrow — matching Use Cases as the visual reference.
   ─────────────────────────────────────────────────────────────────────────── */
.page-hero {
  background: var(--abyss);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(61,122,128,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner {
  padding: 48px max(56px, calc((100% - 1100px) / 2)) 52px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
}
