:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-2: #f0f4fb;
  --ink: #08162b;
  --muted: #627086;
  --line: #dfe6f0;
  --green: #1e6ff5;
  --green-deep: #1557d5;
  --green-soft: #e8f1ff;
  --mint: #56a0ff;
  --navy: #07152a;
  --amber: #b86d18;
  --error: #b43d32;
  --shadow: 0 24px 70px rgba(25, 61, 120, .12);
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font: 16px/1.6 var(--sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; }
button, input { font: inherit; }
.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mono { font-family: var(--mono); font-size: .9em; }

/* Brand */
.wordmark { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); text-decoration: none; font-size: 18px; font-weight: 760; letter-spacing: -.04em; }
.brand-name { display: inline-flex; }
.brand-name > span:last-child { color: var(--green); }
.brand-mark { position: relative; width: 39px; height: 39px; display: inline-block; flex: none; object-fit: contain; background: none; filter: drop-shadow(0 5px 8px rgba(30,111,245,.16)); }
.brand-mark::before { display: none; }
.brand-mark > span { display: none; }
.brand-mark.small-mark { width: 34px; height: 34px; }
.brand-mark.jumbo { width: 92px; height: 92px; filter: drop-shadow(0 18px 24px rgba(30,111,245,.22)); }

/* Navigation */
.topbar { position: sticky; top: 0; z-index: 20; background: rgba(247,249,252,.84); border-bottom: 1px solid rgba(215,224,238,.82); backdrop-filter: blur(18px); }
.bar { height: 72px; display: flex; justify-content: space-between; align-items: center; }
.bar-links { display: flex; align-items: center; gap: 30px; }
.bar-links a { color: #46564e; font-size: 14px; font-weight: 600; text-decoration: none; transition: color .18s ease; }
.bar-links a:hover { color: var(--green); }
.bar-links .nav-cta { color: white; background: var(--ink); padding: 10px 17px; border-radius: 10px; }
.bar-links .nav-cta:hover { color: white; background: var(--green-deep); }

/* Type */
.eyebrow { color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
h1, h2, h3 { text-wrap: balance; }
h1 { font-size: clamp(48px, 5.5vw, 76px); line-height: .99; letter-spacing: -.062em; font-weight: 760; }
h1 span { color: var(--green); }
h2 { font-size: clamp(36px, 4vw, 54px); line-height: 1.06; letter-spacing: -.05em; font-weight: 740; }
h3 { font-size: 21px; line-height: 1.2; letter-spacing: -.025em; }
.section-copy > p:not(.eyebrow), .section-heading > p:not(.eyebrow) { color: var(--muted); font-size: 18px; max-width: 640px; margin-top: 20px; }
.section-heading { margin-bottom: 34px; }
.section-heading.centered { text-align: center; }
.section-heading.centered > p:not(.eyebrow) { margin-inline: auto; }

/* Hero */
.hero { position: relative; padding: 72px 0 78px; overflow: hidden; background: radial-gradient(circle at 76% 38%, rgba(69,139,255,.16), transparent 29%), linear-gradient(180deg, #fcfdff 0%, #f5f8fd 100%); }
.hero::before { content: ""; position: absolute; width: 760px; height: 760px; right: -330px; top: -380px; border: 1px solid rgba(30,111,245,.13); border-radius: 50%; box-shadow: 0 0 0 90px rgba(30,111,245,.027), 0 0 0 180px rgba(30,111,245,.018); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .95fr) minmax(520px, 1.05fr); align-items: center; gap: 76px; }
.hero-badge { width: fit-content; display: flex; align-items: center; gap: 9px; color: #355b99; background: var(--green-soft); border: 1px solid #cadcff; border-radius: 999px; padding: 7px 12px; margin-bottom: 25px; font-size: 13px; font-weight: 700; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(30,111,245,.12); }
.lede { max-width: 610px; margin-top: 27px; color: var(--muted); font-size: 19px; line-height: 1.68; }
.cta { display: grid; grid-template-columns: .75fr 1fr auto; gap: 9px; margin-top: 34px; }
.cta input { min-width: 0; height: 52px; color: var(--ink); background: var(--surface); border: 1px solid #d7dfeb; border-radius: 11px; padding: 0 15px; outline: 0; box-shadow: 0 2px 3px rgba(20,47,90,.03); }
.cta input::placeholder { color: #8a9790; }
.cta input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(30,111,245,.12); }
.cta button { height: 52px; border: 0; border-radius: 11px; padding: 0 20px; white-space: nowrap; color: white; background: var(--green); font-size: 15px; font-weight: 750; cursor: pointer; box-shadow: 0 10px 22px rgba(30,111,245,.2); transition: transform .18s ease, background .18s ease; }
.cta button:hover { background: var(--green-deep); transform: translateY(-1px); }
.cta button:disabled { opacity: .6; cursor: default; transform: none; }
.status { min-height: 24px; margin-top: 10px; font-size: 14px; font-weight: 650; }
.status.ok { color: var(--green); }
.status.err { color: var(--error); }
.status a { color: var(--green-deep); }
.hero-meta { display: flex; gap: 19px; margin-top: 11px; color: #52645b; font-size: 13px; font-weight: 650; }
.hero-meta i { display: inline-grid; place-items: center; width: 17px; height: 17px; margin-right: 4px; color: white; background: var(--green); border-radius: 50%; font-size: 10px; font-style: normal; }
.small { color: #849089; font-size: 12px; margin-top: 9px; }
.hero-download { display: inline-flex; align-items: center; gap: 12px; height: 54px; margin-top: 32px; padding: 0 24px; border: 0; border-radius: 12px; color: white; background: var(--green); box-shadow: 0 12px 26px rgba(30,111,245,.22); font-weight: 780; cursor: pointer; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.hero-download:hover { background: var(--green-deep); box-shadow: 0 15px 30px rgba(30,111,245,.27); transform: translateY(-2px); }

/* Download dialog */
.download-dialog { width: min(448px, calc(100% - 32px)); max-width: none; margin: auto; padding: 0; overflow: visible; color: var(--ink); background: transparent; border: 0; }
.download-dialog::backdrop { background: rgba(4,16,35,.54); backdrop-filter: blur(8px); }
.download-dialog[open] { animation: dialog-in .22s ease-out; }
@keyframes dialog-in { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.dialog-card { position: relative; padding: 32px; overflow: hidden; background: white; border: 1px solid rgba(213,224,241,.95); border-radius: 24px; box-shadow: 0 34px 90px rgba(4,24,57,.28); }
.dialog-card::before { content: ""; position: absolute; width: 240px; height: 240px; right: -120px; top: -135px; border-radius: 50%; background: rgba(30,111,245,.08); box-shadow: 0 0 0 45px rgba(30,111,245,.035); }
.dialog-close { position: absolute; z-index: 2; top: 16px; right: 16px; display: grid; width: 36px; height: 36px; place-items: center; color: #68778d; background: #f3f6fb; border: 0; border-radius: 50%; font-size: 25px; line-height: 1; cursor: pointer; }
.dialog-close:hover { color: var(--ink); background: #e8eef8; }
.dialog-brand { position: relative; width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 20px; background: #f3f7ff; border: 1px solid #d8e5ff; border-radius: 16px; }
.dialog-brand img { width: 46px; height: 46px; object-fit: contain; }
.dialog-card .eyebrow { position: relative; margin-bottom: 8px; }
.dialog-card h2 { position: relative; font-size: 38px; }
.dialog-copy { position: relative; margin-top: 12px; color: var(--muted); font-size: 15px; line-height: 1.55; }
.download-form { position: relative; display: grid; gap: 8px; margin-top: 24px; }
.download-form label { margin-top: 5px; color: #33435a; font-size: 13px; font-weight: 760; }
.download-form label span { color: #8a96a8; font-size: 12px; font-weight: 550; }
.download-form input { width: 100%; height: 52px; padding: 0 15px; color: var(--ink); background: #fbfcff; border: 1px solid #d5deec; border-radius: 11px; outline: 0; }
.download-form input::placeholder { color: #95a0af; }
.download-form input:focus { background: white; border-color: var(--green); box-shadow: 0 0 0 3px rgba(30,111,245,.12); }
.download-form button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 54px; margin-top: 10px; padding: 0 18px; color: white; background: var(--green); border: 0; border-radius: 11px; box-shadow: 0 10px 22px rgba(30,111,245,.2); font-weight: 780; cursor: pointer; }
.download-form button:hover { background: var(--green-deep); }
.download-form button:disabled { opacity: .62; cursor: wait; }
.dialog-card .status { min-height: 0; margin-top: 12px; text-align: center; }
.dialog-privacy { margin-top: 14px; color: #8a96a8; text-align: center; font-size: 11px; }
.form-success { position: relative; margin-top: 24px; padding: 24px 20px; text-align: center; background: var(--green-soft); border: 1px solid #cfe0ff; border-radius: 14px; }
.form-success > span { display: grid; width: 38px; height: 38px; place-items: center; margin: 0 auto 10px; color: white; background: var(--green); border-radius: 50%; font-weight: 800; }
.form-success strong { display: block; font-size: 19px; }
.form-success p { margin-top: 4px; color: var(--muted); font-size: 13px; }

/* Hero product */
.product-visual { position: relative; min-height: 550px; display: grid; place-items: center; }
.visual-glow { position: absolute; inset: 8% -2% 3% 6%; background: linear-gradient(140deg, rgba(64,135,255,.38), rgba(220,233,255,.14)); border-radius: 55% 45% 54% 46%; filter: blur(28px); opacity: .65; }
.app-window { position: relative; width: 100%; background: #fbfcff; border: 1px solid rgba(188,203,226,.92); border-radius: 19px; overflow: hidden; box-shadow: 0 36px 85px rgba(21,49,94,.18), 0 8px 20px rgba(21,49,94,.07); transform: rotate(.2deg); }
.window-bar { height: 49px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 17px; border-bottom: 1px solid var(--line); background: rgba(246,249,247,.95); color: #53645b; font-size: 11px; }
.window-bar strong { color: #33443b; font-size: 12px; }
.window-state { justify-self: end; }
.traffic { display: flex; gap: 6px; }
.traffic i { width: 9px; height: 9px; border-radius: 50%; background: #d2d9d5; }
.traffic i:first-child { background: #f09c91; }.traffic i:nth-child(2) { background: #ecc975; }.traffic i:nth-child(3) { background: #74c997; }
.app-body { padding: 23px 25px 13px; }
.card-source { display: flex; align-items: center; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.card-source > div:nth-child(2) { display: flex; flex-direction: column; }
.card-source strong { font-size: 13px; }
.card-source span { color: #7a8880; font-size: 11px; }
.drive-icon { position: relative; width: 36px; height: 31px; border: 1px solid #cbd8d1; border-radius: 7px; background: white; }
.drive-icon::before { content: ""; position: absolute; left: 7px; right: 7px; top: 7px; height: 7px; border-radius: 2px; background: #dce8e1; }
.drive-icon span { position: absolute; left: 7px; right: 7px; bottom: 6px; height: 2px; background: var(--green); }
.card-source .source-tag { margin-left: auto; color: var(--green); background: var(--green-soft); border-radius: 5px; padding: 4px 7px; font: 700 9px/1 var(--mono); }
.scan-summary { display: flex; align-items: center; gap: 14px; padding: 23px 2px 16px; }
.scan-summary p { color: #7a8880; font-size: 11px; }
.scan-summary strong { font-size: 24px; letter-spacing: -.03em; }
.proof-shield, .mini-shield { position: relative; display: block; flex: none; background: url('logo.png') center / contain no-repeat; }
.proof-shield { width: 54px; height: 54px; }
.proof-shield span, .mini-shield b { display: none; }
.progress-track { height: 6px; overflow: hidden; background: #e7eeea; border-radius: 99px; }
.progress-track span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--green), var(--mint)); border-radius: inherit; }
.scan-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 17px 0 21px; }
.scan-stats span { display: flex; flex-direction: column; color: #829087; font-size: 10px; }
.scan-stats strong { color: #32443a; font-size: 15px; }
.file-list { border: 1px solid var(--line); border-radius: 11px; overflow: hidden; background: white; }
.file-list > div { display: grid; grid-template-columns: 38px 1fr 100px 70px; align-items: center; gap: 9px; min-height: 48px; padding: 6px 10px; border-top: 1px solid #edf1ee; font-size: 10px; }
.file-list > div:first-child { border-top: 0; }
.file-list b { color: #3e4d45; font-weight: 650; }
.file-list small { color: #809087; }
.file-list em { color: var(--green); font-style: normal; font-weight: 700; }
.thumb { width: 34px; height: 34px; display: block; border-radius: 6px; background-color: #cbdcd3; background-size: cover; }
.t1 { background: linear-gradient(155deg, transparent 48%, #315c46 49%), linear-gradient(35deg, #94c9ab 50%, #d5e7dd 51%); }
.t2 { background: linear-gradient(150deg, transparent 46%, #594e40 47%), linear-gradient(30deg, #d5b894 50%, #e9dfd2 51%); }
.t3 { background: linear-gradient(150deg, transparent 46%, #43626d 47%), linear-gradient(30deg, #9fc7d2 50%, #d8e9ed 51%); }
.window-footer { height: 62px; display: flex; align-items: center; justify-content: space-between; padding: 0 25px; border-top: 1px solid var(--line); color: #819087; font-size: 10px; background: white; }
.window-footer button { border: 0; border-radius: 8px; color: white; background: var(--green); padding: 9px 14px; font-size: 11px; font-weight: 700; }
.verified-float { position: absolute; right: -30px; bottom: 33px; display: flex; align-items: center; gap: 10px; padding: 12px 17px; background: rgba(255,255,255,.95); border: 1px solid #d9e3f2; border-radius: 13px; box-shadow: 0 16px 40px rgba(27,56,105,.15); }
.verified-float > span { display: grid; place-items: center; width: 29px; height: 29px; color: white; background: var(--green); border-radius: 50%; font-weight: 800; }
.verified-float div { display: flex; flex-direction: column; }
.verified-float strong { font-size: 12px; }.verified-float small { color: #7d8c84; font-size: 10px; }

/* Trust */
.trust-strip { padding: 0; border-block: 1px solid var(--line); background: var(--surface); }
.trust-grid { min-height: 84px; display: grid; grid-template-columns: 1.35fr repeat(4,1fr); align-items: center; gap: 30px; }
.trust-grid p { color: #87928c; font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.trust-grid div { display: flex; flex-direction: column; padding-left: 20px; border-left: 1px solid var(--line); }
.trust-grid strong { font-size: 14px; }.trust-grid span { color: #809087; font-size: 12px; }

/* Outcome */
section { padding: 80px 0; }
.outcome-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
.section-copy > p:not(.eyebrow) { max-width: 490px; }
.text-link { display: inline-block; margin-top: 28px; color: var(--green); font-weight: 750; text-decoration: none; }
.workflow-card { padding: 34px; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 22px 60px rgba(23,49,91,.08); }
.workflow-step { display: flex; align-items: center; gap: 16px; }
.workflow-step > span:first-child { width: 42px; height: 42px; display: grid; place-items: center; flex: none; color: var(--green); background: var(--green-soft); border-radius: 50%; font-size: 13px; font-weight: 800; }
.workflow-step div { display: flex; flex-direction: column; }
.workflow-step strong { font-size: 16px; }.workflow-step small { color: var(--muted); font-size: 12px; }
.workflow-step > i { margin-left: auto; display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; color: white; background: var(--green); font-size: 12px; font-style: normal; }
.workflow-line { width: 1px; height: 32px; margin: 5px 0 5px 21px; background: #cfe4d8; }
.workflow-step.final { margin: 8px -11px -11px; padding: 19px 20px; color: white; background: linear-gradient(120deg, #1557d5, #3286ff); border-radius: 14px; }
.workflow-step.final strong { font-size: 18px; }.workflow-step.final small { color: #ccebdd; }
.workflow-step.final > .mini-shield { width: 46px; height: 46px; background: url('logo.png') center / contain no-repeat; }

/* Proof */
.proof-section { background: var(--surface); border-block: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.proof-card { position: relative; min-height: 330px; padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: #fbfcfb; }
.proof-card.featured { border-color: #9cc1ff; background: linear-gradient(160deg, #f7faff, #eaf2ff); box-shadow: 0 16px 36px rgba(30,111,245,.11); }
.proof-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 44px; border-radius: 13px; font-size: 22px; font-weight: 800; }
.proof-icon.fast { color: #5d7568; background: #e8efeb; }.proof-icon.standard { color: white; background: var(--green); }.proof-icon.paranoid { color: #7c633e; background: #f2eade; }
.proof-card h3 { font-size: 24px; }
.proof-card p { color: var(--muted); margin-top: 11px; font-size: 15px; }
.proof-card .spec { position: absolute; left: 30px; bottom: 27px; color: #75847c; font: 700 10px/1.3 var(--mono); letter-spacing: .04em; }
.recommend { position: absolute; right: 21px; top: 21px; color: var(--green-deep); background: white; border: 1px solid #bad1fa; border-radius: 999px; padding: 5px 9px; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.proof-note { color: #819087; text-align: center; margin-top: 25px; font-size: 13px; }

/* Feature bento */
.features { background: #f7f9fc; }
.bento-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 300px; gap: 18px; }
.feature-card { position: relative; overflow: hidden; padding: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: 19px; }
.feature-card.large { grid-row: span 2; }
.feature-card.wide { grid-column: span 2; }
.feature-number { color: #93a098; font: 700 11px var(--mono); }
.feature-card h3 { position: absolute; left: 28px; right: 28px; bottom: 76px; }
.feature-card p { position: absolute; left: 28px; right: 28px; bottom: 27px; color: var(--muted); font-size: 14px; max-width: 460px; }
.green-card { color: white; border: 0; background: linear-gradient(155deg, #0b3f9f, #1e72f5); }
.green-card .feature-number, .dark-card .feature-number { color: rgba(255,255,255,.58); }
.green-card p, .dark-card p { color: rgba(255,255,255,.72); }
.folder-stack { position: absolute; left: 50%; top: 43%; width: 220px; height: 210px; transform: translate(-50%,-50%); }
.folder-stack span { position: absolute; left: 0; width: 100%; height: 132px; border-radius: 15px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.25); box-shadow: 0 16px 30px rgba(0,35,90,.14); }
.folder-stack span::before { content: "STUDIO-NAS / WEDDINGS / 2026"; position: absolute; top: 18px; left: 18px; color: rgba(255,255,255,.65); font: 700 8px var(--mono); }
.folder-stack span::after { content: "✓  4,254 files verified"; position: absolute; left: 18px; bottom: 21px; color: white; font-size: 12px; font-weight: 700; }
.folder-stack span:nth-child(1) { top: 0; transform: scale(.82); opacity: .45; }.folder-stack span:nth-child(2) { top: 30px; transform: scale(.91); opacity: .72; }.folder-stack span:nth-child(3) { top: 62px; }
.mini-gallery { position: absolute; top: 56px; right: 35px; left: 35px; height: 102px; display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.vector-frame { position: relative; overflow: hidden; border: 1px solid rgba(35,75,140,.1); border-radius: 10px; }
.vector-frame b, .vector-frame u { position: absolute; display: block; text-decoration: none; }
.vector-frame > i { position: absolute; right: 6px; bottom: 6px; z-index: 5; width: 18px; height: 18px; display: grid; place-items: center; color: white; background: var(--green); border: 2px solid rgba(255,255,255,.85); border-radius: 50%; box-shadow: 0 3px 8px rgba(18,75,170,.22); font-size: 9px; font-style: normal; font-weight: 900; }
.scene-landscape { background: linear-gradient(180deg, #d9effa 0 58%, #a8d6c1 59%); }
.scene-landscape::before { content: ""; position: absolute; width: 24px; height: 24px; right: 18px; top: 15px; border-radius: 50%; background: #f9cb62; box-shadow: 0 0 0 7px rgba(249,203,98,.18); }
.scene-landscape b { width: 90px; height: 90px; left: -15px; bottom: -62px; border-radius: 13px; background: #47728b; transform: rotate(45deg); }
.scene-landscape u { width: 72px; height: 72px; right: 6px; bottom: -52px; border-radius: 12px; background: #6c9b85; transform: rotate(45deg); }
.scene-portrait { background: linear-gradient(145deg, #efe9f8, #d1c2e7); }
.scene-portrait::before { content: ""; position: absolute; width: 34px; height: 34px; left: calc(50% - 17px); top: 16px; border-radius: 50%; background: #735e91; }
.scene-portrait::after { content: ""; position: absolute; width: 86px; height: 52px; left: calc(50% - 43px); bottom: -19px; border-radius: 48px 48px 12px 12px; background: #735e91; }
.scene-portrait b { width: 19px; height: 8px; left: calc(50% - 9px); top: 53px; border-radius: 0 0 10px 10px; background: #aa94c7; }
.scene-architecture { background: linear-gradient(180deg, #e6f0f8 0 48%, #b9cfe1 49%); }
.scene-architecture::before { content: ""; position: absolute; left: 16px; right: 16px; bottom: 14px; height: 8px; border-radius: 4px; background: #4e718e; box-shadow: 0 -10px 0 #7192aa; }
.scene-architecture b { width: 31px; height: 66px; left: 28px; bottom: 22px; background: #395f7e; border-radius: 5px 5px 0 0; box-shadow: 39px 18px 0 #587c97, 75px 4px 0 #476e8b; }
.scene-architecture b::after { content: ""; position: absolute; inset: 9px 7px; background: repeating-linear-gradient(180deg, #bad5e5 0 4px, transparent 4px 11px); }
.scene-camera { background: linear-gradient(145deg, #153255, #274f7e); }
.scene-camera b { left: 25px; right: 25px; top: 28px; bottom: 22px; border: 4px solid #b9dcff; border-radius: 12px; }
.scene-camera b::before { content: ""; position: absolute; width: 34px; height: 34px; left: calc(50% - 17px); top: calc(50% - 17px); border: 5px solid #6fa9df; border-radius: 50%; background: #d8ecff; box-shadow: inset 0 0 0 6px #274f7e; }
.scene-camera b::after { content: ""; position: absolute; width: 33px; height: 10px; left: 12px; top: -11px; border-radius: 5px 5px 0 0; background: #b9dcff; }
.feature-symbol { position: absolute; right: 28px; top: 27px; color: var(--green); font-size: 30px; font-weight: 500; }
.dark-card { color: white; border: 0; background: var(--navy); }
.privacy-lock { position: absolute; right: 58px; top: 46px; width: 100px; height: 90px; border-radius: 25px; background: rgba(86,160,255,.14); }
.privacy-lock::before { content: ""; position: absolute; width: 34px; height: 31px; left: 33px; top: 9px; border: 6px solid var(--mint); border-bottom: 0; border-radius: 20px 20px 0 0; }
.privacy-lock span { position: absolute; left: 25px; bottom: 13px; width: 50px; height: 45px; border-radius: 11px; background: var(--mint); }
.privacy-lock span::after { content: ""; position: absolute; left: 22px; top: 13px; width: 6px; height: 15px; border-radius: 4px; background: var(--navy); }

/* Steps */
.steps { background: var(--surface); border-top: 1px solid var(--line); }
.step-grid { display: grid; grid-template-columns: repeat(4,1fr); list-style: none; counter-reset: none; }
.step-grid li { position: relative; min-height: 240px; padding: 0 28px; border-left: 1px solid var(--line); color: inherit; }
.step-grid li:first-child { border-left: 0; padding-left: 0; }
.step-grid li:last-child { padding-right: 0; }
.step-grid li > span { color: #9ba69f; font: 700 10px var(--mono); }
.step-grid strong { display: block; margin-top: 27px; font-size: 17px; }
.step-grid p { color: var(--muted); margin-top: 8px; font-size: 14px; }
.step-icon { width: 60px; height: 60px; display: grid; place-items: center; margin-top: 33px; color: var(--green); background: var(--green-soft); border-radius: 17px; font-size: 23px; font-weight: 700; }
.shield-small { border-radius: 0; background: url('logo.png') center / contain no-repeat; }
.shield-small i { display: none; }

/* CTA and footer */
.final-cta { padding-top: 56px; background: var(--surface); }
.final-card { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 35px; padding: 52px 58px; color: white; background: linear-gradient(125deg, #061328, #0b2d69); border-radius: 25px; overflow: hidden; }
.final-card::after { content: ""; position: absolute; width: 360px; height: 360px; right: -120px; top: -200px; border-radius: 50%; background: rgba(86,160,255,.14); box-shadow: 0 0 0 55px rgba(86,160,255,.04); }
.final-mark { width: 116px; height: 116px; display: grid; place-items: center; flex: none; background: linear-gradient(145deg, #ffffff, #e8f1ff); border: 1px solid rgba(255,255,255,.8); border-radius: 27px; box-shadow: 0 18px 38px rgba(0,8,28,.28), inset 0 0 0 1px rgba(30,111,245,.08); }
.final-mark .brand-mark.jumbo { width: 92px; height: 92px; filter: drop-shadow(0 10px 16px rgba(30,111,245,.18)); }
.final-card .eyebrow { color: var(--mint); }.final-card h2 { font-size: clamp(32px,3.5vw,48px); }
.final-card p:not(.eyebrow) { color: #a8beb2; margin-top: 10px; }
.button-link { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 12px; color: var(--ink); background: white; border-radius: 11px; padding: 14px 20px; white-space: nowrap; text-decoration: none; font-size: 14px; font-weight: 800; }
.firstlaunch { padding: 34px 0; background: var(--surface); }
.launch-row { display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 28px; padding-top: 30px; border-top: 1px solid var(--line); }
.launch-row strong { font-size: 14px; }.launch-row p { color: var(--muted); font-size: 13px; }.launch-row a { color: var(--green); font-size: 13px; font-weight: 750; text-decoration: none; }
footer { padding: 34px 0 46px; background: var(--surface); border-top: 1px solid var(--line); }
.foot { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.foot p { color: #819087; font-size: 12px; }.foot strong { color: #516159; }

/* Guide */
.guide-hero { padding: 88px 0 70px; background: linear-gradient(180deg,#fcfdff,#f3f7fd); }
.guide-hero .lede { max-width: 680px; }
.guide { padding-top: 70px; background: var(--surface); }
.guide .wrap { max-width: 920px; }
.guide h2 { margin-top: 72px; margin-bottom: 30px; padding-top: 50px; border-top: 1px solid var(--line); font-size: 38px; }
.guide h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.guide-steps { list-style: none; counter-reset: gstep; }
.guide-steps li { position: relative; counter-increment: gstep; padding: 4px 0 30px 74px; }
.guide-steps li::before { content: counter(gstep, decimal-leading-zero); position: absolute; left: 0; top: 0; width: 42px; height: 42px; display: grid; place-items: center; color: var(--green); background: var(--green-soft); border-radius: 50%; font: 750 12px var(--mono); }
.guide-steps li::after { content: ""; position: absolute; left: 21px; top: 48px; bottom: 8px; width: 1px; background: var(--line); }
.guide-steps li:last-child::after { display: none; }
.guide-steps h3 { margin-bottom: 8px; }.guide-steps p { color: var(--muted); font-size: 15px; }.guide-steps p + p { margin-top: 12px; }.guide-steps strong { color: var(--ink); }
.tip { padding: 14px 16px; border-left: 3px solid var(--green); background: var(--green-soft); border-radius: 0 9px 9px 0; }
kbd { font: 12px var(--mono); background: #f1f4f2; border: 1px solid var(--line); border-bottom-width: 2px; border-radius: 5px; padding: 2px 7px; }
.ok-text { color: var(--green); }.guide-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 15px; }
.guide-list > div { padding: 22px; border: 1px solid var(--line); border-radius: 13px; }.guide-list dt { font-weight: 750; margin-bottom: 5px; }.guide-list dd { color: var(--muted); font-size: 14px; }
.guide-cta { margin-top: 60px; padding: 30px; display: flex; align-items: center; justify-content: space-between; gap: 25px; background: var(--surface-2); border-radius: 16px; }.guide-cta p { font-size: 18px; font-weight: 700; }.guide-cta .button-link { color: white; background: var(--green); }
.bar-links a[aria-current] { color: var(--green); }

/* Responsive */
@media (max-width: 1060px) {
  .hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .pitch { max-width: 750px; }.product-visual { width: min(650px,100%); margin-inline: auto; }
  .trust-grid { grid-template-columns: repeat(4,1fr); padding: 24px 0; }.trust-grid p { grid-column: 1/-1; }
  .outcome-grid { gap: 55px; }.bento-grid { grid-template-columns: repeat(2,1fr); }.feature-card.large { grid-row: span 1; }.feature-card.wide { grid-column: span 1; }
  .folder-stack { width: 150px; height: 120px; top: 39%; }.folder-stack span { height: 90px; }.folder-stack span:nth-child(2) { top: 18px; }.folder-stack span:nth-child(3) { top: 36px; }.folder-stack span::after { font-size: 9px; }
  .final-card { grid-template-columns: auto 1fr; }.final-card .button-link { grid-column: 2; width: fit-content; }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 32px, 1180px); }.bar { height: 64px; }.bar-links a:not(.nav-cta) { display: none; }
  .hero { padding: 52px 0 60px; }.hero-grid { gap: 35px; }.lede { font-size: 17px; }.cta { grid-template-columns: 1fr; }.cta button { width: 100%; }
  .hero-meta { flex-wrap: wrap; gap: 10px 16px; }.product-visual { min-height: auto; }.verified-float { right: 12px; bottom: -25px; }.app-body { padding: 18px 15px 10px; }.scan-stats { gap: 2px; }.file-list > div { grid-template-columns: 38px 1fr 68px; }.file-list small { display: none; }
  .trust-grid { grid-template-columns: repeat(2,1fr); gap: 18px; }.trust-grid div { padding-left: 0; border-left: 0; }
  section { padding: 62px 0; }.outcome-grid { grid-template-columns: 1fr; gap: 42px; }.proof-grid { grid-template-columns: 1fr; }.proof-card { min-height: 280px; }.proof-icon { margin-bottom: 30px; }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }.step-grid { grid-template-columns: repeat(2,1fr); gap: 35px 0; }.step-grid li:nth-child(3) { border-left: 0; padding-left: 0; }
  .final-card { grid-template-columns: 1fr; padding: 40px 30px; }.final-card .button-link { grid-column: auto; }.final-mark { display: none; }
  .dialog-card { padding: 27px 22px 24px; border-radius: 20px; }.dialog-card h2 { font-size: 34px; }
  .launch-row { grid-template-columns: 1fr; gap: 8px; }.foot { flex-direction: column; align-items: flex-start; }.guide-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 46px; }.hero-badge { font-size: 11px; }.app-window { border-radius: 14px; }.scan-summary strong { font-size: 20px; }.scan-stats span:nth-child(3) { display: none; }.scan-stats { grid-template-columns: 1fr 1fr; }.verified-float { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }.proof-card { padding: 24px; }.proof-card .spec { left: 24px; }
  .step-grid { grid-template-columns: 1fr; }.step-grid li, .step-grid li:first-child, .step-grid li:nth-child(3) { min-height: 215px; padding: 0; border-left: 0; border-top: 1px solid var(--line); padding-top: 25px; }.step-grid li:first-child { border-top: 0; }
  .mini-gallery { height: 90px; left: 24px; right: 24px; }.privacy-lock { right: 32px; }
  .guide-steps li { padding-left: 58px; }.guide-steps li::before { width: 36px; height: 36px; }.guide-steps li::after { left: 18px; }
}

@media (prefers-reduced-motion: no-preference) {
  .app-window { animation: settle .75s cubic-bezier(.2,.8,.2,1) both; }
  @keyframes settle { from { opacity: 0; transform: translateY(18px) rotate(.8deg); } to { opacity: 1; transform: translateY(0) rotate(.2deg); } }
}
