:root {
      --ink: #0a0b0b;
      --ink-2: #141716;
      --paper: #f4f5f3;
      --white: #ffffff;
      --muted: #a8afab;
      --muted-dark: #606864;
      --red: #d7192d;
      --red-bright: #ef2638;
      --lime: #caff3d;
      --line: rgba(255,255,255,.14);
      --radius: 22px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: Arial, Helvetica, sans-serif;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; }
    .wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

    .topbar {
      position: absolute;
      inset: 0 0 auto;
      z-index: 10;
      padding: 28px 0;
      color: var(--white);
    }
    .topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .brand { display: inline-flex; align-items: center; text-decoration: none; }
    .brand-logo { display: block; width: 124px; height: auto; }
    .nav { display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 700; }
    .nav a { text-decoration: none; color: #dce0de; }
    .nav a:hover { color: var(--white); }

    .hero {
      position: relative;
      min-height: 800px;
      overflow: hidden;
      color: var(--white);
      background:
        radial-gradient(circle at 76% 44%, rgba(215,25,45,.28), transparent 32%),
        radial-gradient(circle at 76% 44%, transparent 0 34%, rgba(255,255,255,.08) 34.2% 34.5%, transparent 34.7% 49%, rgba(255,255,255,.06) 49.2% 49.5%, transparent 49.7%),
        linear-gradient(135deg, #0b0d0c 0%, #0b0d0c 58%, #240c10 100%);
    }
    .hero::before {
      content: "";
      position: absolute;
      top: -180px;
      right: -100px;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      background: linear-gradient(145deg, rgba(239,38,56,.7), rgba(215,25,45,0));
      filter: blur(2px);
      opacity: .65;
    }
    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.04fr .96fr;
      align-items: center;
      gap: 70px;
      min-height: 800px;
      padding: 132px 0 72px;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
      color: #d5dad7;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 2.4px;
      text-transform: uppercase;
    }
    .eyebrow::before { content: ""; width: 32px; height: 3px; background: var(--red-bright); }
    h1 {
      max-width: 720px;
      margin: 0;
      font-size: clamp(54px, 7vw, 94px);
      line-height: .94;
      letter-spacing: -5px;
      font-weight: 900;
    }
    h1 span { color: var(--red-bright); }
    .hero-copy {
      max-width: 620px;
      margin: 30px 0 0;
      color: #c5cbc8;
      font-size: 19px;
      line-height: 1.55;
    }
    .value-claim {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
      align-items: center;
      column-gap: 10px;
      max-width: 620px;
      margin-top: 26px;
      padding: 17px 20px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 16px;
      background: rgba(255,255,255,.06);
      backdrop-filter: blur(8px);
    }
    .value-claim strong { display: block; font-size: 14px; line-height: 1.2; letter-spacing: .8px; text-transform: uppercase; }
    .value-claim span { display: block; margin-top: 5px; color: #aeb5b1; font-size: 12px; line-height: 1.4; }
    .value-claim .value-more strong { color: var(--lime); }
    .value-versus {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 72px;
      justify-self: center;
      color: var(--red-bright);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 1.5px;
      text-align: center;
    }
    .actions { display: flex; flex-wrap: wrap; gap: 14px; width: 100%; max-width: 620px; margin-top: 36px; }
    .actions .btn { flex: 1 1 calc(50% - 7px); white-space: nowrap; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 0 23px;
      border: 1px solid transparent;
      border-radius: 10px;
      text-decoration: none;
      font-size: 15px;
      font-weight: 800;
      transition: transform .2s ease, background .2s ease, color .2s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary { background: var(--red); color: var(--white); }
    .btn-primary:hover { background: #ef2338; }
    .btn-ghost { border-color: rgba(255,255,255,.26); color: var(--white); }
    .btn-ghost:hover { background: rgba(255,255,255,.08); }
    .scroll-cue {
      position: absolute;
      z-index: 4;
      left: 50%;
      bottom: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: #c5cbc8;
      text-decoration: none;
      transform: translateX(-50%);
    }
    .scroll-cue span { font-size: 9px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; }
    .scroll-cue i { position: relative; width: 22px; height: 34px; border: 1px solid rgba(255,255,255,.42); border-radius: 99px; }
    .scroll-cue i::after {
      content: "";
      position: absolute;
      top: 7px;
      left: 50%;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--lime);
      transform: translateX(-50%);
      animation: scroll-hint 1.7s ease-in-out infinite;
    }
    @keyframes scroll-hint {
      0% { opacity: 0; transform: translate(-50%, 0); }
      30% { opacity: 1; }
      75%, 100% { opacity: 0; transform: translate(-50%, 14px); }
    }

    .device-stage { position: relative; min-height: 550px; }
    .device-glow {
      position: absolute;
      inset: 16% 4% 8%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,.28) 0%, rgba(239,38,56,.34) 38%, rgba(239,38,56,.08) 60%, rgba(239,38,56,0) 72%);
      filter: blur(7px);
    }
    .phone {
      position: absolute;
      width: 228px;
      height: 456px;
      padding: 10px;
      border: 1px solid rgba(255,255,255,.58);
      border-radius: 38px;
      background: #151817;
      box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 36px 80px rgba(0,0,0,.48);
    }
    .phone-a { left: 4%; top: 70px; transform: rotate(-8deg); }
    .phone-b { right: 4%; top: 16px; transform: rotate(7deg); }
    .screen {
      position: relative;
      height: 100%;
      overflow: hidden;
      border-radius: 29px;
      color: #111413;
      background: linear-gradient(180deg, #ffffff, #f0f3f1);
      box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
    }
    .screen::before {
      content: "";
      position: absolute;
      top: 9px;
      left: 50%;
      width: 68px;
      height: 18px;
      border-radius: 0 0 12px 12px;
      background: #020303;
      transform: translateX(-50%);
    }
    .screen-ui { padding: 48px 18px 20px; }
    .screen-logo { color: var(--red); font-size: 8px; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; }
    .screen-title { margin-top: 22px; font-size: 24px; line-height: 1.05; font-weight: 900; }
    .screen-note { margin-top: 10px; color: #69726e; font-size: 10px; line-height: 1.5; }
    .screen-card { margin-top: 18px; padding: 14px; border: 1px solid #d9dedb; border-radius: 12px; background: #ffffff; box-shadow: 0 8px 20px rgba(10,11,11,.07); }
    .screen-label { color: var(--red); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
    .screen-value { margin-top: 8px; font-size: 13px; font-weight: 800; }
    .screen-bar { height: 6px; margin-top: 12px; border-radius: 99px; background: #dce1de; overflow: hidden; }
    .screen-bar span { display: block; width: 72%; height: 100%; background: var(--lime); }
    .screen-bar .progress-60 { width: 60%; }
    .screen-button { margin-top: 14px; padding: 12px; border-radius: 10px; color: var(--white); text-align: center; background: var(--red); font-size: 10px; font-weight: 900; }
    .float-stat {
      position: absolute;
      right: -8px;
      bottom: 42px;
      width: 205px;
      padding: 18px;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 16px;
      background: rgba(15,18,17,.8);
      backdrop-filter: blur(12px);
      box-shadow: 0 22px 55px rgba(0,0,0,.28);
    }
    .float-stat strong { display: block; color: var(--lime); font-size: 31px; line-height: 1; }
    .float-stat span { display: block; margin-top: 8px; color: #cbd0cd; font-size: 12px; line-height: 1.45; }

    section { padding: 110px 0; }
    .section-head { display: grid; grid-template-columns: 120px 1fr; gap: 18px; margin-bottom: 48px; }
    .section-no { color: var(--red); font-size: 13px; font-weight: 900; letter-spacing: 2px; }
    .kicker { margin: 0 0 12px; color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: 2.3px; text-transform: uppercase; }
    h2 { margin: 0; font-size: clamp(38px, 5vw, 64px); line-height: 1; letter-spacing: -2.5px; font-weight: 900; }
    .lead { max-width: 720px; margin: 20px 0 0; color: var(--muted-dark); font-size: 18px; line-height: 1.6; }

    .benefits { background: var(--paper); }
    .benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .benefit-card { min-height: 260px; padding: 30px; border: 1px solid #dfe2df; border-radius: var(--radius); background: var(--white); }
    .benefit-card.featured { color: var(--white); background: var(--red); border-color: var(--red); }
    .metric { font-size: 62px; line-height: 1; letter-spacing: -3px; font-weight: 900; }
    .metric small { font-size: 26px; letter-spacing: -1px; }
    .benefit-card h3 { margin: 30px 0 10px; font-size: 22px; }
    .benefit-card p { margin: 0; color: #69716d; line-height: 1.55; }
    .benefit-card.featured p { color: #ffe8ea; }

    .flow-section { color: var(--white); background: var(--ink); }
    .flow-section .lead { color: var(--muted); }
    .flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
    .flow-step { min-height: 260px; padding: 28px; background: var(--ink-2); }
    .flow-index { color: var(--red-bright); font-size: 12px; font-weight: 900; letter-spacing: 2px; }
    .flow-step h3 { margin: 74px 0 12px; font-size: 23px; }
    .flow-step p { margin: 0; color: var(--muted); line-height: 1.55; }
    .principle { display: flex; justify-content: space-between; gap: 30px; margin-top: 18px; padding: 26px 30px; border-left: 4px solid var(--red); background: #1b1f1d; }
    .principle strong { color: var(--lime); white-space: nowrap; }
    .principle span { color: #c3c9c6; line-height: 1.5; }

    .modules { background: var(--white); }
    .module-map {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 290px minmax(0, 1fr);
      grid-template-areas: "left core right";
      gap: 40px;
      align-items: stretch;
    }
    .module-column { display: grid; grid-template-rows: repeat(3, 1fr); gap: 14px; }
    .module-column-left { grid-area: left; }
    .module-column-right { grid-area: right; }
    .module {
      position: relative;
      padding: 23px 24px;
      border: 1px solid #dfe2df;
      border-radius: 18px;
      background: var(--paper);
    }
    .module-column-left .module::after,
    .module-column-right .module::before {
      content: "";
      position: absolute;
      top: 50%;
      width: 40px;
      height: 1px;
      background: #c9cecb;
    }
    .module-column-left .module::after { right: -41px; }
    .module-column-right .module::before { left: -41px; }
    .module-code { color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: 2px; }
    .module h3 { margin: 14px 0 8px; font-size: 20px; }
    .module p { margin: 0; color: var(--muted-dark); line-height: 1.55; }
    .module-core {
      grid-area: core;
      position: relative;
      isolation: isolate;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 520px;
      overflow: hidden;
      padding: 34px 30px;
      border: 8px solid #080909;
      border-radius: 38px;
      color: var(--white);
      background: linear-gradient(160deg, #171a18, #080909);
      box-shadow: 0 28px 65px rgba(10,11,11,.2);
    }
    .module-core::before {
      content: "";
      position: absolute;
      z-index: -1;
      top: 22%;
      left: 50%;
      width: 280px;
      height: 280px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 50%;
      box-shadow: 0 0 0 48px rgba(255,255,255,.035), 0 0 0 96px rgba(215,25,45,.04);
      transform: translateX(-50%);
    }
    .module-core::after {
      content: "";
      position: absolute;
      top: 7px;
      left: 50%;
      width: 72px;
      height: 16px;
      border-radius: 0 0 11px 11px;
      background: #020303;
      transform: translateX(-50%);
    }
    .core-kicker { color: var(--red-bright); font-size: 10px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; }
    .module-core h3 { max-width: 220px; margin: 18px 0 0; font-size: 38px; line-height: 1; letter-spacing: -1.5px; }
    .core-phases { display: grid; gap: 8px; margin: 36px 0; }
    .core-phases span { padding: 12px 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; background: rgba(255,255,255,.06); font-size: 12px; font-weight: 800; }
    .core-phases b { display: inline-block; min-width: 58px; color: var(--lime); font-size: 9px; letter-spacing: 1.2px; }
    .core-note { margin: 0; color: #aeb5b1; font-size: 12px; line-height: 1.5; }

    .case { color: var(--white); background: linear-gradient(135deg, #171a18, #080909); }
    .case .lead { color: var(--muted); }
    .case-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 60px; align-items: center; }
    .real-example-visual { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: start; min-height: 590px; padding: 30px 0; }
    .real-example-visual::before { content: ""; position: absolute; inset: 10% 2% 8%; border: 1px solid rgba(239,38,56,.28); border-radius: 50%; box-shadow: 0 0 0 48px rgba(255,255,255,.025), 0 0 0 96px rgba(215,25,45,.025); }
    .video-phone-card { position: relative; z-index: 1; margin: 0; text-align: center; }
    .video-phone-card-offset { margin-top: 48px; }
    .video-phone { position: relative; overflow: hidden; width: 100%; aspect-ratio: 1320 / 2868; padding: 9px; border: 1px solid rgba(255,255,255,.58); border-radius: 38px; background: #050706; box-shadow: 0 34px 80px rgba(0,0,0,.48); }
    .video-phone::after { content: ""; position: absolute; inset: 9px; z-index: 2; border: 1px solid rgba(255,255,255,.08); border-radius: 29px; pointer-events: none; }
    .video-phone-speaker { position: absolute; z-index: 4; top: 16px; left: 50%; width: 68px; height: 18px; border-radius: 0 0 12px 12px; background: #020303; transform: translateX(-50%); pointer-events: none; }
    .video-phone video { display: block; width: 100%; height: 100%; border: 0; border-radius: 29px; object-fit: contain; background: #000; }
    .video-phone-card figcaption { display: inline-flex; align-items: center; gap: 8px; margin-top: 17px; color: #d9deda; font-size: 12px; font-weight: 800; letter-spacing: .5px; }
    .video-phone-card figcaption::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--red-bright); box-shadow: 0 0 0 4px rgba(239,38,56,.14); }
    .case-visual { position: relative; min-height: 500px; }
    .case-orbit { position: absolute; inset: 28px; border: 1px solid rgba(239,38,56,.35); border-radius: 50%; }
    .case-orbit::before, .case-orbit::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
    .case-orbit::before { inset: 42px; }
    .case-orbit::after { inset: 94px; }
    .case-phone { left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(-2deg); width: 220px; height: 440px; }
    .case-points { display: grid; gap: 12px; margin-top: 34px; }
    .case-point { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 20px 0; border-top: 1px solid var(--line); }
    .case-point b { color: var(--red-bright); font-size: 12px; letter-spacing: 2px; }
    .case-point h3 { margin: 0 0 6px; font-size: 20px; }
    .case-point p { margin: 0; color: var(--muted); line-height: 1.5; }

    .delivery { background: var(--paper); }
    .delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .timeline, .data-card { padding: 36px; border-radius: var(--radius); background: var(--white); }
    .timeline h3, .data-card h3 { margin: 0 0 24px; font-size: 28px; }
    .week { display: grid; grid-template-columns: 92px 1fr; gap: 18px; padding: 18px 0; border-top: 1px solid #e2e4e2; }
    .week b { color: var(--red); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; }
    .week span { color: var(--muted-dark); line-height: 1.45; }
    .data-list { display: grid; gap: 12px; }
    .data-item { padding: 17px 18px; border-radius: 12px; background: var(--paper); }
    .data-item strong { display: block; margin-bottom: 5px; }
    .data-item span { color: var(--muted-dark); font-size: 14px; line-height: 1.45; }

    .product-showcase { color: var(--white); background: #101312; }
    .product-showcase .lead { color: var(--muted); }
    .showcase-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 330px)); justify-content: center; gap: 18px; align-items: stretch; }
    .showcase-card { display: flex; flex-direction: column; min-width: 0; margin: 0; }
    .showcase-card figcaption { display: grid; gap: 7px; padding: 22px 4px 0; }
    .showcase-card figcaption strong { font-size: 17px; }
    .showcase-card figcaption span { color: var(--muted); font-size: 14px; line-height: 1.5; }
    .showcase-frame { flex: 1; min-height: 520px; overflow: hidden; border: 8px solid #050706; border-radius: 34px; color: #111413; background: #f7f8f7; box-shadow: 0 28px 70px rgba(0,0,0,.28); }
    .showcase-status { display: flex; justify-content: space-between; padding: 14px 20px 8px; font-size: 9px; font-weight: 900; }
    .showcase-appbar { display: flex; align-items: center; justify-content: space-between; padding: 13px 18px; border-bottom: 1px solid #e2e5e3; }
    .showcase-mark { color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: 1.2px; }
    .showcase-avatar { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 50%; color: var(--white); background: var(--red); font-size: 9px; font-weight: 900; }
    .showcase-body { padding: 26px 18px; }
    .showcase-overline { color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: 1.4px; }
    .showcase-body h3 { margin: 12px 0 8px; font-size: 27px; line-height: 1; letter-spacing: -.7px; }
    .showcase-body > p { margin: 0; color: #68716d; font-size: 12px; line-height: 1.5; }
    .showcase-progress { height: 7px; margin: 22px 0; overflow: hidden; border-radius: 99px; background: #e1e5e2; }
    .showcase-progress span { display: block; width: 58%; height: 100%; background: var(--lime); }
    .showcase-row { display: grid; grid-template-columns: 28px 1fr 18px; gap: 10px; align-items: center; margin-top: 10px; padding: 15px 12px; border: 1px solid #e0e4e1; border-radius: 13px; background: var(--white); box-shadow: 0 7px 18px rgba(10,11,11,.05); }
    .showcase-row b { color: var(--red); font-size: 10px; }
    .showcase-row span { font-size: 12px; font-weight: 800; }
    .showcase-row small { display: block; margin-top: 4px; color: #7a827e; font-size: 9px; font-weight: 400; }
    .showcase-row em { color: var(--red); font-style: normal; }
    .showcase-frame-dark { color: var(--white); background: linear-gradient(160deg, #202422, #0c0e0d); }
    .showcase-frame-dark .showcase-appbar { border-color: rgba(255,255,255,.1); }
    .showcase-frame-dark .showcase-body > p { color: #aeb5b1; }
    .showcase-live { padding: 5px 7px; border-radius: 6px; color: var(--white); background: var(--red); font-size: 8px; font-weight: 900; }
    .question-card { display: grid; grid-template-columns: 34px 1fr; gap: 12px; margin-top: 12px; padding: 16px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: rgba(255,255,255,.06); }
    .question-card:first-of-type { margin-top: 24px; }
    .question-card b { color: var(--lime); font-size: 16px; }
    .question-card span { font-size: 11px; line-height: 1.45; }
    .showcase-button { width: 100%; margin-top: 16px; padding: 13px; border: 0; border-radius: 10px; color: var(--white); background: var(--red); font: inherit; font-size: 11px; font-weight: 900; }
    .dashboard-frame { flex: 1; min-height: 520px; overflow: hidden; border: 8px solid #050706; border-radius: 34px; color: #101312; background: #f7f8f7; box-shadow: 0 28px 70px rgba(0,0,0,.28); }
    .dashboard-status { padding-bottom: 8px; }
    .dashboard-top { display: flex; justify-content: space-between; padding: 13px 18px; border-bottom: 1px solid #dde1de; color: #6e7772; font-size: 9px; font-weight: 800; }
    .dashboard-body { padding: 26px 18px; }
    .dashboard-title { display: grid; gap: 8px; }
    .dashboard-title span { color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
    .dashboard-title h3 { margin: 8px 0 0; font-size: 28px; }
    .dashboard-title em { color: #79817d; font-size: 9px; font-style: normal; }
    .dashboard-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; margin-top: 22px; }
    .dashboard-stats div { min-width: 0; padding: 12px 9px; border: 1px solid #e0e3e1; border-radius: 13px; background: var(--white); }
    .dashboard-stats span, .dashboard-stats small { display: block; color: #727b76; font-size: 9px; }
    .dashboard-stats b { display: block; margin: 9px 0 6px; font-size: 22px; }
    .dashboard-stats small { color: #5b8c12; }
    .dashboard-chart { display: flex; align-items: flex-end; gap: 6px; height: 170px; margin-top: 22px; padding: 24px 16px 0; border: 1px solid #e0e3e1; border-radius: 14px 14px 0 0; background: linear-gradient(to top, #f1f3f1 1px, transparent 1px); background-size: 100% 34px; }
    .dashboard-chart i { flex: 1; min-width: 5px; border-radius: 5px 5px 0 0; background: var(--red); opacity: .78; }
    .dashboard-chart i:nth-child(1) { height: 22%; } .dashboard-chart i:nth-child(2) { height: 31%; }
    .dashboard-chart i:nth-child(3) { height: 45%; } .dashboard-chart i:nth-child(4) { height: 37%; }
    .dashboard-chart i:nth-child(5) { height: 62%; } .dashboard-chart i:nth-child(6) { height: 88%; }
    .dashboard-chart i:nth-child(7) { height: 74%; } .dashboard-chart i:nth-child(8) { height: 96%; }
    .dashboard-chart i:nth-child(9) { height: 70%; } .dashboard-chart i:nth-child(10) { height: 58%; }
    .dashboard-chart i:nth-child(11) { height: 43%; } .dashboard-chart i:nth-child(12) { height: 29%; }
    .dashboard-legend { display: flex; justify-content: space-between; padding: 10px 4px; color: #828a86; font-size: 8px; }
    .showcase-note { max-width: 840px; margin: 34px 0 0; color: #828a86; font-size: 12px; line-height: 1.55; }

    .final-cta { padding: 100px 0; color: var(--white); background: var(--red); text-align: center; }
    .final-cta h2 { max-width: 850px; margin: 0 auto; }
    .final-cta p { max-width: 620px; margin: 22px auto 32px; color: #ffe5e8; font-size: 18px; line-height: 1.55; }
    .final-cta .btn { background: var(--white); color: #a70d1d; }
    .kicker-light { color: #ffd4d8; }

    footer { padding: 30px 0; color: #969d99; background: #050706; font-size: 13px; }
    footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    footer a { color: #f26a77; text-decoration: none; }
    .footer-brand { color: var(--white); }

    .cookie-banner { position: fixed; z-index: 100; right: 24px; bottom: 24px; left: 24px; display: flex; align-items: center; justify-content: space-between; gap: 30px; max-width: 1120px; margin: 0 auto; padding: 20px 22px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; color: var(--white); background: rgba(10,11,11,.97); box-shadow: 0 22px 70px rgba(0,0,0,.4); }
    .cookie-banner[hidden], .cookie-settings[hidden] { display: none; }
    .cookie-copy { max-width: 680px; }
    .cookie-copy strong { font-size: 16px; }
    .cookie-copy p { margin: 7px 0 0; color: #b9c0bc; font-size: 12px; line-height: 1.5; }
    .cookie-actions { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
    .cookie-actions button, .cookie-save { min-height: 42px; padding: 0 14px; border-radius: 9px; font: inherit; font-size: 12px; font-weight: 800; cursor: pointer; }
    .cookie-link { border: 0; color: #d9deda; background: transparent; text-decoration: underline; }
    .cookie-secondary { border: 1px solid rgba(255,255,255,.24); color: var(--white); background: transparent; }
    .cookie-primary { border: 1px solid var(--red); color: var(--white); background: var(--red); }
    .cookie-settings { position: fixed; z-index: 110; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(3,4,4,.76); }
    .cookie-settings-card { width: min(560px, 100%); padding: 30px; border-radius: 20px; background: var(--white); box-shadow: 0 30px 90px rgba(0,0,0,.4); }
    .cookie-settings-card h2 { font-size: 38px; }
    .cookie-option { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 14px; padding: 18px; border: 1px solid #e0e3e1; border-radius: 12px; }
    .cookie-option strong, .cookie-option span { display: block; }
    .cookie-option > div > span, .cookie-option > span > span { margin-top: 5px; color: var(--muted-dark); font-size: 12px; line-height: 1.45; }
    .cookie-required { color: var(--red); font-size: 10px; font-weight: 900; white-space: nowrap; }
    .cookie-option input { width: 22px; height: 22px; accent-color: var(--red); }
    .cookie-save { width: 100%; margin-top: 18px; }

    @media (max-width: 900px) {
      .nav a:not(.btn) { display: none; }
      .hero-grid, .case-grid, .delivery-grid { grid-template-columns: 1fr; }
      .real-example-visual { width: min(560px, 100%); min-height: 0; margin: 0 auto; }
      .showcase-grid { grid-template-columns: repeat(2, minmax(0, 330px)); }
      .hero-grid { padding-top: 150px; }
      .device-stage { min-height: 560px; }
      .phone-a { left: 18%; }
      .phone-b { right: 16%; }
      .benefit-grid { grid-template-columns: 1fr 1fr; }
      .module-map { grid-template-columns: 1fr 1fr; grid-template-areas: "core core" "left right"; gap: 22px; }
      .module-core { width: 290px; min-height: 360px; justify-self: center; }
      .module-column-left .module::after, .module-column-right .module::before { display: none; }
      .flow { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 620px) {
      .wrap { width: min(100% - 32px, var(--max)); }
      .topbar { padding-top: 20px; }
      .brand-logo { width: 100px; }
      .nav .btn { min-height: 44px; padding: 0 15px; font-size: 13px; }
      .hero { min-height: auto; }
      .hero-grid { min-height: auto; gap: 30px; padding: 120px 0 92px; }
      h1 { font-size: clamp(48px, 15vw, 70px); letter-spacing: -3px; }
      .hero-copy { font-size: 17px; }
      .value-claim { grid-template-columns: 1fr; gap: 11px; }
      .value-versus { width: 100%; padding: 1px 0; }
      .actions .btn { width: 100%; flex: 1 1 100%; }
      .device-stage { min-height: 450px; }
      .phone { width: 178px; height: 356px; border-radius: 31px; }
      .screen { border-radius: 23px; }
      .phone-a { left: 2%; top: 62px; }
      .phone-b { right: 2%; top: 18px; }
      .float-stat { right: 0; bottom: 4px; width: 174px; }
      section { padding: 76px 0; }
      .section-head { grid-template-columns: 1fr; }
      h2 { font-size: 42px; letter-spacing: -1.7px; }
      .benefit-grid, .flow { grid-template-columns: 1fr; }
      .showcase-grid { grid-template-columns: minmax(0, 330px); }
      .showcase-frame, .dashboard-frame { min-height: 470px; }
      .dashboard-chart { height: 150px; }
      .module-map { grid-template-columns: 1fr; grid-template-areas: "core" "left" "right"; }
      .module-core { width: min(100%, 290px); min-height: 330px; }
      .flow-step { min-height: 210px; }
      .flow-step h3 { margin-top: 42px; }
      .principle { flex-direction: column; }
      .case-visual { min-height: 430px; }
      .real-example-visual { gap: 10px; padding: 10px 0 30px; }
      .video-phone-card-offset { margin-top: 28px; }
      .video-phone { padding: 6px; border-radius: 28px; }
      .video-phone::after { inset: 6px; border-radius: 22px; }
      .video-phone video { border-radius: 22px; }
      .video-phone-speaker { top: 11px; width: 48px; height: 13px; }
      .video-phone-card figcaption { font-size: 10px; }
      footer .wrap { flex-direction: column; align-items: flex-start; }
      .cookie-banner { right: 12px; bottom: 12px; left: 12px; align-items: stretch; flex-direction: column; gap: 16px; padding: 18px; }
      .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
      .cookie-link { grid-column: 1 / -1; }
      .cookie-settings-card { padding: 23px; }
      .cookie-settings-card h2 { font-size: 32px; }
      .cookie-option { align-items: flex-start; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .btn { transition: none; }
      .scroll-cue i::after { animation: none; }
    }
