
    :root {
      color-scheme: light;
      --bg: #f4f6f3;
      --surface: #ffffff;
      --surface-soft: #edf1ec;
      --surface-tint: #e8f4f0;
      --ink: #17201d;
      --muted: #68746f;
      --faint: #8a9691;
      --line: #dce3df;
      --brand: #096b61;
      --brand-deep: #07564e;
      --brand-soft: #d8f0eb;
      --accent: #ff775f;
      --accent-soft: #ffe4de;
      --white-ink: #effffa;
      --shadow-sm: 0 8px 24px rgba(23, 32, 29, .06);
      --shadow-md: 0 18px 55px rgba(14, 48, 39, .13);
      --shadow-lg: 0 35px 90px rgba(8, 44, 35, .18);
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 30px;
      --max: 1180px;
      --grid: rgba(9, 107, 97, .075);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    [data-theme="dark"] {
      color-scheme: dark;
      --bg: #101513;
      --surface: #18201d;
      --surface-soft: #202b27;
      --surface-tint: #122f2a;
      --ink: #edf5f1;
      --muted: #a7b5af;
      --faint: #81918a;
      --line: #31403a;
      --brand: #48c7b5;
      --brand-deep: #77d8ca;
      --brand-soft: #153f38;
      --accent: #ff8d78;
      --accent-soft: #4a2722;
      --white-ink: #effffa;
      --shadow-sm: 0 8px 24px rgba(0, 0, 0, .18);
      --shadow-md: 0 18px 55px rgba(0, 0, 0, .28);
      --shadow-lg: 0 35px 90px rgba(0, 0, 0, .42);
      --grid: rgba(72, 199, 181, .08);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { margin: 0; min-width: 320px; background: var(--bg); color: var(--ink); }
    body, button, a { -webkit-font-smoothing: antialiased; }
    a { color: inherit; }
    button, a { font: inherit; }
    button { color: inherit; }
    .site-shell { overflow: hidden; }
    .container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

    .site-header {
      position: relative;
      z-index: 20;
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: min(var(--max), calc(100% - 48px));
      margin: 0 auto;
    }
    .brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-size: 16px; font-weight: 850; letter-spacing: -.035em; }
    .brand-mark { width: 34px; height: 34px; flex: 0 0 34px; border-radius: 11px; overflow: hidden; box-shadow: inset 0 -7px 14px rgba(0,0,0,.12); }
    .brand-mark svg { width: 100%; height: 100%; display: block; }
    .site-nav { display: flex; align-items: center; gap: 25px; margin-left: auto; margin-right: 27px; }
    .site-nav a { color: var(--muted); font-size: 12px; font-weight: 760; text-decoration: none; }
    .site-nav a:hover { color: var(--brand); }
    .header-actions { display: flex; align-items: center; gap: 8px; }
    .theme-toggle, .menu-toggle { border: 1px solid var(--line); background: var(--surface); width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; cursor: pointer; }
    .theme-toggle:hover, .menu-toggle:hover { border-color: var(--brand); color: var(--brand); }
    .theme-toggle svg, .menu-toggle svg { width: 17px; height: 17px; }
    .menu-toggle { display: none; }

    .button { min-height: 46px; padding: 0 17px; border: 1px solid var(--line); border-radius: 13px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-size: 12px; font-weight: 820; text-decoration: none; cursor: pointer; transition: transform .17s ease, box-shadow .17s ease, border-color .17s ease, background .17s ease; }
    .button:hover { transform: translateY(-2px); border-color: var(--brand); box-shadow: var(--shadow-sm); }
    .button:active { transform: translateY(0); }
    .button svg { width: 16px; height: 16px; }
    .button-primary { color: #fff; background: var(--brand); border-color: var(--brand); box-shadow: 0 9px 22px rgba(9, 107, 97, .22); }
    [data-theme="dark"] .button-primary { color: #08201b; }
    .button-primary:hover { background: var(--brand-deep); border-color: var(--brand-deep); box-shadow: 0 13px 28px rgba(9, 107, 97, .30); }
    .button-secondary { color: var(--ink); background: var(--surface); }
    .button-quiet { min-height: 38px; padding: 0 13px; font-size: 11px; background: transparent; }
    .install-button { min-height: 38px; padding: 0 13px; font-size: 11px; background: var(--accent); color: #2b1814; border-color: var(--accent); box-shadow: 0 8px 19px rgba(255, 119, 95, .20); }
    .install-button:hover { border-color: var(--accent); background: #ff8c78; }

    .hero-wrap { position: relative; isolation: isolate; }
    .hero-wrap::before { content: ""; position: absolute; z-index: -1; inset: -40px 0 auto; height: 700px; background: radial-gradient(circle at 74% 26%, rgba(255,119,95,.16), transparent 28%), radial-gradient(circle at 43% 8%, rgba(9,107,97,.10), transparent 38%); pointer-events: none; }
    .hero { min-height: 650px; padding: 73px 0 88px; display: grid; grid-template-columns: minmax(0, .93fr) minmax(500px, 1.07fr); align-items: center; gap: 55px; }
    .eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 17px; color: var(--brand); font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
    .eyebrow::before { content: ""; width: 21px; height: 2px; border-radius: 4px; background: var(--accent); }
    .hero h1 { max-width: 560px; margin: 0; font-size: clamp(44px, 5.3vw, 73px); line-height: .98; letter-spacing: -.075em; }
    .hero h1 em { color: var(--brand); font-style: normal; }
    .hero-copy > p:not(.eyebrow) { max-width: 540px; margin: 25px 0 25px; color: var(--muted); font-size: 16px; line-height: 1.7; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 9px; }
    .trust-row { display: flex; flex-wrap: wrap; gap: 17px; margin-top: 24px; color: var(--muted); font-size: 10px; font-weight: 760; }
    .trust-row span { display: inline-flex; align-items: center; gap: 6px; }
    .trust-row i { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }

    .hero-visual { min-height: 490px; position: relative; display: grid; place-items: center; }
    .hero-visual::before { content: ""; position: absolute; width: 430px; height: 430px; border-radius: 50%; background: var(--brand-soft); opacity: .7; filter: blur(1px); }
    .hero-orbit { position: absolute; inset: 6% 2% 7%; border: 1px dashed color-mix(in srgb, var(--brand) 25%, transparent); border-radius: 50%; transform: rotate(-12deg); }
    .hero-orbit::after { content: ""; position: absolute; top: 10%; right: 14%; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 7px color-mix(in srgb, var(--accent) 18%, transparent); }

    .browser-window { position: relative; z-index: 2; width: min(560px, 100%); border: 1px solid color-mix(in srgb, var(--ink) 13%, var(--line)); border-radius: 19px; background: var(--surface); box-shadow: var(--shadow-lg); transform: rotate(2deg); }
    .browser-top { height: 44px; padding: 0 13px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--line); background: var(--surface); border-radius: 19px 19px 0 0; }
    .browser-dots { display: flex; gap: 5px; }
    .browser-dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--line); }
    .browser-dots i:first-child { background: var(--accent); }
    .address-bar { height: 24px; flex: 1; max-width: 285px; margin-left: 9px; padding: 0 11px; display: flex; align-items: center; gap: 6px; border-radius: 7px; background: var(--surface-soft); color: var(--faint); font: 9px ui-monospace, SFMono-Regular, Menlo, monospace; }
    .address-bar svg { width: 11px; height: 11px; color: var(--brand); }
    .browser-action { margin-left: auto; width: 19px; height: 19px; border-radius: 6px; background: var(--surface-soft); }
    .browser-content { position: relative; min-height: 390px; padding: 21px 25px 23px; overflow: hidden; background: linear-gradient(140deg, var(--surface) 0%, var(--surface-tint) 100%); border-radius: 0 0 19px 19px; }
    .browser-content::before { content: ""; position: absolute; top: 0; right: 0; width: 130px; height: 130px; background: var(--accent); opacity: .11; clip-path: polygon(100% 0, 100% 100%, 0 0); }
    .mock-site-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 27px; }
    .mock-word { width: 84px; height: 8px; border-radius: 4px; background: var(--brand); }
    .mock-nav-links { display: flex; gap: 11px; }
    .mock-nav-links i { width: 25px; height: 5px; border-radius: 4px; background: var(--line); }
    .mock-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 21px; align-items: center; }
    .mock-copy .line { height: 8px; margin: 8px 0; border-radius: 5px; background: var(--line); }
    .mock-copy .line.title { width: 92%; height: 15px; background: var(--brand); }
    .mock-copy .line.title.short { width: 65%; background: var(--brand); }
    .mock-copy .line.copy { width: 78%; height: 5px; }
    .mock-copy .line.copy.short { width: 57%; }
    .mock-cta { width: 76px; height: 20px; margin-top: 18px; border-radius: 7px; background: var(--accent); }
    .mock-image { height: 130px; border-radius: 12px; background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 80%, white), color-mix(in srgb, var(--accent) 55%, var(--surface))); box-shadow: inset 0 0 0 1px rgba(255,255,255,.23); }
    .mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 29px; }
    .mock-grid div { height: 77px; border-radius: 9px; background: color-mix(in srgb, var(--surface) 75%, var(--brand)); border: 1px solid color-mix(in srgb, var(--brand) 12%, var(--line)); }
    .scan-line { position: absolute; z-index: 4; left: 13%; right: 9%; top: 54%; height: 4px; border-radius: 4px; background: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 10%, transparent), 0 0 22px rgba(255, 119, 95, .55); animation: scan 4.4s ease-in-out infinite; }
    @keyframes scan { 0%, 100% { top: 34%; } 50% { top: 79%; } }
    .scan-label { position: absolute; z-index: 5; top: 34%; right: 8%; transform: translateY(-50%) rotate(-2deg); padding: 8px 10px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); box-shadow: var(--shadow-sm); color: var(--brand); font: 800 9px ui-monospace, SFMono-Regular, Menlo, monospace; }
    .local-chip { position: absolute; z-index: 5; left: -22px; bottom: 31px; display: flex; align-items: center; gap: 8px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); box-shadow: var(--shadow-md); color: var(--ink); font-size: 10px; font-weight: 820; transform: rotate(-5deg); }
    .local-chip span { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft); }
    .floating-tool { position: absolute; z-index: 5; right: -17px; top: 25%; width: 39px; height: 120px; display: grid; place-items: center; gap: 4px; padding: 8px 0; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); box-shadow: var(--shadow-md); transform: rotate(5deg); }
    .floating-tool i { width: 19px; height: 19px; display: grid; place-items: center; border-radius: 6px; color: var(--muted); }
    .floating-tool i.active { color: var(--brand); background: var(--brand-soft); }
    .floating-tool svg { width: 13px; height: 13px; }

    .proof-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
    .proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
    .proof-item { min-height: 94px; padding: 21px 24px; display: flex; align-items: center; gap: 13px; border-right: 1px solid var(--line); }
    .proof-item:last-child { border-right: 0; }
    .proof-icon { width: 35px; height: 35px; flex: 0 0 35px; display: grid; place-items: center; border-radius: 11px; background: var(--brand-soft); color: var(--brand); }
    .proof-icon svg { width: 17px; height: 17px; }
    .proof-item strong { display: block; font-size: 11px; }
    .proof-item span { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; line-height: 1.4; }

    .section { padding: 115px 0; }
    .section-heading { max-width: 640px; margin-bottom: 42px; }
    .section-heading h2 { margin: 0; font-size: clamp(31px, 4vw, 49px); line-height: 1.02; letter-spacing: -.065em; }
    .section-heading p:not(.eyebrow) { margin: 18px 0 0; color: var(--muted); font-size: 14px; line-height: 1.72; }
    .section-heading.center { max-width: 670px; margin-left: auto; margin-right: auto; text-align: center; }
    .section-heading.center .eyebrow { justify-content: center; }
    .section-heading.center .eyebrow::before { display: none; }

    .feature-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 21px; }
    .feature-tab { min-height: 38px; padding: 0 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); color: var(--muted); cursor: pointer; font-size: 11px; font-weight: 800; }
    .feature-tab:hover, .feature-tab.active { color: var(--brand); border-color: color-mix(in srgb, var(--brand) 46%, var(--line)); background: var(--brand-soft); }
    .feature-panel { min-height: 375px; display: grid; grid-template-columns: .8fr 1.2fr; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-sm); }
    .feature-copy { padding: 40px 42px; display: flex; flex-direction: column; justify-content: center; }
    .feature-copy .number { color: var(--accent); font: 900 11px ui-monospace, SFMono-Regular, Menlo, monospace; }
    .feature-copy h3 { margin: 17px 0 10px; font-size: 28px; letter-spacing: -.05em; }
    .feature-copy p { max-width: 340px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.68; }
    .feature-copy .mini-points { display: grid; gap: 8px; margin: 23px 0 0; padding: 0; list-style: none; }
    .mini-points li { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 760; }
    .mini-points i { width: 16px; height: 16px; display: grid; place-items: center; border-radius: 50%; background: var(--brand-soft); color: var(--brand); }
    .mini-points svg { width: 10px; height: 10px; }
    .feature-visual { position: relative; min-height: 375px; padding: 24px; display: grid; place-items: center; background: var(--surface-tint); border-left: 1px solid var(--line); overflow: hidden; }
    .feature-visual::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px); background-size: 22px 22px; mask-image: linear-gradient(to bottom right, black, transparent 80%); }
    .capture-demo { position: relative; z-index: 1; width: min(500px, 95%); min-height: 280px; padding: 16px 18px 20px; border: 1px solid color-mix(in srgb, var(--ink) 12%, var(--line)); border-radius: 15px; background: var(--surface); box-shadow: var(--shadow-md); }
    .demo-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
    .demo-brand { display: flex; align-items: center; gap: 7px; color: var(--brand); font-size: 10px; font-weight: 900; }
    .demo-brand .mini-mark { width: 19px; height: 19px; border-radius: 6px; background: var(--brand); position: relative; }
    .demo-brand .mini-mark::before { content: ""; position: absolute; top: 5px; left: 5px; width: 9px; height: 2px; border-radius: 2px; background: var(--white-ink); box-shadow: 0 4px 0 var(--white-ink), 0 8px 0 var(--white-ink); }
    .demo-brand .mini-mark::after { content: ""; position: absolute; top: 3px; left: 5px; width: 3px; height: 13px; background: var(--accent); }
    .demo-status { display: flex; align-items: center; gap: 5px; color: var(--brand); font: 700 9px ui-monospace, monospace; }
    .demo-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
    .demo-body { display: grid; grid-template-columns: 1fr 1.06fr; gap: 18px; padding-top: 20px; }
    .demo-text .line { height: 7px; margin: 9px 0; border-radius: 5px; background: var(--line); }
    .demo-text .line:first-child { width: 87%; height: 11px; background: var(--brand); }
    .demo-text .line:nth-child(2) { width: 68%; height: 11px; background: var(--brand); }
    .demo-text .line:nth-child(4) { width: 72%; }
    .demo-text .line:nth-child(5) { width: 51%; }
    .demo-card { height: 160px; padding: 15px; border-radius: 11px; background: linear-gradient(145deg, var(--brand-soft), var(--accent-soft)); border: 1px solid color-mix(in srgb, var(--brand) 14%, var(--line)); }
    .demo-card::before { content: ""; display: block; width: 61%; height: 7px; margin-bottom: 23px; border-radius: 4px; background: var(--brand); opacity: .72; }
    .demo-card::after { content: ""; display: block; width: 100%; height: 70px; border-radius: 8px; background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 35%, transparent), color-mix(in srgb, var(--accent) 42%, transparent)); }
    .demo-footer { display: flex; gap: 6px; margin-top: 17px; }
    .demo-footer i { height: 6px; flex: 1; border-radius: 3px; background: var(--line); }
    .demo-footer i:first-child { background: var(--accent); }
    .selection-box { position: absolute; z-index: 2; left: 47%; top: 53%; width: 39%; height: 31%; border: 2px solid var(--accent); border-radius: 6px; box-shadow: 0 0 0 999px rgba(23,32,29,.10); }
    .selection-box::after { content: "selected area"; position: absolute; right: -2px; top: -26px; padding: 5px 7px; border-radius: 6px 6px 0 0; background: var(--accent); color: #2b1814; font: 800 8px ui-monospace, monospace; }

    .split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
    .editor-card { min-height: 435px; position: relative; padding: 17px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface-soft); box-shadow: var(--shadow-md); }
    .editor-window { height: 400px; display: grid; grid-template-rows: 42px 46px 1fr 27px; overflow: hidden; border: 1px solid color-mix(in srgb, var(--ink) 12%, var(--line)); border-radius: 14px; background: var(--surface); }
    .editor-topline, .editor-toolbar, .editor-status { display: flex; align-items: center; border-bottom: 1px solid var(--line); }
    .editor-topline { padding: 0 12px; gap: 9px; }
    .editor-topline .mini-mark { width: 23px; height: 23px; border-radius: 7px; background: var(--brand); position: relative; }
    .editor-topline .mini-mark::after { content: ""; position: absolute; left: 7px; top: 4px; width: 3px; height: 15px; background: var(--accent); }
    .editor-topline .mini-mark::before { content: ""; position: absolute; left: 7px; top: 6px; width: 9px; height: 2px; background: var(--white-ink); box-shadow: 0 4px 0 var(--white-ink), 0 8px 0 var(--white-ink); }
    .editor-doc { display: flex; flex-direction: column; gap: 3px; }
    .editor-doc strong { font-size: 9px; }
    .editor-doc span { color: var(--muted); font: 8px ui-monospace, monospace; }
    .editor-topline .export-chip { margin-left: auto; padding: 7px 9px; border-radius: 7px; background: var(--brand); color: #fff; font-size: 8px; font-weight: 850; }
    [data-theme="dark"] .editor-topline .export-chip { color: #08201b; }
    .editor-toolbar { padding: 0 10px; gap: 5px; }
    .editor-toolbar i { width: 25px; height: 30px; display: grid; place-items: center; border-radius: 6px; color: var(--muted); }
    .editor-toolbar i.active { color: var(--brand); background: var(--brand-soft); }
    .editor-toolbar i svg { width: 14px; height: 14px; }
    .editor-toolbar .divider { width: 1px; height: 23px; margin: 0 5px; background: var(--line); }
    .editor-toolbar .undo { margin-left: auto; }
    .editor-workspace { position: relative; padding: 22px; display: grid; place-items: start center; overflow: hidden; background: repeating-conic-gradient(color-mix(in srgb, var(--line) 26%, transparent) 0 25%, transparent 0 50%) 50% / 16px 16px; }
    .editor-page { position: relative; width: 218px; height: 304px; padding: 23px; background: #fff; box-shadow: 0 13px 27px rgba(0,0,0,.18); }
    .editor-page .ep-line { height: 5px; margin: 8px 0; border-radius: 4px; background: #d6e0dc; }
    .editor-page .ep-line:first-child { width: 64%; height: 8px; margin-bottom: 17px; background: #096b61; }
    .editor-page .ep-line:nth-child(3) { width: 76%; }
    .editor-page .ep-image { height: 78px; margin-top: 20px; border-radius: 6px; background: linear-gradient(135deg, #d8f0eb, #ffe4de); }
    .annotation-arrow { position: absolute; top: 115px; left: 90px; width: 74px; height: 44px; border-top: 3px solid #ff775f; transform: rotate(-19deg); }
    .annotation-arrow::after { content: ""; position: absolute; top: -8px; left: -1px; width: 13px; height: 13px; border-top: 3px solid #ff775f; border-left: 3px solid #ff775f; transform: rotate(-33deg); }
    .annotation-box { position: absolute; right: 29px; bottom: 71px; width: 89px; height: 45px; border: 2px solid #ff775f; border-radius: 4px; }
    .editor-status { padding: 0 10px; color: var(--muted); font: 8px ui-monospace, monospace; border: 0; }
    .editor-status span:last-child { margin-left: auto; }
    .copy h2 { margin: 0; font-size: clamp(31px, 4vw, 48px); line-height: 1.02; letter-spacing: -.065em; }
    .copy > p:not(.eyebrow) { margin: 19px 0 22px; color: var(--muted); font-size: 14px; line-height: 1.72; }
    .copy-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
    .copy-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink); font-size: 12px; line-height: 1.5; font-weight: 720; }
    .copy-list li i { width: 21px; height: 21px; flex: 0 0 21px; display: grid; place-items: center; border-radius: 7px; background: var(--brand-soft); color: var(--brand); }
    .copy-list svg { width: 12px; height: 12px; }
    .privacy-section { position: relative; padding: 92px 0; color: var(--white-ink); background: var(--brand-deep); }
    .privacy-section::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(239,255,250,.8) 1px, transparent 1px), linear-gradient(90deg, rgba(239,255,250,.8) 1px, transparent 1px); background-size: 32px 32px; mask-image: linear-gradient(to bottom right, black, transparent 72%); }
    .privacy-grid { position: relative; display: grid; grid-template-columns: 1.04fr .96fr; gap: 80px; align-items: center; }
    .privacy-section .eyebrow { color: #a8f2e6; }
    .privacy-section .eyebrow::before { background: var(--accent); }
    .privacy-section h2 { max-width: 590px; margin: 0; font-size: clamp(35px, 4.5vw, 58px); line-height: .99; letter-spacing: -.07em; }
    .privacy-section p:not(.eyebrow) { max-width: 575px; margin: 21px 0 0; color: rgba(239,255,250,.71); font-size: 14px; line-height: 1.75; }
    .privacy-section .button-secondary { margin-top: 27px; border-color: rgba(239,255,250,.18); background: rgba(255,255,255,.09); color: var(--white-ink); }
    .privacy-panel { position: relative; padding: 25px; border: 1px solid rgba(239,255,250,.18); border-radius: 22px; background: rgba(5,51,45,.38); backdrop-filter: blur(10px); }
    .privacy-panel-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 17px; border-bottom: 1px solid rgba(239,255,250,.15); }
    .privacy-panel-head strong { font-size: 12px; }
    .privacy-panel-head span { display: inline-flex; align-items: center; gap: 6px; color: #a8f2e6; font: 800 9px ui-monospace, monospace; }
    .privacy-panel-head i { width: 6px; height: 6px; border-radius: 50%; background: #8be5d8; box-shadow: 0 0 0 4px rgba(139,229,216,.13); }
    .data-flow { display: grid; gap: 12px; padding: 22px 0 6px; }
    .flow-row { display: grid; grid-template-columns: 31px 1fr auto; align-items: center; gap: 10px; }
    .flow-icon { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid rgba(239,255,250,.16); border-radius: 9px; color: #a8f2e6; }
    .flow-icon svg { width: 15px; height: 15px; }
    .flow-row strong { display: block; font-size: 10px; }
    .flow-row small { display: block; margin-top: 2px; color: rgba(239,255,250,.53); font-size: 9px; }
    .flow-status { padding: 5px 7px; border-radius: 6px; background: rgba(139,229,216,.12); color: #a8f2e6; font: 800 8px ui-monospace, monospace; }
    .flow-status.blocked { color: #ffb3a5; background: rgba(255,119,95,.12); }
    .flow-connector { width: 1px; height: 12px; margin-left: 15px; background: rgba(239,255,250,.18); }

    .how-section { background: var(--surface); }
    .timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .timeline-card { position: relative; min-height: 230px; padding: 25px; border: 1px solid var(--line); border-radius: 19px; background: var(--surface); }
    .timeline-card::after { content: ""; position: absolute; top: 38px; right: -20px; width: 22px; height: 1px; background: var(--line); }
    .timeline-card:last-child::after { display: none; }
    .timeline-no { color: var(--accent); font: 900 11px ui-monospace, monospace; }
    .timeline-card h3 { margin: 32px 0 8px; font-size: 16px; letter-spacing: -.025em; }
    .timeline-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
    .timeline-icon { position: absolute; top: 22px; right: 21px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; color: var(--brand); background: var(--brand-soft); }
    .timeline-icon svg { width: 16px; height: 16px; }

    .exports-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
    .export-card { padding: 27px; border: 1px solid var(--line); border-radius: 19px; background: var(--surface); }
    .export-icon { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 13px; color: var(--brand); background: var(--brand-soft); }
    .export-icon svg { width: 21px; height: 21px; }
    .export-card h3 { margin: 22px 0 7px; font-size: 16px; }
    .export-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
    .export-tag { display: inline-block; margin-top: 18px; padding: 5px 7px; border-radius: 6px; color: var(--brand); background: var(--brand-soft); font: 800 9px ui-monospace, monospace; }

    .use-cases { display: grid; grid-template-columns: 1.1fr .9fr; gap: 17px; }
    .use-card { min-height: 240px; padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
    .use-card.large { grid-row: span 2; min-height: 498px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; background: linear-gradient(155deg, var(--surface), var(--surface-tint)); }
    .use-card h3 { margin: 18px 0 8px; font-size: 19px; letter-spacing: -.035em; }
    .use-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
    .use-card .use-mark { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 13px; color: var(--brand); background: var(--brand-soft); }
    .use-card .use-mark svg { width: 21px; height: 21px; }
    .mini-webpage { width: 74%; margin: 34px auto -80px; padding: 14px; border: 1px solid var(--line); border-bottom: 0; border-radius: 14px 14px 0 0; background: var(--surface); box-shadow: var(--shadow-md); transform: rotate(-3deg); }
    .mini-webpage .mw-head { width: 42%; height: 7px; margin-bottom: 15px; border-radius: 4px; background: var(--brand); }
    .mini-webpage .mw-line { height: 5px; margin: 7px 0; border-radius: 4px; background: var(--line); }
    .mini-webpage .mw-line.short { width: 63%; }
    .mini-webpage .mw-image { height: 76px; margin-top: 15px; border-radius: 7px; background: linear-gradient(135deg, var(--brand-soft), var(--accent-soft)); }
    .mini-webpage .mw-note { position: relative; width: 61%; height: 35px; margin: -20px 0 0 23px; border: 2px solid var(--accent); border-radius: 5px; background: color-mix(in srgb, var(--accent-soft) 55%, transparent); }
    .browser-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 23px; }
    .browser-badge { display: inline-flex; align-items: center; gap: 6px; min-height: 31px; padding: 0 9px; border: 1px solid var(--line); border-radius: 8px; color: var(--muted); background: var(--surface); font-size: 10px; font-weight: 780; }
    .browser-badge.primary { color: var(--brand); border-color: color-mix(in srgb, var(--brand) 27%, var(--line)); background: var(--brand-soft); }
    .browser-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
    .browser-badge.primary .browser-dot { background: var(--brand); }
    .browser-badge.soon .browser-dot { background: var(--accent); }

    .faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
    .faq-intro h2 { max-width: 330px; margin: 0; font-size: 42px; line-height: 1; letter-spacing: -.06em; }
    .faq-intro p:not(.eyebrow) { max-width: 310px; margin: 17px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
    .faq-list { border-top: 1px solid var(--line); }
    details { border-bottom: 1px solid var(--line); }
    summary { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: 13px; font-weight: 780; }
    summary::-webkit-details-marker { display: none; }
    summary::after { content: "+"; color: var(--brand); font-size: 21px; font-weight: 400; }
    details[open] summary::after { content: "−"; }
    details p { max-width: 620px; margin: -4px 42px 19px 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

    .cta-section { padding: 84px 0 93px; }
    .cta-panel { position: relative; overflow: hidden; min-height: 264px; padding: 47px 52px; border-radius: 26px; background: var(--brand); color: var(--white-ink); }
    .cta-panel::before { content: ""; position: absolute; right: -53px; top: -98px; width: 310px; height: 310px; border-radius: 50%; border: 1px solid rgba(239,255,250,.18); box-shadow: 0 0 0 26px rgba(239,255,250,.04), 0 0 0 52px rgba(239,255,250,.04); }
    .cta-panel::after { content: ""; position: absolute; left: 43%; bottom: -100px; width: 180px; height: 180px; border-radius: 50%; background: var(--accent); opacity: .18; }
    .cta-panel > * { position: relative; z-index: 1; }
    .cta-panel h2 { max-width: 610px; margin: 0; font-size: clamp(33px, 4.4vw, 55px); line-height: .99; letter-spacing: -.07em; }
    .cta-panel p { max-width: 530px; margin: 17px 0 24px; color: rgba(239,255,250,.70); font-size: 13px; line-height: 1.65; }
    .cta-panel .button-secondary { background: var(--white-ink); border-color: var(--white-ink); color: var(--brand-deep); }
    .cta-note { display: inline-flex; align-items: center; gap: 7px; margin-left: 12px; color: rgba(239,255,250,.66); font-size: 10px; font-weight: 720; }
    .cta-note i { width: 6px; height: 6px; border-radius: 50%; background: #a8f2e6; }

    footer { border-top: 1px solid var(--line); }
    .footer-main { min-height: 125px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
    .footer-brand p { margin: 10px 0 0; color: var(--muted); font-size: 10px; }
    .footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
    .footer-links a { color: var(--muted); font-size: 10px; font-weight: 760; text-decoration: none; }
    .footer-links a:hover { color: var(--brand); }
    .footer-bottom { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: var(--faint); font-size: 9px; }
    .preview-note { color: var(--brand); font: 800 9px ui-monospace, monospace; }

    @media (max-width: 980px) {
      .site-nav { gap: 15px; margin-right: 15px; }
      .hero { grid-template-columns: 1fr; gap: 32px; padding-top: 55px; }
      .hero-copy { max-width: 680px; }
      .hero-visual { width: min(610px, 100%); margin: 0 auto; }
      .feature-panel { grid-template-columns: 1fr; }
      .feature-visual { min-height: 340px; border-left: 0; border-top: 1px solid var(--line); }
      .split-section, .privacy-grid, .faq-grid { grid-template-columns: 1fr; gap: 44px; }
      .privacy-grid { gap: 30px; }
      .faq-intro h2, .faq-intro p:not(.eyebrow) { max-width: 620px; }
    }
    @media (max-width: 720px) {
      .container, .site-header { width: min(var(--max), calc(100% - 32px)); }
      .site-header { height: 66px; }
      .site-nav { display: none; position: absolute; top: 59px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; padding: 7px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: var(--shadow-md); }
      .site-nav.open { display: flex; }
      .site-nav a { padding: 11px 12px; }
      .menu-toggle { display: grid; }
      .install-button { display: none; }
      .proof-grid { grid-template-columns: 1fr 1fr; }
      .proof-item:nth-child(2) { border-right: 0; }
      .proof-item:nth-child(n+3) { border-top: 1px solid var(--line); }
      .proof-item:nth-child(3) { border-right: 1px solid var(--line); }
      .section { padding: 82px 0; }
      .timeline, .exports-grid { grid-template-columns: 1fr; }
      .timeline-card::after { display: none; }
      .use-cases { grid-template-columns: 1fr; }
      .use-card.large { grid-row: auto; min-height: 410px; }
      .cta-panel { padding: 36px 27px; }
      .cta-note { display: flex; margin: 12px 0 0; }
      .footer-main, .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 22px 0; }
    }
    @media (max-width: 520px) {
      .hero { padding: 42px 0 68px; }
      .hero h1 { font-size: 44px; }
      .hero-copy > p:not(.eyebrow) { font-size: 14px; }
      .hero-visual { min-height: 370px; }
      .hero-visual::before { width: 300px; height: 300px; }
      .browser-window { transform: rotate(1.4deg) scale(.94); }
      .floating-tool { right: -4px; }
      .local-chip { left: -1px; bottom: 5px; }
      .feature-copy { padding: 29px 25px; }
      .feature-copy h3 { font-size: 25px; }
      .feature-visual { padding: 16px; min-height: 300px; }
      .capture-demo { transform: scale(.95); }
      .editor-card { padding: 9px; }
      .privacy-panel { padding: 19px; }
      .privacy-grid { gap: 20px; }
      .section-heading h2, .copy h2 { font-size: 36px; }
      .proof-item { padding: 17px 13px; gap: 9px; }
      .proof-item strong { font-size: 10px; }
      .proof-item span { font-size: 9px; }
      .proof-icon { width: 29px; height: 29px; flex-basis: 29px; }
      .proof-icon svg { width: 14px; height: 14px; }
      .browser-content { padding-left: 17px; padding-right: 17px; }
      .mock-nav-links { display: none; }
      .mock-hero { gap: 10px; }
      .address-bar { margin-left: 0; }
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    }
  
