:root,
    [data-theme="light"] {
      --bg: #f8f5ef;
      --bg-2: #fffaf2;
      --surface: rgba(255,255,255,0.72);
      --surface-2: rgba(255,255,255,0.54);
      --border: rgba(34, 29, 22, 0.08);
      --text: #211d18;
      --muted: #6d665d;
      --primary: #0f766e;
      --primary-2: #14b8a6;
      --accent: #ef8f26;
      --accent-soft: rgba(239, 143, 38, 0.16);
      --primary-soft: rgba(15, 118, 110, 0.14);
      --shadow-sm: 0 10px 30px rgba(67, 43, 14, 0.08);
      --shadow-md: 0 24px 60px rgba(67, 43, 14, 0.12);
      --radius-sm: 14px;
      --radius-md: 22px;
      --radius-lg: 32px;
      --container: 1180px;
    }

    [data-theme="dark"] {
      --bg: #171411;
      --bg-2: #201a15;
      --surface: rgba(35, 29, 24, 0.72);
      --surface-2: rgba(35, 29, 24, 0.55);
      --border: rgba(255,255,255,0.08);
      --text: #f5efe8;
      --muted: #b9afa4;
      --primary: #5ad1c4;
      --primary-2: #7ee7da;
      --accent: #ffb458;
      --accent-soft: rgba(255, 180, 88, 0.14);
      --primary-soft: rgba(90, 209, 196, 0.14);
      --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.22);
      --shadow-md: 0 24px 60px rgba(0, 0, 0, 0.34);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: "Satoshi", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 10% 10%, rgba(255,255,255,.95), transparent 25%),
        radial-gradient(circle at 85% 15%, rgba(239,143,38,.18), transparent 22%),
        radial-gradient(circle at 80% 80%, rgba(15,118,110,.16), transparent 24%),
        linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
      min-height: 100vh;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(15,118,110,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,118,110,.05) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 90%);
      z-index: -2;
    }

    body::after {
      content: "";
      position: fixed;
      width: 28rem;
      height: 28rem;
      border-radius: 50%;
      top: -6rem;
      right: -8rem;
      background: radial-gradient(circle, rgba(239,143,38,.25), transparent 68%);
      filter: blur(10px);
      animation: floatBlob 12s ease-in-out infinite;
      z-index: -1;
      pointer-events: none;
    }

    a { color: inherit; text-decoration: none; }
    button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }
    img, svg { display: block; max-width: 100%; }
    .container { width: min(calc(100% - 24px), var(--container)); margin: 0 auto; }

    .progress {
      position: fixed;
      top: 0; left: 0;
      height: 4px;
      width: 0%;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      z-index: 999;
      box-shadow: 0 0 24px rgba(15,118,110,.28);
    }

    .ambient {
      position: fixed;
      width: 18rem;
      height: 18rem;
      left: -6rem;
      bottom: 10%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(15,118,110,.18), transparent 68%);
      filter: blur(12px);
      animation: floatBlob 16s ease-in-out infinite reverse;
      z-index: -1;
      pointer-events: none;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(18px);
      background: color-mix(in srgb, var(--surface) 82%, transparent);
      border-bottom: 1px solid var(--border);
    }

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

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: -0.03em;
    }

    .brand svg {
      width: 42px;
      height: 42px;
      color: var(--primary);
      filter: drop-shadow(0 12px 24px rgba(15,118,110,.18));
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      color: var(--muted);
      font-size: .95rem;
    }

    .nav-links a {
      position: relative;
      padding: 8px 0;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0; bottom: 0;
      width: 100%; height: 2px;
      transform: scaleX(0);
      transform-origin: left;
      transition: .25s ease;
      background: var(--primary);
    }

    .nav-links a:hover::after { transform: scaleX(1); }

    .actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .btn, .toggle, .chip {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 999px;
      padding: 0 18px;
      transition: .25s ease;
    }

    .btn-primary {
      color: white;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 16px 34px rgba(15,118,110,.22);
    }

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

    .btn-secondary, .toggle {
      border: 1px solid var(--border);
      background: color-mix(in srgb, var(--surface) 92%, white);
      box-shadow: var(--shadow-sm);
    }

    .hero {
      min-height: calc(100vh - 78px);
      display: grid;
      align-items: center;
      padding: 64px 0 32px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 42px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      width: fit-content;
      padding: 10px 14px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--primary-soft), rgba(255,255,255,.65));
      border: 1px solid rgba(15,118,110,.16);
      color: var(--primary);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 18px;
      box-shadow: var(--shadow-sm);
    }

    .hero h1 {
      font-family: "Clash Display", sans-serif;
      font-size: clamp(3rem, 8vw, 6rem);
      line-height: .95;
      letter-spacing: -.05em;
      max-width: 10ch;
    }

    .hero h1 span {
      color: var(--primary);
      text-shadow: 0 10px 30px rgba(15,118,110,.14);
    }

    .hero p {
      max-width: 58ch;
      margin-top: 22px;
      color: var(--muted);
      font-size: clamp(1rem, 1rem + .3vw, 1.18rem);
    }

    .hero-actions,
    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .chip {
      min-height: 40px;
      padding: 0 14px;
      background: rgba(255,255,255,.45);
      border: 1px solid var(--border);
      color: var(--muted);
      backdrop-filter: blur(12px);
    }

    .visual {
      position: relative;
      min-height: 620px;
      display: grid;
      place-items: center;
    }

    .stage {
      position: relative;
      width: min(100%, 520px);
      aspect-ratio: .92;
      border-radius: 34px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.72);
      background:
        linear-gradient(160deg, rgba(255,255,255,.72), rgba(255,255,255,.22)),
        linear-gradient(135deg, rgba(15,118,110,.2), rgba(239,143,38,.14));
      box-shadow: var(--shadow-md);
      transform-style: preserve-3d;
    }

    .stage::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 28% 18%, rgba(255,255,255,.92), transparent 22%),
        radial-gradient(circle at 74% 64%, rgba(239,143,38,.18), transparent 20%);
    }

    .stage::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
      background-size: 34px 34px;
      mask-image: radial-gradient(circle at center, rgba(0,0,0,1), transparent 92%);
    }

    .mock-pack {
      position: absolute;
      inset: 12% 14%;
      border-radius: 28px;
      background: color-mix(in srgb, var(--surface) 94%, white);
      border: 1px solid rgba(255,255,255,.8);
      box-shadow: var(--shadow-sm);
      padding: 18px;
      transform: translateZ(70px);
      backdrop-filter: blur(16px);
    }

    .mock-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 18px;
    }

    .dots { display: flex; gap: 6px; }
    .dots span {
      width: 10px; height: 10px; border-radius: 50%;
      background: rgba(34,29,22,.12);
    }

    .pack-box {
      position: relative;
      width: min(100%, 270px);
      margin: 0 auto;
      aspect-ratio: .72;
      border-radius: 28px;
      overflow: hidden;
      background: linear-gradient(180deg, #fff8e8, #edd8b4);
      display: grid;
      place-items: center;
      box-shadow: 0 18px 30px rgba(102, 68, 20, .12);
      text-align: center;
    }

    .pack-box::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(115deg, transparent 0 35%, rgba(255,255,255,.75) 46%, transparent 56%),
        radial-gradient(circle at 50% 20%, rgba(15,118,110,.18), transparent 26%);
      animation: shine 6s linear infinite;
    }

    .pack-box small {
      position: relative;
      z-index: 1;
      display: block;
      font-size: .78rem;
      color: var(--muted);
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .pack-box strong {
      position: relative;
      z-index: 1;
      display: block;
      font-family: "Clash Display", sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1;
      letter-spacing: -.05em;
      margin: 10px 0 12px;
    }

    .pack-box span {
      position: relative;
      z-index: 1;
      display: inline-flex;
      padding: 9px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.72);
      font-size: .82rem;
      font-weight: 800;
    }

    .floating,
    .mini,
    .ring {
      position: absolute;
      border: 1px solid rgba(255,255,255,.7);
      background: color-mix(in srgb, var(--surface) 92%, white);
      backdrop-filter: blur(16px);
      box-shadow: var(--shadow-sm);
    }

    .floating {
      top: 10%;
      right: -4%;
      width: min(230px, 44vw);
      border-radius: 24px;
      padding: 18px;
      animation: bob 7s ease-in-out infinite;
      transform: translateZ(90px);
    }

    .floating h3 { font-size: 1rem; margin-bottom: 8px; }
    .floating p { color: var(--muted); font-size: .86rem; }

    .mini {
      left: -6%;
      bottom: 10%;
      width: min(220px, 44vw);
      border-radius: 24px;
      padding: 18px;
      animation: bob 8s ease-in-out infinite reverse;
      transform: translateZ(90px);
    }

    .line {
      position: relative;
      height: 12px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(15,118,110,.24), rgba(239,143,38,.44));
      overflow: hidden;
      margin-bottom: 10px;
    }

    .line::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.8), transparent);
      animation: scan 2.4s linear infinite;
    }

    .ring {
      width: 120px;
      height: 120px;
      right: 11%;
      bottom: 14%;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,.3);
      animation: pulse 3.2s ease-out infinite;
    }

    .ring span {
      width: 48px; height: 48px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: white;
      font-weight: 900;
      background: var(--primary);
      box-shadow: 0 14px 26px rgba(15,118,110,.24);
    }

    section { padding: 40px 0 96px; }

    .stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 26px;
    }

    .card,
    .feature,
    .product,
    .story,
    .quote,
    .cta-box {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      border: 1px solid var(--border);
      background: color-mix(in srgb, var(--surface) 94%, white);
      box-shadow: var(--shadow-sm);
      backdrop-filter: blur(14px);
    }

    .card { padding: 22px; }
    .card strong {
      display: block;
      font-family: "Clash Display", sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      letter-spacing: -.04em;
      line-height: 1;
    }
    .card span { display: block; margin-top: 8px; color: var(--muted); }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 24px;
      margin-bottom: 22px;
    }

    .section-head h2 {
      font-family: "Clash Display", sans-serif;
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: .98;
      letter-spacing: -.04em;
      max-width: 10ch;
    }

    .section-head p {
      max-width: 54ch;
      color: var(--muted);
    }

    .feature-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 16px;
    }

    .feature {
      padding: 28px;
    }

    .kicker {
      display: inline-flex;
      width: fit-content;
      padding: 9px 12px;
      border-radius: 999px;
      background: var(--primary-soft);
      color: var(--primary);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .feature h3,
    .product h3,
    .story h3,
    .cta-box h3 {
      font-size: clamp(1.5rem, 2vw, 2rem);
      letter-spacing: -.03em;
      line-height: 1.08;
    }

    .feature p,
    .product p,
    .story p,
    .quote p,
    .cta-box p {
      color: var(--muted);
      margin-top: 12px;
    }

    .pill-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 20px;
    }

    .pill {
      padding: 16px;
      border-radius: 20px;
      border: 1px solid var(--border);
      background: color-mix(in srgb, var(--surface-2) 90%, white);
    }

    .pill strong {
      display: block;
      font-size: .98rem;
      margin-bottom: 4px;
    }

    .bars {
      display: grid;
      gap: 12px;
      margin-top: 22px;
    }

    .bar {
      display: grid;
      grid-template-columns: 100px 1fr auto;
      gap: 12px;
      align-items: center;
      font-size: .92rem;
    }

    .track {
      height: 12px;
      border-radius: 999px;
      background: rgba(0,0,0,.06);
      overflow: hidden;
    }

    .track span {
      display: block;
      height: 100%;
      width: var(--w);
      border-radius: inherit;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      box-shadow: 0 10px 20px rgba(15,118,110,.2);
    }

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

    .product {
      padding: 22px;
      transition: transform .25s ease, box-shadow .25s ease;
      transform-style: preserve-3d;
    }

    .product:hover {
      transform: translateY(-6px) rotateX(3deg) rotateY(-3deg);
      box-shadow: var(--shadow-md);
    }

    .thumb {
      position: relative;
      aspect-ratio: 1.03;
      border-radius: 22px;
      margin-bottom: 18px;
      overflow: hidden;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at 35% 20%, rgba(255,255,255,.9), transparent 26%),
        linear-gradient(145deg, rgba(15,118,110,.18), rgba(239,143,38,.18));
      border: 1px solid rgba(255,255,255,.7);
    }

    .thumb-pack {
      position: relative;
      width: 58%;
      aspect-ratio: .72;
      border-radius: 20px;
      overflow: hidden;
      display: grid;
      place-items: center;
      font-weight: 900;
      letter-spacing: .08em;
      background: linear-gradient(180deg, #fff8e8, #ebd6b3);
      box-shadow: 0 18px 30px rgba(102, 68, 20, .12);
    }

    .thumb-pack::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, transparent 0 35%, rgba(255,255,255,.86) 47%, transparent 57%);
      animation: shine 7s linear infinite;
    }

    .thumb-pack span { position: relative; z-index: 1; }

    .meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-top: 16px;
    }

    .tag {
      display: inline-flex;
      min-height: 34px;
      align-items: center;
      padding: 0 12px;
      border-radius: 999px;
      background: var(--accent-soft);
      color: #8d4f10;
      font-size: .76rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    [data-theme="dark"] .tag { color: #ffd7a3; }

    .price {
      font-size: 1.2rem;
      font-weight: 900;
      letter-spacing: -.03em;
    }

    .story-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 16px;
    }

    .story {
      padding: 28px;
    }

    .flow {
      display: grid;
      gap: 16px;
      margin-top: 20px;
    }

    .flow-item {
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 14px;
      align-items: start;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
    }

    .flow-item:last-child { border-bottom: 0; padding-bottom: 0; }

    .step {
      width: 46px; height: 46px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: white;
      font-weight: 900;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: 0 12px 24px rgba(15,118,110,.2);
    }

    .marquee {
      margin-top: 22px;
      padding: 16px 0;
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, transparent);
      border-block: 1px solid var(--border);
    }

    .marquee-track {
      display: flex;
      gap: 12px;
      width: max-content;
      animation: marquee 22s linear infinite;
    }

    .marquee-track span {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: color-mix(in srgb, var(--surface) 92%, white);
      color: var(--muted);
      box-shadow: var(--shadow-sm);
      white-space: nowrap;
    }

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

    .quote { padding: 24px; }

    .author {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 18px;
    }

    .avatar {
      width: 46px; height: 46px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: white;
      font-weight: 900;
      background: linear-gradient(135deg, var(--primary), var(--accent));
    }

    .cta-box {
      padding: 30px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 20px;
      background:
        radial-gradient(circle at top left, rgba(255,255,255,.82), transparent 26%),
        linear-gradient(135deg, rgba(15,118,110,.16), rgba(239,143,38,.14)),
        color-mix(in srgb, var(--surface) 95%, white);
    }

    footer {
      padding: 20px 0 70px;
      color: var(--muted);
      font-size: .95rem;
    }

    .footer-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      border-top: 1px solid var(--border);
      padding-top: 18px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px) scale(.98);
      transition: .7s cubic-bezier(.16,1,.3,1);
    }

    .reveal.show {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .magnetic { position: relative; }

    @keyframes shine {
      0% { transform: translateX(-120%); }
      100% { transform: translateX(120%); }
    }

    @keyframes bob {
      0%,100% { transform: translateY(0) translateZ(90px); }
      50% { transform: translateY(-12px) translateZ(90px); }
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(15,118,110,.26); }
      70% { box-shadow: 0 0 0 22px rgba(15,118,110,0); }
      100% { box-shadow: 0 0 0 0 rgba(15,118,110,0); }
    }

    @keyframes scan {
      from { transform: translateX(-100%); }
      to { transform: translateX(100%); }
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    @keyframes floatBlob {
      0%,100% { transform: translate3d(0,0,0); }
      50% { transform: translate3d(-26px,18px,0); }
    }

.chip-sm {
  min-height: 34px;
  padding: 0 12px;
}

.line--82 {
  width: 82%;
}

.line--64 {
  width: 64%;
  margin-bottom: 0;
}

.bar-fill--92 {
  --w: 92%;
}

.bar-fill--88 {
  --w: 88%;
}

.bar-fill--84 {
  --w: 84%;
}

.bar-fill--96 {
  --w: 96%;
}

.author-role {
  color: var(--muted);
}
