  /* HERO — image-led banner */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    max-height: 1000px;
    background: var(--ink);
    color: var(--paper);
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(180deg, rgba(26, 31, 27, 0.55) 0%, rgba(26, 31, 27, 0.20) 30%, rgba(26, 31, 27, 0.40) 60%, rgba(26, 31, 27, 0.92) 100%),
      url('https://images.unsplash.com/photo-1631549916768-4119b2e5f926?auto=format&fit=crop&w=2400&q=80');
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 8s linear;
    will-change: transform;
  }

  .hero.is-loaded .hero-bg {
    transform: scale(1);
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to right, rgba(245, 242, 236, 0.06) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(245, 242, 236, 0.06) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 140px var(--pad-x) 56px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-eye {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border: 1px solid rgba(245, 242, 236, 0.18);
    background: rgba(245, 242, 236, 0.06);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--paper);
  }

  .hero-eye .led {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2.4s ease-in-out infinite;
  }

  .hero-corner {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.65;
  }

  .hero-corner .sep {
    width: 24px;
    height: 1px;
    background: currentColor;
    opacity: 0.5;
  }

  .hero-mid {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
    max-width: 60ch;
  }

  .hero-title {
    font-family: var(--font-sans);
    font-size: clamp(30px, 4vw, 64px);
    line-height: 0.94;
    letter-spacing: -0.035em;
    font-weight: 500;
    color: var(--paper);
  }

  .hero-title .accent {
    color: var(--paper);
    font-weight: 500;
  }

  .hero-title .light {
    color: var(--sage);
    opacity: 1;
    font-weight: 500;
  }

  .hero-bottom {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.3fr;
    gap: 48px;
    align-items: end;
    padding-top: 32px;
    border-top: 1px solid rgba(245, 242, 236, 0.18);
  }

  @media (max-width: 1000px) {
    .hero-bottom {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }

  .hero-lede {
    font-size: 16px;
    line-height: 1.55;
    max-width: 36ch;
    opacity: 0.85;
  }

  .hero-ctas {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .hero-ctas .btn {
    font-size: 13px;
    padding: 12px 20px;
  }

  .hero-ctas .btn .btn-arrow {
    font-size: 12px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-self: end;
  }

  @media (max-width: 600px) {
    .hero-stats {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .hero-stat .n {
    font-family: var(--font-sans);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1;
  }

  .hero-stat .n em {
    font-style: normal;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.65em;
  }

  .hero-stat .l {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: 8px;
  }

  .hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.55;
    z-index: 3;
  }

  .hero-scroll .line {
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom, var(--paper) 0%, transparent 100%);
    animation: scrollLine 2.4s ease-in-out infinite;
  }

  @keyframes scrollLine {

    0%,
    100% {
      transform: scaleY(0.5);
      transform-origin: top;
    }

    50% {
      transform: scaleY(1);
      transform-origin: top;
    }
  }

  @media (max-width: 800px) {
    .hero-scroll {
      display: none;
    }
  }

  /* Stretched btn variants for dark hero */
  .hero .btn-primary {
    background: var(--sage);
    color: var(--paper);
    border: 1px solid var(--sage);
  }

  .hero .btn-primary:hover {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
  }

  .hero .btn-ghost {
    background: transparent;
    color: var(--paper);
    border: 1px solid var(--sage);
  }

  .hero .btn-ghost:hover {
    background: var(--sage);
    color: var(--paper);
    border-color: var(--sage);
  }

  /* Marquee strip */
  .strip {
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  /* VALUE PROPS */
  .value-props {
    background: var(--paper);
    padding: clamp(80px, 11vw, 140px) var(--pad-x);
    border-bottom: 1px solid var(--line);
  }

  .vp-inner {
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .vp-head {
    margin-bottom: 56px;
    max-width: 800px;
  }

  .vp-title {
    font-family: var(--font-sans);
    font-size: clamp(34px, 4.6vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-weight: 500;
    margin-top: 18px;
  }

  .vp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  @media (max-width: 900px) {
    .vp-grid {
      grid-template-columns: 1fr;
    }
  }

  .vp-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-height: 240px;
    position: relative;
    transition: border-color 0.3s, transform 0.4s var(--ease-out-expo), background 0.3s;
    overflow: hidden;
    z-index: 1;
  }

  .vp-card::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: var(--ink);
    width: 700px;
    height: 700px;
    bottom: -354px;
    right: -354px;
    transform: scale(0.05);
    transition: transform 0.8s var(--ease-out-expo);
    z-index: -1;
    pointer-events: none;
  }

  .vp-card:hover::before {
    transform: scale(1.6);
  }

  .vp-card:hover {
    color: var(--paper);
    border-color: var(--ink);
  }

  .vp-card:hover .wt-icon {
    color: var(--paper);
  }

  /* .vp-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    min-height: 240px;
    transition: border-color 0.3s, transform 0.4s var(--ease-out-expo), background 0.3s;
    position: relative;
  }

  .vp-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent)) no-repeat;
    background-size: 20% 2px;
    background-position: 0% 0%;
    animation: vp-border-travel 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }

  .vp-card:hover::before {
    opacity: 1;
  }

  .vp-card:hover {
    background-color: var(--ink);
    color: var(--paper);
    transform: translateY(-6px);
  }

  .vp-card:hover .vp-icon {
    color: var(--paper);
  } */

  @keyframes vp-border-travel {
    0% {
      background-position: 0% 0%;
      background-size: 20% 2px;
    }

    24.9% {
      background-position: 100% 0%;
      background-size: 20% 2px;
    }

    25% {
      background-position: 100% 0%;
      background-size: 2px 20%;
    }

    49.9% {
      background-position: 100% 100%;
      background-size: 2px 20%;
    }

    50% {
      background-position: 100% 100%;
      background-size: 20% 2px;
    }

    74.9% {
      background-position: 0% 100%;
      background-size: 20% 2px;
    }

    75% {
      background-position: 0% 100%;
      background-size: 2px 20%;
    }

    99.9% {
      background-position: 0% 0%;
      background-size: 2px 20%;
    }

    100% {
      background-position: 0% 0%;
      background-size: 20% 2px;
    }
  }

  .vp-card:hover {
    transform: translateY(-3px);
  }

  .vp-num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    opacity: 0.5;
  }

  .vp-icon {
    width: 38px;
    height: 38px;
    margin: 26px 0 20px;
    color: var(--sage-deep);
  }

  .vp-icon svg {
    width: 100%;
    height: 100%;
  }

  .vp-card h3 {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.018em;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .vp-card p {
    font-size: 14px;
    line-height: 1.55;
    opacity: 0.72;
    margin-top: auto;
  }

  .vp-cta {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .vp-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .vp-cta-sub {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.7;
  }

  .vp-cta-sub a {
    border-bottom: 1px solid var(--line);
    padding-bottom: 2px;
    transition: border-color 0.2s, color 0.2s;
  }

  .vp-cta-sub a:hover {
    border-color: var(--ink);
  }

  .vp-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.4;
  }

  /* WHY TRUST US / WHY AWAFI */
  .why-trust {
    background: var(--paper-2);
    padding: clamp(80px, 11vw, 140px) var(--pad-x);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .wt-inner {
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .wt-head {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(32px, 4vw, 64px);
    align-items: stretch;
    margin-bottom: clamp(48px, 6vw, 80px);
  }

  @media (max-width: 900px) {
    .wt-head {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }

  .wt-head-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px 0;
  }

  .wt-title {
    font-family: var(--font-sans);
    font-size: clamp(40px, 5.4vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 500;
    margin-top: 18px;
    max-width: 14ch;
  }

  .wt-title em {
    font-style: normal;
    color: var(--sage-deep);
    font-weight: 500;
  }

  .wt-sub {
    font-size: 16px;
    line-height: 1.55;
    opacity: 0.78;
    max-width: 48ch;
    margin-top: 24px;
  }

  .wt-head-meta {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .wt-hm-cell .n {
    font-family: var(--font-sans);
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1;
  }

  .wt-hm-cell .n em {
    font-style: normal;
    color: var(--sage-deep);
    font-weight: 500;
  }

  .wt-hm-cell .l {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: 8px;
  }

  .wt-head-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 440px;
    background:
      linear-gradient(180deg, rgba(26, 31, 27, 0.28) 0%, rgba(26, 31, 27, 0.0) 35%, rgba(26, 31, 27, 0.85) 100%),
      url('https://images.unsplash.com/photo-1587854692152-cbe660dbde88?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: var(--paper);
  }

  .wt-head-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to right, rgba(245, 242, 236, 0.06) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(245, 242, 236, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
    pointer-events: none;
  }

  .wt-img-meta {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.85;
  }

  .wt-img-meta .pill {
    padding: 6px 12px;
    border: 1px solid rgba(245, 242, 236, 0.3);
    background: rgba(26, 31, 27, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .wt-img-meta .pill .led {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2.4s ease-in-out infinite;
  }

  .wt-img-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
  }

  .wt-img-quote {
    font-family: var(--font-sans);
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.25;
    letter-spacing: -0.015em;
    font-weight: 500;
    max-width: 22ch;
  }

  .wt-img-quote em {
    font-style: normal;
    color: var(--accent);
    font-weight: 500;
  }

  .wt-img-attr {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.7;
    text-align: right;
    flex-shrink: 0;
  }

  .wt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  @media (max-width: 1100px) {
    .wt-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .wt-grid {
      grid-template-columns: 1fr;
    }
  }

  .wt-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-height: 240px;
    position: relative;
    transition: border-color 0.3s, transform 0.4s var(--ease-out-expo), background 0.3s;
    overflow: hidden;
    z-index: 1;
  }

  .wt-card::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: var(--ink);
    width: 700px;
    height: 700px;
    bottom: -354px;
    right: -354px;
    transform: scale(0.05);
    transition: transform 0.8s var(--ease-out-expo);
    z-index: -1;
    pointer-events: none;
  }

  .wt-card:hover::before {
    transform: scale(1.5);
  }

  .wt-card:hover {
    color: var(--paper);
    border-color: var(--ink);
  }

  .wt-card:hover .wt-icon {
    color: var(--paper);
  }

  @keyframes wt-border-travel {
    0% {
      background-position: 0% 0%;
      background-size: 20% 2px;
    }

    24.9% {
      background-position: 100% 0%;
      background-size: 20% 2px;
    }

    25% {
      background-position: 100% 0%;
      background-size: 2px 20%;
    }

    49.9% {
      background-position: 100% 100%;
      background-size: 2px 20%;
    }

    50% {
      background-position: 100% 100%;
      background-size: 20% 2px;
    }

    74.9% {
      background-position: 0% 100%;
      background-size: 20% 2px;
    }

    75% {
      background-position: 0% 100%;
      background-size: 2px 20%;
    }

    99.9% {
      background-position: 0% 0%;
      background-size: 2px 20%;
    }

    100% {
      background-position: 0% 0%;
      background-size: 20% 2px;
    }
  }

  .wt-card:hover {
    transform: translateY(-3px);
  }

  .wt-card>* {
    position: relative;
    z-index: 1;
  }

  .wt-num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    opacity: 0.5;
  }

  .wt-icon {
    width: 36px;
    height: 36px;
    margin: 22px 0 18px;
    color: var(--sage-deep);
  }

  .wt-icon svg {
    width: 100%;
    height: 100%;
  }

  .wt-card h3 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .wt-card p {
    font-size: 13.5px;
    line-height: 1.55;
    opacity: 0.72;
    margin-top: auto;
  }

  .wt-card .hl {
    color: var(--ink);
    opacity: 1;
    font-weight: 500;
  }

  .wt-platforms-row {
    margin-top: clamp(48px, 6vw, 80px);
    padding: 36px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
  }

  @media (max-width: 1000px) {
    .wt-platforms-row {
      grid-template-columns: 1fr;
    }
  }

  .wt-pl-text .lab {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
  }

  .wt-pl-text h3 {
    font-family: var(--font-sans);
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.15;
    max-width: 22ch;
  }

  .wt-pl-text p {
    font-size: 14px;
    opacity: 0.78;
    margin-top: 8px;
    max-width: 50ch;
  }

  .wt-pl-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
  }

  @media (max-width: 1000px) {
    .wt-pl-logos {
      justify-content: flex-start;
    }
  }

  .wt-pl-logo {
    background: white;
    border-radius: 6px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    min-width: 110px;
    transition: transform 0.3s var(--ease-out-expo);
  }

  .wt-pl-logo:hover {
    transform: translateY(-3px);
  }

  .wt-pl-logo svg,
  .wt-pl-logo img {
    max-height: 22px;
    max-width: 100%;
  }

  /* FEATURED BRANDS — STACKED SCROLL */
  .brands-stack {
    background: var(--paper);
    padding: clamp(80px, 11vw, 140px) 0 0;
    border-top: 1px solid var(--line);
    position: relative;
  }

  .bs-head {
    padding: 0 var(--pad-x) clamp(40px, 6vw, 72px);
  }

  .bs-head-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: end;
  }

  @media (max-width: 900px) {
    .bs-head-inner {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }

  .bs-title {
    font-family: var(--font-sans);
    font-size: clamp(34px, 4.6vw, 60px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    font-weight: 500;
    margin-top: 18px;
  }

  .bs-title em {
    font-style: normal;
    color: var(--sage-deep);
    font-weight: 500;
  }

  .bs-desc {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.72;
    max-width: 50ch;
  }

  .bs-track {
    border-top: 1px solid var(--line);
  }

  .bs-panel {
    border-bottom: 1px solid var(--line);
    min-height: clamp(560px, 86vh, 820px);
    display: flex;
    align-items: stretch;
    background: var(--paper);
    transition: background 0.6s var(--ease-out-expo);
    position: relative;
  }

  .bs-panel:nth-child(even) {
    background: var(--paper-2);
  }

  .bs-panel-inner {
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
    padding: clamp(48px, 7vw, 96px) var(--pad-x);
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: clamp(40px, 6vw, 72px);
  }

  .bs-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.7;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
  }

  .bs-num {
    color: var(--sage-deep);
    font-weight: 600;
  }

  .bs-cat {
    opacity: 0.7;
  }

  .bs-body {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: stretch;
  }

  @media (max-width: 900px) {
    .bs-body {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }

  .bs-logo {
    grid-column: 1;
    grid-row: 1 / span 3;
    color: var(--ink);
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: clamp(40px, 5vw, 72px) clamp(32px, 4vw, 56px);
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(26, 31, 27, 0.04), 0 24px 48px -32px rgba(26, 31, 27, 0.18);
  }

  .bs-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to right, rgba(26, 31, 27, 0.045) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(26, 31, 27, 0.045) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  }

  .bs-logo::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(196, 210, 198, 0.12);
  }

  .bs-logo-mark {
    position: relative;
    /* z-index: 1; */
    width: 100%;
  }

  .bs-logo svg {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .bs-logo-cap {
    position: absolute;
    bottom: 16px;
    left: 18px;
    right: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    opacity: 0.55;
    z-index: 0;
  }

  @media (max-width: 900px) {
    .bs-logo {
      grid-row: auto;
      min-height: 240px;
    }
  }

  .bs-name {
    font-family: var(--font-sans);
    font-size: clamp(40px, 5.6vw, 80px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    font-weight: 500;
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }

  @media (max-width: 900px) {
    .bs-name {
      grid-column: 1;
      grid-row: auto;
    }
  }

  .bs-copy {
    grid-column: 2;
    grid-row: 2;
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.55;
    max-width: 50ch;
    opacity: 0.78;
    margin-top: 8px;
  }

  @media (max-width: 900px) {
    .bs-copy {
      grid-column: 1;
      grid-row: auto;
    }
  }

  .bs-tags {
    grid-column: 2;
    grid-row: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    align-self: start;
  }

  @media (max-width: 900px) {
    .bs-tags {
      grid-column: 1;
      grid-row: auto;
    }
  }

  .bs-tags span {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 12px;
    border: 1px solid var(--line);
    border-radius: 100px;
    /* background: var(--paper); */
    color: var(--accent);
  }

  .bs-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }

  .bs-link {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--line);
    padding-bottom: 3px;
    transition: border-color 0.2s, color 0.2s;
  }

  .bs-link:hover {
    border-color: var(--ink);
    color: var(--sage-deep);
  }

  .bs-next {
    background: var(--ink);
    color: var(--paper);
    border-radius: 100px;
    padding: 14px 24px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s var(--ease-out-expo), background 0.2s;
  }

  .bs-next:hover {
    transform: translateY(-2px);
    background: var(--sage-deep);
  }

  /* side rail navigation */
  .bs-rail {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
  }

  .bs-rail.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  @media (max-width: 800px) {
    .bs-rail {
      display: none;
    }
  }

  .bs-dot {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    opacity: 0.4;
    transition: opacity 0.2s;
  }

  .bs-dot::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ink);
    transition: transform 0.3s var(--ease-out-expo);
  }

  .bs-dot:hover {
    opacity: 0.7;
  }

  .bs-dot.active {
    opacity: 1;
  }

  .bs-dot.active::before {
    transform: scale(1.6);
    background: var(--sage-deep);
  }

  .bs-dot-label {
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.2s, transform 0.3s var(--ease-out-expo);
  }

  .bs-dot:hover .bs-dot-label,
  .bs-dot.active .bs-dot-label {
    opacity: 1;
    transform: translateX(0);
  }

  /* STATISTICS SECTION */
  .stats-section {
    background-color: var(--ink) !important;
    color: var(--paper);
    padding: clamp(80px, 11vw, 140px) var(--pad-x);
    border-top: 1px solid var(--ink);
    position: relative;
    overflow: hidden;
  }

  .stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: 0 0;
    pointer-events: none;
    animation: gridDrift 24s linear infinite;
  }

  @keyframes gridDrift {
    from {
      background-position: 0 0;
    }

    to {
      background-position: 80px 80px;
    }
  }

  .stats-section .grid-nodes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }

  .stats-section .grid-nodes::before,
  .stats-section .grid-nodes::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage-deep);
    box-shadow: 0 0 12px var(--sage-deep), 0 0 24px rgba(167, 192, 162, 0.4);
    opacity: 0;
  }

  .stats-section .grid-nodes::before {
    top: 22%;
    left: 18%;
    animation: nodeBlink 7s ease-in-out infinite;
  }

  .stats-section .grid-nodes::after {
    top: 64%;
    left: 78%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent), 0 0 24px rgba(196, 210, 198, 0.4);
    animation: nodeBlink 7s ease-in-out 3.2s infinite;
  }

  @keyframes nodeBlink {

    0%,
    100% {
      opacity: 0;
      transform: scale(0.6);
    }

    20% {
      opacity: 0.9;
      transform: scale(1);
    }

    40% {
      opacity: 0;
      transform: scale(0.6);
    }
  }

  @media (prefers-reduced-motion: reduce) {

    .stats-section .grid-nodes::before,
    .stats-section .grid-nodes::after {
      animation: none;
    }
  }

  .stats-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
  }

  .stats-head {
    margin-bottom: 72px;
    max-width: 880px;
  }

  .stats-head .tag {
    color: var(--paper);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
  }

  .stats-head .tag .led {
    background: var(--sage-deep);
  }

  .stats-title {
    font-family: var(--font-sans);
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    font-weight: 500;
    margin-top: 20px;
  }

  .stats-title em {
    font-style: normal;
    color: var(--sage-deep);
    font-weight: 500;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  @media (max-width: 1000px) {
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .stats-grid {
      grid-template-columns: 1fr;
    }
  }

  .stat-cell {
    background: var(--ink);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 280px;
    position: relative;
    transition: 0.3s var(--ease-out-expo);
  }

  .stat-cell:hover {
    background-color: var(--accent);
  }

  .stat-cell:hover .stat-suffix {
    color: var(--paper);
  }


  .stat-num {
    font-family: var(--font-sans);
    font-size: clamp(56px, 7.5vw, 104px);
    line-height: 0.92;
    letter-spacing: -0.04em;
    font-weight: 500;
  }

  .stat-num .stat-suffix {
    color: var(--sage-deep);
    font-size: 0.5em;
    font-weight: 500;
  }

  .stat-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: auto;
  }

  .stat-text {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.8;
    max-width: 32ch;
  }

  /* PARTNER CTA */
  .partner-cta {
    background: var(--paper-2);
    color: var(--ink);
    padding: clamp(80px, 11vw, 140px) var(--pad-x);
    border-top: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }

  .partner-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 85% 20%, rgba(143, 163, 145, 0.18), transparent 55%),
      radial-gradient(circle at 10% 90%, rgba(74, 93, 79, 0.12), transparent 50%);
    pointer-events: none;
  }

  .pc-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
  }

  .pc-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(48px, 6vw, 96px);
    align-items: start;
  }

  @media (max-width: 1000px) {
    .pc-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }

  .pc-eye {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    border: 1px solid var(--line);
    border-radius: 100px;
    background: var(--paper);
  }

  .pc-eye .led {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage-deep);
    box-shadow: 0 0 10px var(--sage-deep);
    animation: pulse 2s infinite;
  }

  .pc-title {
    font-family: var(--font-sans);
    font-size: clamp(40px, 5.4vw, 80px);
    line-height: 1.0;
    letter-spacing: -0.03em;
    font-weight: 500;
    margin-top: 22px;
  }

  .pc-title em {
    font-style: normal;
    color: var(--sage-deep);
    font-weight: 500;
  }

  .pc-desc {
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.6;
    opacity: 0.78;
    max-width: 52ch;
    margin-top: 28px;
  }

  .pc-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
  }

  .pc-meta {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.6;
  }

  .pc-meta .pc-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.5;
    align-self: center;
  }

  .pc-benefits {
    background: var(--ink);
    color: var(--paper);
    border-radius: 14px;
    padding: 36px;
    position: relative;
    overflow: hidden;
  }

  .pc-benefits::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }

  .pc-benefits-head {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    margin-bottom: 8px;
  }

  .pc-benefits-head .pc-bh-l {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.015em;
  }

  .pc-benefits-head .pc-bh-r {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.55;
  }

  .pc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
  }

  .pc-list li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 14px;
    align-items: start;
    font-size: 15px;
    line-height: 1.4;
    transition: padding-left 0.3s var(--ease-out-expo);
  }

  .pc-list li:hover {
    padding-left: 6px;
  }

  .pc-list li:last-child {
    border-bottom: none;
  }

  .pc-list .pc-tick {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-deep);
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .pc-list .pc-num {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    opacity: 0.45;
    display: block;
    margin-bottom: 4px;
  }

  .pc-list strong {
    font-weight: 500;
    display: block;
  }

  .pc-list em {
    font-style: normal;
    font-size: 13px;
    opacity: 0.65;
    line-height: 1.4;
    display: block;
    margin-top: 3px;
  }

  /* CATEGORIES */
  .categories {
    background: var(--paper);
    padding: clamp(80px, 11vw, 140px) var(--pad-x);
  }

  .cat-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  @media (max-width: 1100px) {
    .cat-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .cat-grid {
      grid-template-columns: 1fr;
    }
  }

  .cat-tile {
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.6s var(--ease-out-expo);
    background: var(--paper-2);
  }

  .cat-tile:hover {
    transform: translateY(-6px);
  }

  .cat-tile.t1 {
    background: linear-gradient(170deg, #e9e3d4, #d4cdb9);
  }

  .cat-tile.t2 {
    background: linear-gradient(170deg, #f44d68, #ec1c3a);
  }

  .cat-tile.t3 {
    background: linear-gradient(170deg, #231f20, #3a3637);
  }

  .cat-tile.t4 {
    background: linear-gradient(170deg, #e8d8c8, #d4baa0);
  }

  .cat-num {
    position: absolute;
    top: 18px;
    left: 20px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    opacity: 0.5;
  }

  .cat-vis {
    position: absolute;
    inset: 18% 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.7s var(--ease-out-expo);
  }

  .cat-tile:hover .cat-vis {
    transform: scale(1.06);
  }

  .cat-foot {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    align-items: end;
    justify-content: space-between;
  }

  .cat-foot h3 {
    font-family: var(--font-sans);
    font-size: 22px;
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.015em;
  }

  .cat-count {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    opacity: 0.6;
    margin-top: 4px;
  }

  .cat-arrow {
    width: 32px;
    height: 32px;
    border-radius: var(--btn-radius);
    border: 1px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: transform 0.4s var(--ease-out-expo), background 0.3s, color 0.3s;
    opacity: 0.7;
  }

  .cat-tile:hover .cat-arrow {
    transform: translate(2px, -2px);
    opacity: 1;
  }

  /* HOW IT WORKS */
  .how {
    background: var(--paper);
    padding: clamp(80px, 11vw, 140px) var(--pad-x);
    border-top: 1px solid var(--line);
  }

  .how-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
  }

  @media (max-width: 1000px) {
    .how-inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }

  .how-sticky {
    position: sticky;
    top: 100px;
    height: fit-content;
  }

  .how-sticky h2 {
    font-family: var(--font-sans);
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin: 16px 0 20px;
  }

  .how-sticky h2 .ac {
    color: var(--sage-deep);
  }

  .how-sticky .lede {
    font-size: 15px;
    line-height: 1.55;
    opacity: 0.7;
    max-width: 36ch;
  }

  .how-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .how-step {
    border-top: 1px solid var(--line);
    padding: 36px 0;
    display: grid;
    grid-template-columns: 64px 1fr 56px;
    gap: 24px;
    align-items: start;
    transition: opacity 0.5s var(--ease-in-out);
    opacity: 0.45;
  }

  .how-step:last-child {
    border-bottom: 1px solid var(--line);
  }

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

  .how-step .num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    padding-top: 6px;
    opacity: 0.6;
  }

  .how-step h3 {
    font-family: var(--font-sans);
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.015em;
    margin-bottom: 8px;
  }

  .how-step h3 .ac {
    color: var(--sage-deep);
  }

  .how-step p {
    font-size: 14px;
    line-height: 1.55;
    opacity: 0.75;
    max-width: 50ch;
  }

  .how-step .ic {
    width: 44px;
    height: 44px;
    border-radius: var(--btn-radius);
    background: var(--paper-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-deep);
  }

  /* FEATURED BRANDS */
  .brands-section {
    background: var(--paper);
    padding: clamp(80px, 11vw, 140px) var(--pad-x);
    border-top: 1px solid var(--line);
  }

  .brand-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }

  @media (max-width: 1000px) {
    .brand-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 600px) {
    .brand-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .brand-cell {
    aspect-ratio: 1;
    background: var(--paper);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background 0.4s var(--ease-out-expo);
  }

  .brand-cell:hover {
    background: var(--ink);
    color: var(--paper);
  }

  .brand-cell .b-logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 4px;
  }

  .brand-cell .b-logo svg {
    width: 100%;
    max-width: 130px;
    height: auto;
    max-height: 56px;
    display: block;
    color: var(--ink);
    transition: color 0.4s;
  }

  .brand-cell:hover .b-logo svg {
    color: var(--paper);
  }

  .brand-cell .b-meta {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.55;
    display: flex;
    justify-content: space-between;
  }

  /* DRAG SHELF */
  .shelf-section {
    background: var(--paper);
    padding: clamp(80px, 11vw, 140px) 0;
    overflow: hidden;
    border-top: 1px solid var(--line);
  }

  .shelf-head {
    padding: 0 var(--pad-x);
    max-width: var(--max-w);
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: end;
  }

  .shelf-head h2 {
    font-family: var(--font-sans);
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.02em;
    max-width: 14ch;
  }

  .shelf-head h2 .ac {
    color: var(--sage-deep);
  }

  .shelf-controls {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .shelf-controls .hint {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-right: 14px;
    opacity: 0.6;
  }

  .shelf-controls button {
    width: 44px;
    height: 44px;
    border-radius: var(--btn-radius);
    border: 1px solid var(--line);
    transition: all 0.3s;
  }

  .shelf-controls button:hover {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
  }

  .shelf {
    cursor: grab;
    user-select: none;
    overflow: hidden;
    padding: 16px var(--pad-x);
    -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  }

  .shelf:active {
    cursor: grabbing;
  }

  .shelf-track {
    display: flex;
    gap: 14px;
    will-change: transform;
    transition: transform 0.6s var(--ease-out-expo);
  }

  .shelf.dragging .shelf-track {
    transition: none;
  }

  .product-card {
    flex: 0 0 280px;
    aspect-ratio: 3/4;
    background: var(--paper-2);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s var(--ease-out-expo);
  }

  .product-card:hover {
    transform: translateY(-4px);
  }

  .product-card .pc-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.55;
  }

  .product-card .pc-name {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.15;
    margin-top: 4px;
  }

  .product-card .pc-vis {
    flex: 1;
    margin: 14px 0;
    background: var(--paper);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .product-card .pc-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 12px;
  }

  .product-card .pc-cta {
    width: 28px;
    height: 28px;
    border-radius: var(--btn-radius);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s, background 0.3s, color 0.3s, border-color 0.3s;
    font-size: 10px;
  }

  .product-card:hover .pc-cta {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
    transform: translate(2px, -2px);
  }

  .product-card.dark {
    background: var(--ink);
    color: var(--paper);
  }

  .product-card.dark .pc-vis {
    background: rgba(245, 242, 236, 0.06);
  }

  .product-card.dark .pc-foot {
    border-top-color: rgba(245, 242, 236, 0.15);
  }

  .product-card.dark .pc-cta {
    border-color: rgba(245, 242, 236, 0.25);
  }

  .product-card.sage {
    background: linear-gradient(170deg, #f44d68, #ec1c3a);
    color: #fff;
  }

  /* SHOP ONLINE */
  .shop-online {
    background: var(--ink);
    color: var(--paper);
    padding: clamp(80px, 11vw, 140px) var(--pad-x);
  }

  .shop-online .section-title {
    color: var(--paper);
  }

  .shop-online .lede {
    opacity: 0.7;
  }

  .shop-online .section-title .ac {
    color: var(--sage);
  }

  .platforms {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: rgba(245, 242, 236, 0.18);
    border: 1px solid rgba(245, 242, 236, 0.18);
  }

  @media (max-width: 1000px) {
    .platforms {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 600px) {
    .platforms {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .platform {
    aspect-ratio: 1;
    background: var(--ink);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
  }

  .platform:hover {
    background: var(--sage-deep);
  }

  .platform .p-name {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 36px;
  }

  .platform .p-name svg {
    height: 26px;
    width: auto;
    max-width: 100%;
    display: block;
    color: var(--paper);
  }

  .platform .p-blurb {
    font-size: 12px;
    line-height: 1.4;
    opacity: 0.65;
    margin-top: 8px;
  }

  .platform .p-cta {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 1;
    color: var(--sage);
  }

  .platform .p-icon {
    align-self: flex-end;
    font-size: 22px;
    opacity: 0.4;
    transition: opacity 0.4s, transform 0.4s var(--ease-out-expo);
  }

  .platform:hover .p-icon {
    opacity: 1;
    transform: translate(8px, -8px);
  }

  .platform:hover .p-cta {
    color: var(--paper);
  }

  /* APP CTA */
  .app-cta {
    background: var(--paper);
    padding: clamp(80px, 11vw, 140px) var(--pad-x);
    border-top: 1px solid var(--line);
  }

  .app-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: center;
  }

  @media (max-width: 900px) {
    .app-inner {
      grid-template-columns: 1fr;
    }
  }

  .app-cta h2 {
    font-family: var(--font-sans);
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.022em;
  }

  .app-cta h2 .ac {
    color: var(--sage-deep);
  }

  .app-cta p {
    font-size: 16px;
    margin-top: 20px;
    max-width: 44ch;
    opacity: 0.75;
    line-height: 1.55;
  }

  .app-buttons {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
  }

  .app-btn {
    background: var(--ink);
    color: var(--paper);
    padding: 12px 18px;
    border-radius: var(--btn-radius);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s var(--ease-out-expo);
  }

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

  .app-btn .a-icon {
    font-size: 22px;
  }

  .app-btn .a-l1 {
    font-size: 9px;
    opacity: 0.7;
    font-family: var(--font-mono);
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .app-btn .a-l2 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.005em;
  }

  .phone {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 9/19;
    background: var(--ink);
    border-radius: 36px;
    padding: 8px;
    margin: 0 auto;
    box-shadow: 0 40px 80px rgba(26, 31, 27, 0.18);
    transform: rotate(-3deg);
  }

  .phone-screen {
    width: 100%;
    height: 100%;
    background: var(--paper);
    border-radius: 28px;
    overflow: hidden;
    padding: 24px 14px 14px;
    color: var(--ink);
  }

  .phone-screen .ps-top {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    opacity: 0.5;
    margin-bottom: 14px;
  }

  .phone-screen .ps-greet {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }

  .phone-screen .ps-sub {
    font-size: 11px;
    opacity: 0.6;
    margin-top: 4px;
  }

  .phone-screen .ps-search {
    margin-top: 12px;
    height: 32px;
    background: var(--paper-2);
    border-radius: 6px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    font-size: 10px;
    opacity: 0.5;
  }

  .phone-screen .ps-cats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-top: 12px;
  }

  .phone-screen .ps-cat {
    aspect-ratio: 4/3;
    border-radius: 6px;
    padding: 7px;
    font-size: 9px;
    font-weight: 500;
    display: flex;
    align-items: end;
  }

  .phone-screen .ps-cat:nth-child(1) {
    background: var(--ink);
    color: var(--paper);
  }

  .phone-screen .ps-cat:nth-child(2) {
    background: var(--accent-soft);
  }

  .phone-screen .ps-cat:nth-child(3) {
    background: var(--paper-3);
  }

  .phone-screen .ps-cat:nth-child(4) {
    background: var(--sage);
    color: var(--paper);
  }

  /* ==============================
   IN-HOUSE AGENCIES SECTION
   ============================== */

  .in-house-agencies {
    position: relative;
    padding: clamp(80px, 10vw, 140px) var(--pad-x);
    background: var(--paper);
    color: var(--ink);
  }

  .iha-inner {
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .iha-head {
    max-width: 960px;
    margin: 0 auto clamp(56px, 8vw, 96px);
    text-align: center;
  }

  .iha-head .tag {
    justify-content: center;
    margin-bottom: 20px;
  }

  .iha-title {
    font-family: var(--font-sans);
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 24px;
  }

  .iha-desc {
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.65;
    opacity: 0.72;
    max-width: 80ch;
    margin: 0 auto;
  }

  .iha-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: clamp(48px, 6vw, 64px);
  }

  @media (max-width: 1200px) {
    .iha-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  }

  @media (max-width: 640px) {
    .iha-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Sequential reveal — cards cascade in one after another for a more intentional feel */
  .iha-grid .iha-card.reveal:nth-child(2) { transition-delay: 0.1s; }
  .iha-grid .iha-card.reveal:nth-child(3) { transition-delay: 0.2s; }
  .iha-grid .iha-card.reveal:nth-child(4) { transition-delay: 0.3s; }
  /* Keep hover instant — the stagger delay only applies to the scroll-in entrance */
  .iha-grid .iha-card.reveal:hover { transition-delay: 0s; }

  .iha-card {
    position: relative;
    backdrop-filter: blur(5px);
    background-color: rgb(255 255 255 / 95%);
    border-radius: 26px;
    box-shadow:
      3px 13px 13px 0px rgb(158 158 158 / 12%), inset 20px 5px 14px 0px rgb(180 180 180 / 8%), inset 0px 11px 20px 0px rgba(245, 242, 236, 0.9);
    padding: 32px 24px 28px;
    transition: all 0.4s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgba(236, 28, 58, 0.08);
  }

  .iha-card:hover {
    background-color: rgba(245, 242, 236, 1);
    transform: translateY(-4px);
    box-shadow:
      10px 10px 15px 0px rgb(208 41 65 / 15%), inset 3px 4px 20px 0px rgb(236 28 58 / 6%), inset 4px 18px 28px 0px rgb(245 242 236);
    border-color: rgba(236, 28, 58, 0.15);
  }

  .iha-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 16px;
  }

  .iha-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%) contrast(1.05);
    transition: all 0.4s var(--ease-out-expo);
  }

  .iha-card:hover .iha-logo img {
    filter: grayscale(0%) contrast(1.1);
    transform: scale(1.02);
  }

  .iha-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
  }

  .iha-content h3 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin: 0;
  }

  .iha-cat {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
  }

  .iha-content p {
    font-size: 13.5px;
    line-height: 1.6;
    opacity: 0.68;
    margin: 0;
  }

  .iha-cta {
    text-align: center;
    padding: 40px 32px;
    border-top: 1px solid var(--stroke);
    margin-top: 24px;
  }

  .iha-cta-text {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.75;
    margin-bottom: 24px;
    max-width: 48ch;
    margin-left: auto;
    margin-right: auto;
  }

  .iha-cta .btn {
    min-width: 280px;
  }