    :root {
      --bg: #eff5fb;
      --cream: #ffffff;
      --ink: #1a2332;
      --muted: #5b6473;
      --dark: #dceaf5;
      --dark-2: #eaf3fb;
      --line: rgba(26, 35, 50, .12);
      --white-soft: rgba(255, 255, 255, .82);
      --accent: #ffe066;
      --accent-2: #f4c95d;
      --olive-dark: #3a5b8a;
      --graphite: #dceaf5;
      --baby-blue: #bde0fe;
      --baby-blue-2: #74c0fc;
      --baby-blue-3: #3a5b8a;
      --radius-xl: 42px;
      --radius-lg: 28px;
      --radius-md: 18px;
      --shadow: 0 28px 80px rgba(20, 30, 50, .18);
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--bg);
      overflow-x: hidden;
      position: relative;
    }

    .page-bg {
      position: fixed;
      inset: 0;
      overflow: hidden;
      z-index: 0;
      pointer-events: none;
    }

    .page-bg::before {
      content: "";
      position: absolute;
      inset: -8vh -8vw;
      background: url('/public/media/background.png') center / cover no-repeat;
      filter: blur(30px) saturate(125%);
      animation: bgDrift 38s ease-in-out infinite alternate;
      will-change: transform;
      opacity: .9;
    }

    .page-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 12% 8%, rgba(189, 224, 254, .55), transparent 38%),
        radial-gradient(circle at 86% 12%, rgba(255, 224, 102, .18), transparent 32%),
        radial-gradient(circle at 70% 88%, rgba(116, 192, 252, .22), transparent 42%),
        linear-gradient(180deg, rgba(239, 245, 251, .68), rgba(255, 255, 255, .78));
    }

    @keyframes bgDrift {
      0%   { transform: scale(1.06) translate(-2%, -1%); }
      50%  { transform: scale(1.16) translate(2%, 2%); }
      100% { transform: scale(1.08) translate(-1%, 1%); }
    }

    @media (prefers-reduced-motion: reduce) {
      .page-bg::before { animation: none; }
    }

    main.page {
      position: relative;
      z-index: 1;
    }

    a { color: inherit; text-decoration: none; }

    .page {
      width: min(1480px, calc(100% - 48px));
      margin: 0 auto;
    }

    .nav {
      position: fixed;
      top: 18px;
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 48px);
      max-width: 1432px;
      z-index: 30;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      margin: 0;
      padding: 14px 16px 14px 22px;
      border: 1px solid rgba(255, 255, 255, .42);
      border-radius: 999px;
      background: rgba(255, 255, 255, .72);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      box-shadow: 0 18px 50px rgba(26, 35, 50, .08);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 190px;
    }

    .brand img {
      width: auto;
      display: block;
      filter: drop-shadow(0 8px 18px rgba(0,0,0,.08));
    }

    .brand-symbol { height: 36px; }
    .brand-wordmark { height: 22px; }

    .nav-links {
      display: flex;
      gap: 6px;
      align-items: center;
      font-size: 15px;
      font-weight: 500;
      color: rgba(26, 35, 50, .82);
    }

    .nav-links a {
      position: relative;
      transition: color .2s ease;
      display: inline-flex;
      align-items: center;
      padding: 6px 14px;
      border-radius: 999px;
      z-index: 0;
    }
    .nav-links a::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: var(--accent);
      box-shadow: 0 6px 14px rgba(244, 201, 93, .35);
      opacity: 0;
      transform: scale(.85);
      transition: opacity .25s ease, transform .25s ease;
      z-index: -1;
    }
    .nav-links a:hover { color: #000; }
    .nav-links a.is-active {
      color: var(--ink);
      font-weight: 700;
    }
    .nav-links a.is-active::before {
      opacity: 1;
      transform: scale(1);
    }

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

    .btn {
      border: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 750;
      letter-spacing: -.02em;
      cursor: pointer;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    }

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

    .btn-accent {
      background: linear-gradient(135deg, #fff1a8, var(--accent-2));
      color: #1a2332;
      box-shadow: 0 16px 36px rgba(244, 201, 93, .28);
    }

    .btn-dark {
      background: var(--baby-blue);
      color: var(--ink);
      border: 1px solid rgba(26, 35, 50, .12);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, .6);
      color: var(--ink);
      border: 1px solid rgba(26, 35, 50, .14);
    }

    .lang {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: rgba(26,35,50,.72);
      font-size: 14px;
      padding: 0 8px;
    }

    .hero {
      position: relative;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      min-height: 640px;
      border-radius: 0;
      overflow: hidden;
      background: transparent;
    }

    .hero-carousel {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      background-position: center right;
      background-size: cover;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 1.4s ease-in-out;
      will-change: opacity;
    }

    .hero-slide.is-active { opacity: 1; }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(239,245,251,.96) 0%, rgba(239,245,251,.88) 34%, rgba(239,245,251,.22) 60%, rgba(239,245,251,0) 100%),
        radial-gradient(circle at 73% 38%, rgba(255,255,255,.26), transparent 14%),
        radial-gradient(circle at 22% 72%, rgba(116,192,252,.22), transparent 38%),
        linear-gradient(180deg, transparent 70%, rgba(239,245,251,.55) 100%);
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      right: -60px;
      bottom: -8px;
      width: 360px;
      height: 360px;
      border: 74px solid var(--accent);
      border-top: 0;
      border-left: 0;
      border-radius: 0 0 116px 0;
      opacity: .96;
      pointer-events: none;
      z-index: 2;
    }

    .hero-rings {
      position: absolute;
      top: 44%;
      left: 72%;
      width: 0;
      height: 0;
      pointer-events: none;
      z-index: 2;
    }

    .hero-hud {
      position: absolute;
      top: 0;
      left: 0;
      width: 520px;
      height: 520px;
      translate: -50% -50%;
      overflow: visible;
      filter: drop-shadow(0 0 18px rgba(255, 224, 102, .35));
    }

    .hero-hud g {
      transform-box: fill-box;
      transform-origin: 50% 50%;
      will-change: transform, opacity;
    }

    .hud-spin-a    { animation: ringSpin 22s linear infinite; }
    .hud-spin-b    { animation: ringSpinRev 18s linear infinite; }
    .hud-spin-c    { animation: ringSpin 32s linear infinite; }
    .hud-spin-d    { animation: ringSpinRev 14s linear infinite; }
    .hud-pulse-ring { animation: hudPulse 4s ease-in-out infinite; }
    .hud-crosshair  { animation: hudPulse 3s ease-in-out infinite; }

    @keyframes hudPulse {
      0%, 100% { opacity: .55; }
      50%      { opacity: 1; }
    }

    @keyframes ringSpin {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    @keyframes ringSpinRev {
      from { transform: rotate(0deg); }
      to   { transform: rotate(-360deg); }
    }

    @keyframes ringPulse {
      0%, 100% { scale: .9;  opacity: .55; }
      50%      { scale: 1.12; opacity: 1; }
    }

    .hero-rings .cardinal {
      position: absolute;
      top: 0;
      left: 0;
      font-size: 14px;
      color: var(--baby-blue-3);
      text-shadow: 0 0 10px rgba(255, 224, 102, .55);
      animation: cardinalPulse 2.5s ease-in-out infinite;
    }

    .cardinal-top    { translate: -50% calc(-50% - 110px); }
    .cardinal-bottom { translate: -50% calc(-50% + 110px); animation-delay: -1.25s; }
    .cardinal-left   { translate: calc(-50% - 110px) -50%; animation-delay: -.6s; }
    .cardinal-right  { translate: calc(-50% + 110px) -50%; animation-delay: -1.85s; }

    @keyframes cardinalPulse {
      0%, 100% { opacity: .45; }
      50%      { opacity: 1; }
    }

    .hud-widget {
      position: absolute;
      top: 0;
      left: 0;
      padding: 10px 14px;
      background: rgba(189, 224, 254, .82);
      border: 1px solid rgba(255, 224, 102, .4);
      border-radius: 12px;
      color: var(--ink);
      font-size: 11px;
      letter-spacing: .08em;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      box-shadow: 0 10px 28px rgba(0, 0, 0, .35), 0 0 18px rgba(255, 224, 102, .08);
      white-space: nowrap;
      opacity: .92;
    }

    .hud-widget small {
      display: block;
      color: var(--baby-blue-3);
      font-weight: 800;
      font-size: 9px;
      letter-spacing: .22em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .hud-widget strong {
      font-size: 18px;
      letter-spacing: -.02em;
      font-weight: 800;
      font-family: 'Inter', sans-serif;
    }

    .widget-1 { translate: -40px -210px; animation: floatA 5s ease-in-out infinite; }
    .widget-2 { translate: 200px -180px; animation: floatB 6s ease-in-out infinite -1.2s; }
    .widget-3 { translate: 260px 30px; animation: floatA 7s ease-in-out infinite -2s; }
    .widget-4 { translate: 220px 200px; animation: floatB 5.5s ease-in-out infinite -1.5s; }
    .widget-5 { translate: -40px 240px; animation: floatA 6.5s ease-in-out infinite -3s; }

    @keyframes floatA {
      0%, 100% { transform: translateY(0); opacity: .85; }
      50%      { transform: translateY(-10px); opacity: 1; }
    }

    @keyframes floatB {
      0%, 100% { transform: translate(0, 0); opacity: .8; }
      50%      { transform: translate(-5px, 8px); opacity: 1; }
    }

    .hud-bars {
      display: flex;
      align-items: flex-end;
      gap: 3px;
      height: 22px;
      margin-top: 2px;
    }

    .hud-bars span {
      width: 5px;
      background: rgba(255, 224, 102, .85);
      border-radius: 1px;
      transform-origin: bottom;
      animation: barWave 1.4s ease-in-out infinite;
    }

    .hud-bars span:nth-child(1) { height: 38%; animation-delay: 0s; }
    .hud-bars span:nth-child(2) { height: 72%; animation-delay: -.3s; }
    .hud-bars span:nth-child(3) { height: 100%; animation-delay: -.6s; }
    .hud-bars span:nth-child(4) { height: 56%; animation-delay: -.9s; }

    @keyframes barWave {
      0%, 100% { transform: scaleY(.55); }
      50%      { transform: scaleY(1); }
    }

    @media (max-width: 1080px) {
      .hero-rings .cardinal, .hud-widget { display: none; }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-hud g, .hero-rings .cardinal,
      .hud-widget, .hud-bars span { animation: none; }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 130px 7.4% 170px;
      max-width: calc(760px + 7.4vw);
      color: var(--ink);
    }

    .eyebrow {
      color: var(--baby-blue-3);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .46em;
      text-transform: uppercase;
      margin-bottom: 30px;
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(48px, 6.4vw, 96px);
      line-height: .96;
      letter-spacing: -.06em;
      font-weight: 500;
      font-family: 'Libre Baskerville', serif;
    }

    .hero h1 em {
      color: var(--baby-blue-3);
      font-style: normal;
      font-weight: 400;
    }

    .hero .lead-strong {
      margin: 28px 0 14px;
      color: var(--baby-blue-3);
      font-weight: 700;
      font-size: 17px;
      letter-spacing: -.01em;
    }

    .hero p.lead {
      width: min(540px, 100%);
      margin: 0 0 38px;
      color: rgba(26,35,50,.7);
      font-size: 18px;
      line-height: 1.65;
    }

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

    .metric-strip {
      position: relative;
      z-index: 4;
      margin: -67px auto 0;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      padding: 24px;
      border-radius: 30px;
      background: rgba(255, 255, 255, .95);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      border: 1px solid rgba(26,35,50,.1);
      box-shadow: 0 24px 60px rgba(20, 30, 50, .18);
    }

    .metric {
      display: flex;
      gap: 18px;
      align-items: center;
      color: var(--ink);
      min-height: 86px;
      padding: 0 28px;
      border-right: 1px solid rgba(26,35,50,.1);
    }

    .metric:last-child { border-right: 0; }

    .metric svg {
      width: 42px;
      height: 42px;
      color: var(--baby-blue-3);
      flex: 0 0 auto;
    }

    .metric strong {
      display: block;
      font-size: 16px;
      margin-bottom: 5px;
    }

    .metric small {
      color: rgba(26,35,50,.7);
      font-size: 13px;
      line-height: 1.35;
    }

    .section {
      padding: 108px 0 0;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 30px;
      margin: 0 auto 46px;
      width: min(1240px, 100%);
    }

    .section-kicker {
      font-size: 12px;
      font-weight: 850;
      letter-spacing: .42em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 16px;
    }

    .section-title {
      margin: 0;
      font-size: clamp(38px, 4vw, 60px);
      line-height: 1;
      letter-spacing: -.05em;
      max-width: 720px;
      font-weight: 520;
      font-family: 'Libre Baskerville', serif;
    }

    .section-title em {
      color: var(--baby-blue-3);
      font-style: normal;
      font-weight: 400;
    }

    .filter-bar {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .filter-btn {
      border: 1px solid rgba(26,35,50,.18);
      background: rgba(255,255,255,.52);
      color: var(--ink);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: -.01em;
      padding: 10px 16px;
      border-radius: 999px;
      cursor: pointer;
      transition: background .2s ease, color .2s ease, border-color .2s ease;
    }

    .filter-btn:hover { border-color: rgba(26,35,50,.32); }

    .filter-btn.active {
      background: var(--ink);
      color: #fff;
      border-color: var(--ink);
    }

    .products-grid {
      position: relative;
      width: min(1320px, 100%);
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .products-loading,
    .products-empty {
      width: 100%;
      padding: 64px 24px;
      text-align: center;
      color: var(--muted);
      font-size: 15px;
    }

    .carousel-viewport {
      flex: 1;
      overflow: hidden;
      padding: 36px 0;
    }

    .carousel-track {
      display: flex;
      gap: 28px;
      transition: transform .55s cubic-bezier(.16, 1, .3, 1);
      will-change: transform;
    }

    .carousel-track .product-card {
      width: 290px;
      flex-shrink: 0;
      opacity: .42;
      transform: scale(.86);
      transition: transform .45s cubic-bezier(.16, 1, .3, 1), opacity .35s ease, box-shadow .35s ease, border-color .3s ease;
    }

    .carousel-track .product-card.is-active {
      opacity: 1;
      transform: scale(1.06);
      box-shadow:
        0 36px 90px rgba(20, 30, 50, .22),
        0 0 0 1px rgba(255, 224, 102, .35),
        0 22px 60px -10px rgba(255, 224, 102, .4);
      z-index: 2;
    }

    .carousel-track .product-card:not(.is-active):hover { transform: scale(.92); opacity: .7; }

    .carousel-arrow {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 1px solid rgba(26, 35, 50, .18);
      background: rgba(255, 255, 255, .85);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      font-size: 26px;
      font-weight: 400;
      line-height: 1;
      color: var(--ink);
      cursor: pointer;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
      box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
      z-index: 3;
    }

    .carousel-arrow:hover {
      background: var(--ink);
      color: #fff;
      transform: scale(1.06);
      box-shadow: 0 16px 36px rgba(0, 0, 0, .22);
    }

    .products-stage {
      position: relative;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      padding: 72px max(48px, calc((100vw - 1320px) / 2)) 80px;
      background:
        radial-gradient(circle at 80% 0%, rgba(116, 192, 252, .45), transparent 50%),
        radial-gradient(circle at 12% 100%, rgba(255, 224, 102, .35), transparent 42%),
        #dceaf5;
      border: 0;
      border-radius: 0;
      box-shadow: none;
      overflow: hidden;
    }

    .products-stage::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      width: 180px;
      height: 140px;
      border: 28px solid rgba(255, 224, 102, .85);
      border-left: 0;
      border-top: 0;
      pointer-events: none;
    }

    .products-stage .section-head { width: 100%; max-width: none; margin-bottom: 36px; }
    .products-stage .section-kicker { color: var(--baby-blue-3); }
    .products-stage .section-title { color: var(--ink); }
    .products-stage .section-title em { color: var(--baby-blue-3); }

    .products-stage .filter-btn {
      background: rgba(26, 35, 50, .04);
      color: rgba(26, 35, 50, .72);
      border-color: rgba(26, 35, 50, .1);
    }
    .products-stage .filter-btn:hover {
      border-color: rgba(255, 224, 102, .5);
      color: var(--ink);
    }
    .products-stage .filter-btn.active {
      background: var(--accent);
      color: var(--ink);
      border-color: var(--accent);
    }

    .products-stage .view-toggle {
      background: rgba(26, 35, 50, .04);
      color: rgba(26, 35, 50, .72);
      border-color: rgba(26, 35, 50, .1);
    }
    .products-stage .view-toggle:hover {
      border-color: rgba(255, 224, 102, .5);
      color: var(--ink);
    }
    .products-stage .view-toggle.active {
      background: var(--accent);
      color: var(--ink);
      border-color: var(--accent);
    }

    .products-stage .products-grid { width: 100%; }

    .products-stage .carousel-arrow {
      background: rgba(255, 255, 255, .92);
      color: var(--ink);
      border-color: rgba(26, 35, 50, .18);
    }
    .products-stage .carousel-arrow:hover {
      background: var(--accent);
      color: var(--ink);
      border-color: var(--accent);
    }

    @media (max-width: 720px) {
      .products-stage { padding: 44px 16px 56px; }
      .products-stage::after { width: 110px; height: 90px; border-width: 20px; }
    }

    .view-toggle {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(26, 35, 50, .18);
      background: rgba(255, 255, 255, .52);
      border-radius: 999px;
      display: grid;
      place-items: center;
      cursor: pointer;
      color: var(--ink);
      margin-left: 6px;
      transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
    }

    .view-toggle svg { width: 18px; height: 18px; }

    .view-toggle:hover {
      border-color: rgba(26, 35, 50, .32);
      transform: translateY(-1px);
    }

    .view-toggle.active {
      background: var(--ink);
      color: #fff;
      border-color: var(--ink);
    }

    .products-grid.is-grid {
      display: block;
      width: min(1240px, 100%);
    }

    .products-grid.is-grid .carousel-arrow { display: none; }

    .products-grid.is-grid .carousel-viewport {
      overflow: visible;
      padding: 0;
      flex: initial;
    }

    .products-grid.is-grid .carousel-track {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
      transform: none !important;
      transition: none;
    }

    .products-grid.is-grid .product-card[data-group="0"],
    .products-grid.is-grid .product-card[data-group="2"] {
      display: none;
    }

    .products-grid.is-grid .product-card {
      width: auto;
      opacity: 1;
      transform: none;
      animation: gridFadeIn .45s cubic-bezier(.16, 1, .3, 1) both;
    }

    .products-grid.is-grid .product-card.is-active {
      transform: none;
      box-shadow: 0 24px 70px rgba(20, 30, 50, .08);
    }

    @keyframes gridFadeIn {
      from { opacity: 0; transform: translateY(20px) scale(.95); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }

    .product-card {
      display: flex;
      flex-direction: column;
      min-height: 454px;
      border-radius: 28px;
      overflow: hidden;
      background: rgba(255,255,255,.62);
      border: 1px solid rgba(26,35,50,.1);
      box-shadow: 0 24px 70px rgba(20, 30, 50, .08);
      transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s ease, border-color .3s ease;
      cursor: pointer;
      position: relative;
      isolation: isolate;
    }

    .product-card::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 28px;
      pointer-events: none;
      background: radial-gradient(circle at 50% 0%, rgba(255, 224, 102, .22), transparent 55%);
      opacity: 0;
      transition: opacity .3s ease;
      z-index: 3;
    }

    .product-card:hover {
      transform: translateY(-10px);
      border-color: rgba(255, 224, 102, .6);
      box-shadow:
        0 32px 80px rgba(20, 30, 50, .18),
        0 0 0 1px rgba(255, 224, 102, .3),
        0 18px 50px -8px rgba(255, 224, 102, .35);
    }

    .product-card:hover::after { opacity: 1; }

    .product-image {
      position: relative;
      height: 190px;
      background: linear-gradient(135deg, #eaf3fb 0%, #dceaf5 100%);
    }

    .product-image-inner {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .product-image-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform .55s cubic-bezier(.16, 1, .3, 1);
    }

    .product-image-veil {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, .55) 100%);
      pointer-events: none;
    }

    .product-card:hover .product-image-bg { transform: scale(1.08); }

    .icon-chip {
      position: absolute;
      left: 22px;
      bottom: -26px;
      width: 58px;
      height: 58px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      color: var(--baby-blue-3);
      background: #eaf3fb;
      border: 1px solid rgba(26,35,50,.1);
      box-shadow: 0 14px 30px rgba(0,0,0,.18);
      font-size: 24px;
      font-weight: 800;
      transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s ease;
      z-index: 2;
    }

    .product-card:hover .icon-chip {
      transform: translateY(-4px);
      box-shadow: 0 18px 36px rgba(0, 0, 0, .32), 0 0 0 4px rgba(255, 224, 102, .18);
    }

    .icon-chip svg { width: 30px; height: 30px; }

    .product-body {
      padding: 50px 26px 28px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .product-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--olive-dark);
      margin-bottom: 10px;
    }

    .product-body h3 {
      margin: 0 0 14px;
      font-size: 24px;
      line-height: 1.05;
      letter-spacing: -.04em;
      font-weight: 640;
      transition: color .25s ease;
    }

    .product-card:hover .product-body h3 { color: var(--olive-dark); }

    .product-body p {
      margin: 0 0 24px;
      color: #4a5263;
      line-height: 1.55;
      font-size: 14px;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

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

    .product-price {
      font-weight: 800;
      letter-spacing: -.02em;
      font-size: 17px;
      color: var(--ink);
    }

    .product-price small {
      display: block;
      color: var(--muted);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 2px;
    }

    .learn {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      font-weight: 800;
      font-size: 13px;
      color: var(--olive-dark);
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255, 224, 102, .14);
      border: 1px solid rgba(255, 224, 102, .32);
      transition: background .25s ease, color .25s ease, border-color .25s ease, padding .25s ease, box-shadow .25s ease;
      white-space: nowrap;
    }

    .learn > span {
      display: inline-block;
      transition: transform .3s cubic-bezier(.16, 1, .3, 1);
    }

    .product-card:hover .learn {
      background: var(--accent);
      color: var(--ink);
      border-color: var(--accent);
      padding: 8px 18px 8px 16px;
      box-shadow: 0 10px 22px rgba(244, 201, 93, .35);
    }

    .product-card:hover .learn > span { transform: translateX(5px); }

    .manifesto-grid {
      position: relative;
      width: min(1240px, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      align-items: stretch;
      border: 1px solid rgba(26, 35, 50, .1);
      border-radius: 36px;
      overflow: hidden;
      box-shadow: 0 24px 70px rgba(20, 30, 50, .08);
    }

    .manifesto-col {
      padding: 56px 56px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .manifesto-col.light {
      position: relative;
      overflow: hidden;
      background: var(--bg);
      isolation: isolate;
    }

    .manifesto-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      pointer-events: none;
    }

    .manifesto-col.light::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255, 255, 255, .1) 0%, rgba(255, 255, 255, .45) 100%);
      backdrop-filter: blur(1px);
      -webkit-backdrop-filter: blur(1px);
      z-index: 1;
      pointer-events: none;
    }

    .manifesto-col.light > *:not(.manifesto-video) {
      position: relative;
      z-index: 2;
    }

    .manifesto-col.dark {
      background: #dceaf5;
      color: rgba(26, 35, 50, .68);
    }

    .manifesto-col.dark .manifesto-kicker { color: var(--baby-blue-3); }
    .manifesto-col.dark .manifesto-kicker span { color: var(--baby-blue-3); }
    .manifesto-col.dark .manifesto-title { color: var(--ink); }
    .manifesto-col.dark .manifesto-title em { color: var(--baby-blue-3); }
    .manifesto-col.dark p { color: rgba(26, 35, 50, .65); }
    .manifesto-col.dark strong { color: var(--ink); }
    .manifesto-col.dark .manifesto-checks li { color: rgba(26, 35, 50, .68); }
    .manifesto-col.dark .manifesto-checks li::before {
      background: rgba(255, 224, 102, .18);
      color: var(--baby-blue-3);
    }
    .manifesto-col.dark .manifesto-closer {
      border-top-color: rgba(26, 35, 50, .1);
      color: var(--ink) !important;
    }

    .manifesto-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 4px;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--olive-dark);
    }

    .manifesto-kicker span {
      color: var(--baby-blue-3);
      font-size: 9px;
      line-height: 1;
    }

    .manifesto-title {
      margin: 0 0 12px;
      font-family: 'Libre Baskerville', serif;
      font-weight: 500;
      font-size: clamp(28px, 2.6vw, 40px);
      line-height: 1.12;
      letter-spacing: -.03em;
      color: var(--ink);
    }

    .manifesto-title em {
      font-style: italic;
      font-weight: 400;
      color: var(--olive-dark);
    }

    .manifesto-col p {
      margin: 0;
      color: #5b6473;
      font-size: 15px;
      line-height: 1.7;
    }

    .manifesto-col strong { color: var(--ink); font-weight: 700; }

    .manifesto-checks {
      list-style: none;
      margin: 14px 0 0;
      padding: 0;
      display: grid;
      gap: 14px;
    }

    .manifesto-checks li {
      position: relative;
      padding-left: 34px;
      color: #5b6473;
      font-size: 15px;
      line-height: 1.6;
    }

    .manifesto-checks li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 2px;
      width: 22px;
      height: 22px;
      display: grid;
      place-items: center;
      background: rgba(255, 224, 102, .25);
      color: var(--olive-dark);
      border-radius: 7px;
      font-weight: 900;
      font-size: 13px;
    }

    .manifesto-closer {
      margin-top: 18px !important;
      padding-top: 18px;
      border-top: 1px solid rgba(26, 35, 50, .1);
      font-weight: 600;
      color: var(--ink) !important;
    }

    .manifesto-cta {
      margin-top: 18px;
      align-self: flex-start;
    }

    @media (max-width: 900px) {
      .manifesto-grid {
        grid-template-columns: 1fr;
        border-radius: 28px;
      }
      .manifesto-col { padding: 40px 28px; }
    }

    .comparison-card {
      width: min(1240px, 100%);
      margin: 0 auto;
      padding: 56px 56px 48px;
      background: rgba(255, 255, 255, .62);
      border: 1px solid rgba(26, 35, 50, .1);
      border-radius: 36px;
      box-shadow: 0 24px 70px rgba(20, 30, 50, .08);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .comparison-head {
      text-align: center;
      margin-bottom: 36px;
    }

    .comparison-title {
      margin: 0 0 14px;
      font-family: 'Libre Baskerville', serif;
      font-weight: 500;
      font-size: clamp(26px, 2.4vw, 38px);
      line-height: 1.18;
      letter-spacing: -.03em;
      color: var(--ink);
    }

    .comparison-title em {
      font-style: italic;
      font-weight: 400;
      color: var(--olive-dark);
    }

    .comparison-subtitle {
      margin: 0 auto;
      max-width: 580px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.6;
    }

    .comparison-table-wrapper {
      overflow-x: auto;
      border-radius: 22px;
      border: 1px solid rgba(26, 35, 50, .12);
      background: #fff;
    }

    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      color: #5b6473;
    }

    .comparison-table thead th {
      background: rgba(26, 35, 50, .04);
      color: var(--ink);
      font-weight: 800;
      text-transform: uppercase;
      font-size: 11px;
      letter-spacing: .12em;
      padding: 16px 22px;
      text-align: left;
      border-bottom: 1px solid rgba(26, 35, 50, .1);
    }

    .comparison-table thead th.highlight {
      background: rgba(255, 224, 102, .2);
      color: var(--olive-dark);
    }

    .comparison-table tbody td {
      padding: 16px 22px;
      border-bottom: 1px solid rgba(26, 35, 50, .08);
      line-height: 1.5;
      vertical-align: top;
    }

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

    .comparison-table tbody td:first-child {
      color: var(--ink);
      font-weight: 700;
      width: 22%;
    }

    .comparison-table td.con { color: #6f716b; }

    .comparison-table td.pro {
      background: rgba(255, 224, 102, .08);
      color: var(--ink);
      font-weight: 600;
    }

    .comparison-table td i {
      display: inline-grid;
      place-items: center;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      font-style: normal;
      font-weight: 900;
      font-size: 11px;
      margin-right: 10px;
      vertical-align: -4px;
    }

    .comparison-table td.con i {
      background: rgba(196, 74, 74, .14);
      color: #c44a4a;
    }

    .comparison-table td.pro i {
      background: rgba(255, 224, 102, .3);
      color: var(--olive-dark);
    }

    .comparison-cta {
      text-align: center;
      margin-top: 36px;
    }

    @media (max-width: 800px) {
      .comparison-card { padding: 36px 24px; }
      .comparison-title { font-size: 24px; }
      .comparison-table thead th,
      .comparison-table tbody td { padding: 12px 14px; font-size: 13px; }
    }

    .tech-panel {
      width: min(1320px, 100%);
      margin: 34px auto 0;
      min-height: 450px;
      border-radius: 36px;
      overflow: hidden;
      position: relative;
      color: var(--ink);
      background: var(--cream, #eff5fb);
      box-shadow: var(--shadow);
    }

    .tech-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center right;
      z-index: 0;
      pointer-events: none;
    }

    .tech-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(239,245,251,.96), rgba(239,245,251,.86) 43%, rgba(239,245,251,.2)),
        radial-gradient(circle at 62% 48%, rgba(116,192,252,.35), transparent 26%),
        radial-gradient(circle at 28% 80%, rgba(255,224,102,.28), transparent 28%),
        linear-gradient(180deg, transparent 70%, rgba(239,245,251,.85) 100%);
    }

    .tech-panel::after {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      width: 150px;
      height: 130px;
      border: 28px solid rgba(255, 224, 102, .9);
      border-left: 0;
      border-bottom: 0;
      border-radius: 0 36px 0 0;
      pointer-events: none;
    }

    .tech-content {
      position: relative;
      z-index: 2;
      width: min(620px, 90%);
      padding: 70px 0 140px 58px;
    }

    .tech-content h2 {
      margin: 0 0 22px;
      font-size: clamp(36px, 4vw, 58px);
      line-height: .98;
      letter-spacing: -.05em;
      font-weight: 520;
      font-family: 'Libre Baskerville', serif;
    }

    .tech-content h2 em { color: var(--baby-blue-3); font-style: normal; font-weight: 400; }

    .tech-content p {
      color: rgba(26,35,50,.68);
      font-size: 17px;
      line-height: 1.7;
      margin: 0 0 28px;
    }

    .tech-features {
      position: absolute;
      z-index: 3;
      left: 0;
      right: 0;
      bottom: 0;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      min-height: 96px;
      background: rgba(189, 224, 254, .55);
      backdrop-filter: blur(20px);
      border-top: 1px solid rgba(26,35,50,.08);
    }

    .tech-feature {
      padding: 22px 28px;
      display: flex;
      gap: 14px;
      align-items: center;
      border-right: 1px solid rgba(26,35,50,.08);
      color: rgba(26,35,50,.72);
      font-weight: 620;
      line-height: 1.35;
      font-size: 14px;
    }

    .tech-feature:last-child { border-right: 0; }
    .tech-feature span { color: var(--baby-blue-3); font-size: 22px; flex: 0 0 auto; }

    .authority-stage {
      position: relative;
      width: min(1320px, 100%);
      margin: 34px auto 0;
    }

    .authority {
      width: 100%;
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 36px;
      align-items: stretch;
      background: rgba(255,255,255,.52);
      border: 1px solid rgba(26,35,50,.1);
      border-radius: 36px;
      overflow: hidden;
      box-shadow: 0 24px 70px rgba(20, 30, 50, .08);
    }

    .authority-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: 1px solid rgba(26, 35, 50, .18);
      background: rgba(255, 255, 255, .9);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: var(--ink);
      font-size: 26px;
      line-height: 1;
      cursor: pointer;
      display: grid;
      place-items: center;
      box-shadow: 0 12px 28px rgba(20, 30, 50, .14);
      transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
      z-index: 4;
    }

    .authority-nav.prev { left: -22px; }
    .authority-nav.next { right: -22px; }

    .authority-nav:hover {
      background: var(--ink);
      color: #fff;
      transform: translateY(-50%) scale(1.06);
      box-shadow: 0 18px 38px rgba(20, 30, 50, .22);
    }

    .authority-nav:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }

    .authority-fade {
      opacity: 1;
      transition: opacity .25s ease;
    }
    .authority-fade.is-changing { opacity: 0; }

    @media (max-width: 720px) {
      .authority-nav { width: 44px; height: 44px; font-size: 22px; }
      .authority-nav.prev { left: 6px; }
      .authority-nav.next { right: 6px; }
    }

    .authority-photo {
      min-height: 460px;
      background: #dceaf5 center / cover no-repeat;
      position: relative;
    }

    .authority-photo::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      width: 120px;
      height: 110px;
      border: 24px solid rgba(255, 224, 102, .85);
      border-left: 0;
      border-top: 0;
      border-radius: 0 0 30px 0;
      pointer-events: none;
    }

    .authority-content {
      padding: 60px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .authority-content h2 {
      margin: 14px 0 8px;
      font-size: clamp(34px, 3vw, 52px);
      line-height: 1;
      letter-spacing: -.04em;
      font-family: 'Libre Baskerville', serif;
      font-weight: 540;
    }

    .authority-title {
      color: var(--olive-dark);
      font-weight: 800;
      font-size: 14px;
      letter-spacing: -.01em;
      margin-bottom: 22px;
    }

    .authority-title span {
      display: block;
      color: var(--muted);
      font-weight: 600;
      margin-top: 4px;
    }

    .authority-content p {
      margin: 0 0 16px;
      color: #5b6473;
      line-height: 1.65;
      font-size: 15px;
    }

    .authority-quote {
      margin: 22px 0 0;
      padding: 22px 24px;
      border-left: 4px solid var(--accent);
      background: rgba(255,224,102,.08);
      border-radius: 0 18px 18px 0;
      color: var(--ink);
      font-style: italic;
      font-family: 'Libre Baskerville', serif;
      line-height: 1.5;
      font-size: 16px;
    }

    .faq-section {
      width: min(1240px, 100%);
      margin: 34px auto 0;
    }

    .faq-list {
      display: grid;
      gap: 14px;
      margin-top: 32px;
    }

    .faq-item {
      border: 1px solid rgba(26,35,50,.12);
      background: rgba(255,255,255,.62);
      border-radius: 22px;
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      border: 0;
      background: transparent;
      padding: 22px 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      font-size: 16px;
      font-weight: 700;
      color: var(--ink);
      cursor: pointer;
      text-align: left;
      letter-spacing: -.01em;
    }

    .faq-question span {
      flex: 0 0 auto;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--accent);
      color: #1a2332;
      display: grid;
      place-items: center;
      font-size: 18px;
      transition: transform .2s ease;
    }

    .faq-item.open .faq-question span { transform: rotate(45deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease;
    }

    .faq-answer-inner {
      padding: 0 28px 26px;
      color: #5b6473;
      line-height: 1.65;
      font-size: 15px;
    }

    .cta-band {
      width: min(1320px, 100%);
      margin: 32px auto 0;
      display: grid;
      grid-template-columns: .88fr 1.1fr .7fr;
      align-items: stretch;
      min-height: 250px;
      border-radius: 36px;
      overflow: hidden;
      background: #dceaf5;
      color: var(--ink);
      box-shadow: var(--shadow);
    }

    .cta-photo {
      min-height: 250px;
      background:
        linear-gradient(90deg, rgba(239,245,251,.25), rgba(239,245,251,.86)),
        url('/public/media/cta-care.png') center / cover no-repeat;
      position: relative;
    }

    .cta-photo::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 110px;
      height: 100px;
      border: 24px solid rgba(255, 224, 102, .8);
      border-right: 0;
      border-top: 0;
      border-radius: 0 0 0 30px;
      pointer-events: none;
    }

    .cta-text {
      padding: 48px 52px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .cta-text h2 {
      margin: 0 0 18px;
      font-size: clamp(30px, 2.6vw, 48px);
      line-height: 1.04;
      letter-spacing: -.04em;
      font-weight: 540;
      font-family: 'Libre Baskerville', serif;
    }

    .cta-text p {
      margin: 0;
      color: rgba(26,35,50,.65);
      line-height: 1.6;
      max-width: 530px;
    }

    .cta-action {
      display: grid;
      place-items: center;
      padding: 36px;
    }

    .pillars {
      width: min(1320px, 100%);
      margin: 0 auto 80px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: #dceaf5;
      border-top: 1px solid rgba(26,35,50,.08);
      color: var(--ink);
      border-radius: 0 0 36px 36px;
      overflow: hidden;
    }

    .pillar {
      padding: 30px 34px 36px;
      border-right: 1px solid rgba(26,35,50,.08);
    }

    .pillar:last-child { border-right: 0; }
    .pillar strong { display: block; margin-bottom: 7px; font-size: 18px; }
    .pillar p { margin: 0; color: rgba(26,35,50,.7); line-height: 1.45; font-size: 14px; }

    .footer {
      padding: 40px 0 56px;
      border-top: 1px solid rgba(26,35,50,.1);
      color: var(--muted);
      font-size: 14px;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 32px;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .footer-brand img {
      display: block;
      width: auto;
      opacity: .9;
    }

    .footer-symbol { height: 32px; }
    .footer-wordmark { height: 20px; }

    .footer-info {
      display: flex;
      flex-wrap: wrap;
      gap: 4px 24px;
      align-items: center;
    }

    .footer-info a:hover { color: var(--ink); }

    .footer-social {
      display: flex;
      gap: 10px;
    }

    .footer-social a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid rgba(26,35,50,.16);
      font-weight: 800;
      font-size: 12px;
      transition: background .2s ease, color .2s ease;
    }

    .footer-social a:hover {
      background: var(--ink);
      color: #fff;
    }

    .whatsapp-float {
      position: fixed;
      bottom: 22px;
      right: 22px;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #25D366;
      color: #fff;
      display: grid;
      place-items: center;
      z-index: 50;
      box-shadow: 0 10px 28px rgba(37, 211, 102, .42);
      transition: transform .2s ease;
    }

    .whatsapp-float:hover { transform: scale(1.06); }
    .whatsapp-float svg { width: 28px; height: 28px; }

    .modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 28px;
    }

    .modal.open { display: flex; }

    .modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(26, 35, 50, .42);
      backdrop-filter: blur(10px);
      animation: modalFade .25s ease;
    }

    .modal-card {
      position: relative;
      z-index: 2;
      width: min(960px, 100%);
      max-height: calc(100vh - 56px);
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      background: var(--cream);
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(20, 30, 50, .25);
      animation: modalIn .35s cubic-bezier(.16, 1, .3, 1);
    }

    @keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
    @keyframes modalIn {
      from { opacity: 0; transform: translateY(18px) scale(.98); }
      to { opacity: 1; transform: none; }
    }

    .modal-close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 0;
      background: rgba(255, 255, 255, .94);
      color: var(--ink);
      font-size: 22px;
      cursor: pointer;
      z-index: 4;
      box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
      transition: transform .2s ease;
    }

    .modal-close:hover { transform: rotate(90deg); }

    .modal-media {
      position: relative;
      min-height: 320px;
      background-color: #eaf3fb;
      background-size: cover;
      background-position: center;
    }

    .modal-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(189, 224, 254, .25) 0%, rgba(189, 224, 254, .65) 100%);
    }

    .modal-media::before {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      width: 120px;
      height: 110px;
      border: 24px solid rgba(255, 224, 102, .9);
      border-left: 0;
      border-top: 0;
      border-radius: 0 0 30px 0;
      z-index: 3;
      pointer-events: none;
    }

    .modal-icon-chip {
      position: absolute;
      left: 28px;
      bottom: 28px;
      width: 68px;
      height: 68px;
      border-radius: 22px;
      display: grid;
      place-items: center;
      color: var(--baby-blue-3);
      background: #eaf3fb;
      border: 1px solid rgba(26, 35, 50, .12);
      box-shadow: 0 14px 32px rgba(0, 0, 0, .34);
      z-index: 3;
    }

    .modal-icon-chip svg { width: 34px; height: 34px; }

    .modal-content {
      padding: 42px 40px 32px;
      max-height: calc(100vh - 56px);
      min-height: 0;
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .modal-kicker {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .26em;
      text-transform: uppercase;
      color: var(--olive-dark);
    }

    .modal-header h2 {
      margin: 8px 0 14px;
      font-size: clamp(26px, 2.4vw, 36px);
      line-height: 1.05;
      letter-spacing: -.04em;
      font-family: 'Libre Baskerville', serif;
      font-weight: 540;
    }

    .modal-price {
      display: inline-flex;
      align-items: baseline;
      gap: 8px;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(255, 224, 102, .18);
      color: var(--olive-dark);
      font-weight: 800;
      font-size: 17px;
      width: max-content;
    }

    .modal-price small {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      opacity: .8;
      margin-right: 2px;
    }

    .modal-tabs {
      display: flex;
      gap: 4px;
      border-bottom: 1px solid rgba(26, 35, 50, .1);
      margin-top: 6px;
    }

    .modal-tab {
      background: transparent;
      border: 0;
      padding: 14px 4px;
      margin-right: 22px;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: -.01em;
      color: var(--muted);
      cursor: pointer;
      position: relative;
      transition: color .2s ease;
    }

    .modal-tab:hover { color: var(--ink); }

    .modal-tab.active { color: var(--ink); }
    .modal-tab.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 3px;
      background: var(--accent-2);
      border-radius: 4px;
    }

    .modal-panels {
      flex: 1;
      min-height: 0;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding-right: 6px;
      margin-right: -6px;
    }
    .modal-panel { display: none; color: #5b6473; line-height: 1.7; font-size: 15px; }
    .modal-panel.active { display: block; animation: modalFade .3s ease; }
    .modal-panel p { margin: 0 0 14px; }
    .modal-panel strong { color: var(--ink); font-weight: 700; }
    .modal-panel em { font-style: normal; color: var(--ink); }
    .modal-panel ul, .modal-panel ol { margin: 0 0 14px; padding-left: 20px; }
    .modal-panel li { margin-bottom: 6px; }
    .modal-rich-text > *:last-child { margin-bottom: 0; }

    .modal-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 18px;
    }

    .modal-badge {
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(26, 35, 50, .06);
      color: var(--ink);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .modal-prep-list {
      list-style: none;
      margin: 0 0 16px;
      padding: 0;
      display: grid;
      gap: 10px;
    }

    .modal-prep-list li {
      position: relative;
      padding-left: 30px;
      line-height: 1.55;
    }

    .modal-prep-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--baby-blue-3);
      font-weight: 900;
      font-size: 16px;
    }

    .modal-footer {
      margin-top: 8px;
      padding-top: 22px;
      border-top: 1px solid rgba(26, 35, 50, .1);
      display: flex;
      justify-content: flex-end;
    }

    body.modal-open { overflow: hidden; }

    @media (max-width: 820px) {
      .modal { padding: 16px; }
      .modal-card {
        grid-template-columns: 1fr;
        max-height: calc(100vh - 32px);
        border-radius: 26px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }
      .modal-media { min-height: 220px; }
      .modal-media::before { width: 90px; height: 80px; border-width: 18px; }
      .modal-content {
        padding: 30px 24px;
        max-height: none;
      }
      .modal-panels { overflow-y: visible; padding-right: 0; margin-right: 0; }
      .modal-footer { justify-content: stretch; }
      .modal-footer .btn { width: 100%; }
    }

    @media (max-width: 1080px) {
      .nav-links { display: none; }
      .hero { min-height: 600px; }
      .metric-strip, .tech-features, .pillars { grid-template-columns: repeat(2, 1fr); }
      .metric:nth-child(2), .tech-feature:nth-child(2), .pillar:nth-child(2) { border-right: 0; }
      .cta-band { grid-template-columns: 1fr; }
      .cta-action { place-items: start; }
      .authority { grid-template-columns: 1fr; }
      .authority-photo { min-height: 320px; }
      .footer-inner { grid-template-columns: 1fr; text-align: left; }
    }

    @media (max-width: 720px) {
      .page { width: min(100% - 24px, 1480px); }
      .nav { top: 10px; width: calc(100% - 24px); border-radius: 26px; }
      .brand-symbol { height: 28px; }
      .brand-wordmark { height: 18px; }
      .lang { display: none; }
      .hero { min-height: auto; }
      .hero-rings { display: none; }
      .hero-slide {
        background-position: center top;
        background-size: cover;
        opacity: 0;
      }
      .hero-slide.is-active { opacity: .55; }
      .hero::before {
        background:
          linear-gradient(180deg, rgba(239,245,251,.92) 0%, rgba(239,245,251,.78) 38%, rgba(239,245,251,.55) 62%, rgba(239,245,251,.92) 100%),
          radial-gradient(circle at 50% 28%, rgba(255,255,255,.35), transparent 55%);
      }
      .hero-content { padding: 104px 24px 220px; max-width: 100%; }
      .hero h1 { font-size: 42px; line-height: 1; }
      .hero .lead-strong { font-size: 16px; }
      .hero p.lead { font-size: 15.5px; line-height: 1.6; margin-bottom: 28px; }
      .hero-ctas .btn { width: 100%; justify-content: center; }
      .hero::after { width: 160px; height: 160px; border-width: 32px; right: -40px; }
      .metric-strip {
        grid-template-columns: 1fr;
        padding: 12px;
        border-radius: 24px;
        margin-top: -40px;
      }
      .metric {
        border-right: 0;
        border-bottom: 1px solid rgba(26,35,50,.08);
        padding: 12px;
      }
      .metric:last-child { border-bottom: 0; }
      .section { padding-top: 72px; }
      .section-head { align-items: start; flex-direction: column; }
      .tech-features, .pillars { grid-template-columns: 1fr; }
      .carousel-track .product-card { width: 250px; }
      .carousel-arrow { width: 44px; height: 44px; font-size: 22px; }
      .tech-content { padding: 52px 28px 380px; }
      .tech-feature, .pillar { border-right: 0; border-bottom: 1px solid rgba(26,35,50,.08); }
      .authority-content { padding: 36px 28px; }
      .cta-text { padding: 36px 28px; }
    }

    .promo-popup {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .promo-popup.open { display: flex; }

    .promo-popup-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(26, 35, 50, .55);
      backdrop-filter: blur(10px);
      animation: modalFade .25s ease;
    }

    .promo-popup-card {
      position: relative;
      z-index: 2;
      width: min(560px, 100%);
      max-height: calc(100vh - 48px);
      background: var(--cream);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(20, 30, 50, .35);
      animation: modalIn .35s cubic-bezier(.16, 1, .3, 1);
    }

    .promo-popup-image {
      display: block;
      width: 100%;
      height: auto;
      max-height: calc(100vh - 48px);
      object-fit: contain;
    }

    .promo-popup-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 0;
      background: rgba(255, 255, 255, .94);
      color: var(--ink);
      font-size: 22px;
      cursor: pointer;
      z-index: 4;
      box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
      transition: transform .2s ease;
      line-height: 1;
    }

    .promo-popup-close:hover { transform: rotate(90deg); }

    @media (max-width: 560px) {
      .promo-popup { padding: 16px; }
      .promo-popup-card { border-radius: 18px; }
    }
