@layer reset, base, components, sections, responsive;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body, h1, h2, h3, p { margin: 0; }
  img, svg { display: block; max-width: 100%; }
  button, input { font: inherit; }
  a { color: inherit; text-decoration: none; }
}

@layer base {
  :root {
    color-scheme: light;
    --ink: #17151c;
    --ink-soft: #696570;
    --line: rgba(32, 28, 40, .1);
    --surface: #fff;
    --paper: #f8f7fb;
    --purple: #6e43f5;
    --purple-dark: #5321e8;
    --pink: #ef43b6;
    --blue: #27a9ef;
    --radius: 28px;
    --shadow: 0 25px 80px rgba(44, 28, 78, .14), 0 3px 14px rgba(35, 27, 54, .08);
    --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  }

  html { background: var(--paper); }
  #svelte { display: contents; }
  body {
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  ::selection { color: #fff; background: var(--purple); }
  .shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
  .skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; padding: 10px 14px; border-radius: 10px; color: #fff; background: #17151c; transform: translateY(-150%); }
  .skip-link:focus { transform: none; }
  :focus-visible { outline: 3px solid rgba(110, 67, 245, .38); outline-offset: 3px; }

  .kicker { margin-bottom: 14px; color: #7059c8; font-size: 13px; font-weight: 720; letter-spacing: .11em; text-transform: uppercase; }
  .section { padding: 150px 0; }
  .section-heading { max-width: 850px; margin: 0 auto 76px; text-align: center; }
  .section-heading h2, .privacy-copy h2, .agent-copy h2, .faq-heading h2, .closing-content h2 { font-size: clamp(42px, 5vw, 68px); line-height: .99; letter-spacing: -.055em; }
  .section-heading > p { max-width: 650px; margin: 26px auto 0; color: var(--ink-soft); font-size: 20px; line-height: 1.55; }

  .reveal { opacity: 1; transform: none; }
  .js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1); }
  .js .reveal.is-visible { opacity: 1; transform: none; }
}

@layer components {
  .site-header { position: fixed; z-index: 100; inset: 0 0 auto; padding: 14px 0; transition: padding .25s ease; }
  .site-header::before { position: absolute; z-index: -1; inset: 0; border-bottom: 1px solid transparent; background: rgba(248, 247, 251, 0); content: ""; backdrop-filter: blur(0); transition: .25s ease; }
  .site-header.scrolled { padding: 9px 0; }
  .site-header.scrolled::before { border-color: var(--line); background: rgba(248, 247, 251, .78); backdrop-filter: saturate(160%) blur(22px); }
  .nav-shell { width: min(1240px, calc(100% - 36px)); min-height: 48px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
  .brand { display: inline-flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 720; letter-spacing: -.025em; }
  .brand img { border-radius: 9px; filter: drop-shadow(0 5px 8px rgba(67, 36, 120, .19)); }
  .nav-links { display: flex; align-items: center; gap: 34px; margin-left: auto; }
  .nav-links a, .site-footer nav a { color: #595460; font-size: 14px; font-weight: 570; transition: color .2s ease; }
  .nav-links a:hover, .site-footer nav a:hover { color: var(--ink); }

  .button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px; padding: 0 22px; border: 1px solid transparent; border-radius: 15px; font-size: 15px; font-weight: 660; letter-spacing: -.015em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
  .button:hover { transform: translateY(-2px); }
  .button svg { width: 16px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
  .button-small { min-height: 39px; padding: 0 16px; border-radius: 12px; font-size: 13px; }
  .button-dark { color: #fff; background: #1d1a21; box-shadow: 0 5px 16px rgba(23, 21, 28, .12); }
  .button-dark:hover { background: #322e38; }
  .button-primary { color: #fff; background: linear-gradient(135deg, #773ff4, #5222e8 70%); box-shadow: 0 14px 28px rgba(92, 43, 231, .25), inset 0 1px rgba(255,255,255,.22); }
  .button-primary:hover { box-shadow: 0 18px 34px rgba(92, 43, 231, .34), inset 0 1px rgba(255,255,255,.22); }
  .button-quiet { border-color: rgba(33, 29, 40, .12); background: rgba(255,255,255,.6); box-shadow: 0 4px 18px rgba(33, 29, 40, .04); }

  .feature-showcase { min-height: 610px; margin-top: 28px; display: grid; grid-template-columns: .84fr 1.16fr; align-items: center; gap: 56px; overflow: hidden; padding: 72px; border: 1px solid rgba(42, 34, 54, .08); border-radius: 36px; background: #fff; box-shadow: 0 20px 65px rgba(41, 31, 58, .07); }
  .feature-copy h3, .bento h3 { font-size: clamp(33px, 3.6vw, 52px); line-height: 1.03; letter-spacing: -.05em; }
  .feature-copy > p { margin-top: 22px; color: var(--ink-soft); font-size: 18px; line-height: 1.58; }
  .feature-icon { width: 46px; height: 46px; margin-bottom: 25px; display: grid; place-items: center; border-radius: 14px; }
  .feature-icon svg { width: 25px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
  .feature-icon.blue { color: #147fc9; background: #dff4ff; }
  .feature-icon.pink { color: #d52983; background: #ffe3f1; }
  .feature-icon.amber { color: #d37815; background: #fff1cc; }
  .shortcut-row { margin-top: 30px; display: flex; align-items: center; gap: 7px; }
  kbd { min-width: 34px; height: 34px; display: grid; place-items: center; padding: 0 8px; border: 1px solid #d6d2dc; border-bottom-width: 3px; border-radius: 8px; color: #38333e; background: #f8f7fa; font: 600 14px var(--font); }
  .shortcut-row span { margin-left: 7px; color: #77717e; font-size: 13px; }
  .check-list { margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 9px 18px; color: #55505b; list-style: none; font-size: 14px; }
  .check-list li::before { margin-right: 7px; color: #d32980; content: "✓"; font-weight: 800; }
}

@layer sections {
  .hero { position: relative; overflow: hidden; min-height: 1220px; padding: 174px 0 94px; background: radial-gradient(circle at 50% 31%, #fff 0, #faf9fd 38%, #f7f6fb 70%); }
  .hero::after { position: absolute; z-index: 0; inset: auto -10% 0; height: 500px; background: linear-gradient(180deg, transparent, rgba(236, 232, 250, .8)); content: ""; }
  .hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .32; pointer-events: none; }
  .hero-glow-one { width: 520px; height: 380px; top: 70px; left: -230px; background: #78dafa; }
  .hero-glow-two { width: 560px; height: 430px; top: 120px; right: -250px; background: #f19ad4; }
  .hero-copy { position: relative; z-index: 2; text-align: center; }
  .eyebrow { width: fit-content; margin: 0 auto 28px; display: flex; align-items: center; gap: 9px; color: #6a6470; font-size: 13px; font-weight: 630; letter-spacing: .01em; }
  .eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: #f0a425; box-shadow: 0 0 0 5px rgba(240,164,37,.12); }
  .hero h1 { font-size: clamp(62px, 8.2vw, 112px); line-height: .83; letter-spacing: -.073em; }
  .hero h1 span { color: transparent; background: linear-gradient(100deg, #5b41ee 10%, #b735df 58%, #ef4a9d); background-clip: text; -webkit-background-clip: text; }
  .hero-copy > p { max-width: 730px; margin: 34px auto 0; color: #65606b; font-size: clamp(18px, 2vw, 22px); line-height: 1.55; letter-spacing: -.018em; }
  .hero-actions { margin-top: 32px; display: flex; justify-content: center; gap: 12px; }
  .hero-note { margin-top: 22px; display: flex; justify-content: center; align-items: center; gap: 8px; color: #77717e; font-size: 12px; }
  .hero-note svg { width: 17px; fill: none; stroke: #7463c6; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }

  .product-stage { position: relative; z-index: 3; margin-top: 86px; margin-bottom: 0; perspective: 1200px; }
  .stage-aura { position: absolute; z-index: -1; inset: 12% 5% -7%; border-radius: 40%; background: linear-gradient(100deg, rgba(46,193,244,.45), rgba(126,62,245,.46), rgba(244,80,173,.4)); filter: blur(55px); opacity: .7; }
  .editor-window { overflow: hidden; border: 1px solid rgba(255,255,255,.86); border-radius: 22px; background: #d8d6dc; box-shadow: 0 55px 120px rgba(42, 25, 80, .25), 0 12px 36px rgba(34, 29,47,.16); transform: rotateX(1.5deg); transform-origin: bottom center; }
  .editor-window.editor-window-real { overflow: visible; border: 0; border-radius: 0; background: transparent; box-shadow: none; transform: none; }
  .editor-window-real img { width: 100%; height: auto; filter: drop-shadow(0 35px 55px rgba(34,29,47,.2)); }
  .editor-topbar { height: 63px; display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 16px; padding: 0 20px; border-bottom: 1px solid rgba(32,30,35,.14); background: linear-gradient(#f6f5f7, #e9e7eb); }
  .traffic-lights { display: flex; gap: 8px; }
  .traffic-lights i, .window-dots i { width: 12px; height: 12px; border-radius: 50%; background: #ff5f57; box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); }
  .traffic-lights i:nth-child(2), .window-dots i:nth-child(2) { background: #febc2e; }
  .traffic-lights i:nth-child(3), .window-dots i:nth-child(3) { background: #28c840; }
  .tool-strip { display: flex; justify-content: center; align-items: center; gap: 4px; }
  .tool { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 8px; color: #55515a; font-size: 16px; font-weight: 550; }
  .tool svg { width: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
  .tool.active { color: #5e36db; background: rgba(101,61,226,.11); }
  .tool.compact { margin-right: 2px; }
  .tool-strip .divider { width: 1px; height: 23px; margin: 0 5px; background: rgba(30,28,34,.12); }
  .color-chip { width: 22px; height: 22px; border: 3px solid #fff; border-radius: 7px; background: #ff385c; box-shadow: 0 0 0 1px rgba(0,0,0,.15); }
  .editor-meta { display: flex; gap: 16px; color: #6a6670; font-size: 10px; font-weight: 600; }
  .editor-canvas { padding: 48px; background: #c7c5ca; }
  .capture-card { position: relative; min-height: 570px; display: grid; grid-template-columns: 25% 75%; overflow: hidden; border-radius: 8px; background: #fff; box-shadow: 0 18px 42px rgba(20,18,25,.22); }
  .capture-sidebar { padding: 31px 26px; color: #fff; background: #171722; }
  .mini-brand { display: flex; align-items: center; gap: 9px; font-size: 14px; }
  .mini-brand i { width: 22px; height: 22px; border-radius: 7px; background: linear-gradient(135deg,#8256f9,#ee4eb4); }
  .side-copy { margin-top: 66px; display: grid; gap: 16px; }
  .side-copy span { width: 76%; height: 7px; border-radius: 5px; background: rgba(255,255,255,.15); }
  .side-copy span:nth-child(2) { width: 56%; }
  .side-copy span:nth-child(3) { width: 68%; }
  .side-pill { width: 112px; height: 34px; margin-top: 44px; border-radius: 10px; background: linear-gradient(100deg,#6d3bef,#b248ed); }
  .side-copy.lower { margin-top: 145px; }
  .capture-content { padding: 30px 42px 36px; background: linear-gradient(145deg, #fff 10%, #f9f7ff); }
  .sample-nav { display: flex; justify-content: space-between; color: #272331; font-size: 12px; }
  .sample-nav span { padding: 7px 14px; border-radius: 8px; color: #fff; background: #272331; }
  .sample-heading { margin-top: 65px; font-size: clamp(34px, 4vw, 57px); font-weight: 730; line-height: .96; letter-spacing: -.06em; }
  .sample-sub { max-width: 390px; margin-top: 17px; color: #7d7786; font-size: 13px; line-height: 1.5; }
  .sample-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .sample-grid > div { position: relative; min-height: 104px; overflow: hidden; padding: 18px; border: 1px solid #ece8f1; border-radius: 13px; background: rgba(255,255,255,.82); }
  .sample-grid small { display: block; color: #8d8794; font-size: 9px; }
  .sample-grid strong { display: block; margin-top: 12px; font-size: 25px; }
  .spark { position: absolute; width: 55px; height: 55px; right: -14px; bottom: -18px; border-radius: 50%; opacity: .3; filter: blur(8px); }
  .spark.purple { background: #8755f6; }.spark.blue { background: #2bbbf4; }.spark.pink { background: #f65fae; }
  .sample-chart { position: relative; height: 120px; margin-top: 16px; display: flex; justify-content: space-evenly; align-items: stretch; border: 1px solid #ece8f1; border-radius: 13px; background: rgba(255,255,255,.72); }
  .sample-chart span { width: 1px; background: #f0edf3; }
  .sample-chart svg { position: absolute; inset: 20px 18px; width: calc(100% - 36px); height: calc(100% - 40px); overflow: visible; fill: none; stroke: #7650ed; stroke-width: 3; }
  .annotation { position: absolute; pointer-events: none; }
  .annotation-box { width: 34%; height: 138px; right: 4.5%; bottom: 28px; border: 5px solid #ff365d; border-radius: 16px; transform: rotate(-1deg); }
  .annotation-arrow { width: 220px; height: 120px; top: 116px; right: 15%; }
  .annotation-arrow svg, .demo-arrow { fill: none; stroke: #ff365d; stroke-linecap: round; stroke-linejoin: round; stroke-width: 7; }
  .annotation-label { top: 100px; right: 5%; padding: 10px 16px; border-radius: 9px; color: #fff; background: #ff365d; font-size: 14px; font-weight: 700; transform: rotate(2deg); }
  .annotation-counter { width: 40px; height: 40px; left: 22.5%; top: 24%; display: grid; place-items: center; border: 4px solid #ff365d; border-radius: 50%; color: #ff365d; background: #fff; font-weight: 800; }
  .preview-caption { margin-top: 20px; color: #88818d; font-size: 12px; text-align: center; }
  .preview-caption span { margin-right: 7px; padding: 5px 8px; border-radius: 7px; color: #635e68; background: rgba(255,255,255,.72); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }

  .principles { position: relative; z-index: 4; padding: 48px 0; border-block: 1px solid var(--line); background: rgba(255,255,255,.55); }
  .principle-grid { display: grid; grid-template-columns: repeat(4,1fr); }
  .principle { padding: 4px 35px; border-right: 1px solid var(--line); text-align: center; }
  .principle:last-child { border: 0; }
  .principle strong { display: block; font-size: 18px; letter-spacing: -.025em; }
  .principle span { display: block; margin-top: 7px; color: #817b87; font-size: 12px; }

  .intro-section { background: #f8f7fb; }
  .feature-capture { background: linear-gradient(140deg,#fff 20%,#f3f9ff); }
  .capture-visual { position: relative; min-height: 450px; overflow: hidden; border-radius: 28px; background: linear-gradient(135deg,#bddef9,#d9c5fa 53%,#f5c5dc); box-shadow: inset 0 0 0 1px rgba(255,255,255,.65); }
  .wallpaper-orb { position: absolute; width: 320px; height: 320px; right: -70px; top: -100px; border-radius: 50%; background: rgba(255,255,255,.4); filter: blur(4px); }
  .capture-window { position: absolute; overflow: hidden; border: 1px solid rgba(28,26,34,.12); border-radius: 14px; background: rgba(255,255,255,.8); box-shadow: 0 22px 50px rgba(36,31,56,.15); }
  .window-back { width: 57%; height: 62%; right: -4%; top: 12%; padding: 38px 25px; transform: rotate(4deg); }
  .window-front { width: 70%; height: 70%; left: 9%; bottom: 8%; padding: 52px 28px 20px; }
  .window-back i, .capture-window span { height: 9px; display: block; margin-bottom: 15px; border-radius: 6px; background: #d8d4df; }
  .capture-window span:nth-of-type(1) { width: 86%; }.capture-window span:nth-of-type(2) { width: 65%; }.capture-window span:nth-of-type(3) { width: 75%; }
  .window-dots { position: absolute; top: 16px; left: 18px; display: flex; gap: 6px; }
  .window-dots i { width: 9px; height: 9px; }
  .window-front b { display: block; margin-bottom: 35px; font-size: 20px; }
  .selection-frame { position: absolute; inset: 18% 12% 15% 15%; border: 2px solid #6a3ff0; box-shadow: 0 0 0 1000px rgba(26,23,36,.35); }
  .selection-frame .corner { position: absolute; width: 9px; height: 9px; border: 2px solid #fff; background: #6a3ff0; }
  .c1 { top:-5px;left:-5px}.c2 { top:-5px;right:-5px}.c3 { bottom:-5px;left:-5px}.c4 { bottom:-5px;right:-5px}
  .selection-frame em { position: absolute; top: -34px; left: 50%; padding: 5px 9px; border-radius: 7px; color: #fff; background: #332b48; font-size: 10px; font-style: normal; transform: translateX(-50%); }
  .crosshair { position: absolute; background: rgba(255,255,255,.65); }.crosshair.x { width: 1px; inset: 0 auto 0 49%; }.crosshair.y { height: 1px; inset: 47% 0 auto; }

  .feature-annotate { grid-template-columns: 1.16fr .84fr; background: linear-gradient(140deg,#fff8fb,#fff 70%); }
  .annotation-visual { position: relative; min-height: 450px; }
  .annotation-paper { position: absolute; inset: 5% 3% 7% 2%; overflow: hidden; padding: 54px 38px; border: 1px solid #ebe7ee; border-radius: 20px; background: #fff; box-shadow: 0 30px 70px rgba(75,33,61,.14); transform: rotate(-2.3deg); }
  .paper-top { position: absolute; inset: 0 0 auto; height: 36px; display: flex; align-items: center; gap: 6px; padding: 0 14px; border-bottom: 1px solid #eeeaf0; background: #f6f4f7; }
  .paper-top i { width: 8px; height: 8px; border-radius: 50%; background:#ff6159}.paper-top i:nth-child(2){background:#ffbd2e}.paper-top i:nth-child(3){background:#28c941}.paper-top span{width:40%;height:6px;margin-left:25%;border-radius:5px;background:#ddd8e1}
  .paper-title { width: 45%; height: 24px; border-radius: 6px; background: #292531; }
  .paper-line { width: 64%; height: 9px; margin-top: 14px; border-radius: 5px; background:#ded9e3}.paper-line.wide{width:82%;margin-top:26px}
  .paper-cards { margin-top: 48px; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
  .paper-cards i { height: 120px; border-radius: 12px; background: linear-gradient(145deg,#eeeafa,#dcd4f6); }.paper-cards i:nth-child(2){background:linear-gradient(145deg,#dff4fb,#c6e7f8)}.paper-cards i:nth-child(3){background:linear-gradient(145deg,#fde4f1,#f5c8df)}
  .demo-circle { position: absolute; width: 29%; height: 151px; left: 35%; bottom: 48px; border: 5px solid #ff365d; border-radius: 50%; transform: rotate(8deg); }
  .demo-arrow { position: absolute; width: 210px; height: 125px; right: 7%; top: 28%; }
  .demo-label { position: absolute; right: 4%; top: 19%; padding: 9px 13px; border-radius: 7px; color:#fff;background:#ff365d;font-size:12px;font-weight:700;transform:rotate(3deg)}
  .demo-counter { position:absolute;left:9%;bottom:20%;width:34px;height:34px;display:grid;place-items:center;border-radius:50%;color:#fff;background:#ff365d;font-weight:800}
  .demo-redact { position:absolute;width:31%;height:14px;left:12%;top:30%;border-radius:2px;background:#17151c;transform:rotate(-1deg)}
  .floating-tools { position:absolute;left:50%;bottom:0;display:flex;align-items:center;gap:6px;padding:8px;border:1px solid rgba(31,27,37,.1);border-radius:13px;background:rgba(250,249,251,.93);box-shadow:0 14px 35px rgba(37,24,44,.17);transform:translateX(-50%)}
  .floating-tools span { width:32px;height:30px;display:grid;place-items:center;border-radius:8px;color:#56505b;font-weight:600}.floating-tools span:first-child{color:#fff;background:#6f43ed}.floating-tools .tool-red{width:18px;height:18px;margin:0 6px;border:3px solid #fff;border-radius:50%;background:#ff365d;box-shadow:0 0 0 1px #bbb}

  .bento-grid { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  .bento { min-height: 585px; overflow: hidden; padding: 58px; border: 1px solid rgba(42,34,54,.08); border-radius: 34px; background:#fff;box-shadow:0 20px 65px rgba(41,31,58,.06)}
  .bento-copy > p { max-width: 490px; margin-top: 18px; color:var(--ink-soft);font-size:16px;line-height:1.55}
  .bento h3 { font-size: clamp(32px,3.4vw,46px); }
  .bento-ocr { background:linear-gradient(145deg,#fff,#f3efff)}
  .ocr-demo { position:relative;margin:58px auto 0;max-width:460px;padding:31px;border:1px solid #e5dff0;border-radius:18px;background:#fff;box-shadow:0 22px 45px rgba(68,42,104,.12);transform:rotate(1deg)}
  .ocr-demo p { color:#37313c;font-size:20px;font-weight:600;line-height:1.65;letter-spacing:-.02em}.ocr-demo mark{position:relative;color:inherit;background:#d7c9ff}.ocr-demo > span{position:absolute;right:22px;bottom:-15px;padding:8px 12px;border-radius:9px;color:#fff;background:#25202c;font-size:11px;font-weight:700}.ocr-selection{position:absolute;inset:44px 19px 37px 128px;border:2px solid #7750e8}.ocr-selection i{position:absolute;width:7px;height:7px;border-radius:50%;background:#7750e8}.ocr-selection i:nth-child(1){left:-4px;top:-4px}.ocr-selection i:nth-child(2){right:-4px;top:-4px}.ocr-selection i:nth-child(3){left:-4px;bottom:-4px}.ocr-selection i:nth-child(4){right:-4px;bottom:-4px}
  .bento-history { background:linear-gradient(145deg,#fff,#f5faff)}
  .history-stack { position:relative;height:260px;margin:42px auto 0;max-width:410px;perspective:600px}
  .history-card { position:absolute;inset:0;border:1px solid rgba(40,35,50,.1);border-radius:17px;background:#fff;box-shadow:0 20px 45px rgba(38,41,70,.12)}
  .card-three{transform:translateY(24px) scale(.88);opacity:.46}.card-two{transform:translateY(12px) scale(.94);opacity:.72}.card-one{padding:28px}.card-one i{width:100%;height:118px;display:block;border-radius:11px;background:linear-gradient(125deg,#252330 0 36%,#d9d3fb 36% 66%,#bcebf6 66%)}.card-one b{display:block;margin-top:18px;font-size:13px}.card-one span{width:70%;height:6px;display:block;margin-top:10px;border-radius:4px;background:#ddd9e2}.card-one span:last-child{width:43%;margin-top:7px}
  .bento-pin { min-height:390px;grid-column:1/-1;display:grid;grid-template-columns:.9fr 1.1fr;align-items:center;background:linear-gradient(135deg,#fffdf7,#fff)}
  .pin-copy { display:flex;align-items:flex-start;gap:22px}.pin-copy .feature-icon{flex:0 0 auto;margin:0}.pin-copy h3{font-size:40px}.pin-copy p{margin-top:15px;color:var(--ink-soft);font-size:16px;line-height:1.55}
  .pin-visual{position:relative;min-height:260px}.pin-window{position:absolute;inset:4% 3% 6% 12%;padding:50px 28px 26px;border:1px solid #e8e3ea;border-radius:17px;background:#fff;box-shadow:0 26px 55px rgba(45,36,54,.16);transform:rotate(3deg)}.pin-window>div{position:absolute;top:18px;left:20px;display:flex;gap:6px}.pin-window i{width:9px;height:9px;border-radius:50%;background:#ff6159}.pin-window i:nth-child(2){background:#ffbd2e}.pin-window i:nth-child(3){background:#28c941}.pin-window span{width:44%;height:18px;display:block;border-radius:5px;background:#25212a}.pin-window b{height:8px;display:block;margin-top:24px;border-radius:5px;background:#d8d3dc}.pin-window em{width:75%;height:8px;display:block;margin-top:10px;border-radius:5px;background:#e6e2e8}.pin-badge{position:absolute;right:0;top:0;padding:10px 14px;border-radius:12px;color:#9b6514;background:#fff1c9;box-shadow:0 10px 25px rgba(105,73,23,.12);font-size:12px;font-weight:700}
  .bento-backdrop { grid-column:1/-1;min-height:540px;display:grid;grid-template-columns:.82fr 1.18fr;align-items:center;gap:60px;background:linear-gradient(145deg,#fff,#fbf5ff)}
  .backdrop-demo{padding:55px;border-radius:28px;background:linear-gradient(135deg,#5f42e9,#a637e1 54%,#ee4f9b);box-shadow:0 25px 60px rgba(107,41,181,.25)}.backdrop-inner{position:relative;min-height:250px;padding:53px 34px 25px;border-radius:14px;background:#fff;box-shadow:0 24px 45px rgba(31,10,66,.28)}.backdrop-inner::before{position:absolute;inset:0 0 auto;height:36px;border-bottom:1px solid #eeeaf0;border-radius:14px 14px 0 0;background:#f5f3f6;content:""}.backdrop-inner span{width:80%;height:10px;display:block;margin-bottom:14px;border-radius:5px;background:#ded9e2}.backdrop-inner span:nth-child(2){width:62%}.backdrop-inner span:nth-child(3){width:72%}.backdrop-inner strong{height:85px;display:block;margin-top:25px;border-radius:10px;background:linear-gradient(110deg,#e8e3fa,#d6eff8)}

  .privacy-section { position:relative;overflow:hidden;padding:150px 0;color:#f9f7ff;background:#14121b}
  .privacy-section::before{position:absolute;inset:0;background-image:radial-gradient(rgba(255,255,255,.09) 1px,transparent 1px);background-size:28px 28px;mask-image:linear-gradient(90deg,transparent,black 35%,transparent);content:""}.privacy-orb{position:absolute;width:600px;height:600px;left:-310px;top:-250px;border-radius:50%;background:#5e32e4;filter:blur(100px);opacity:.25}
  .privacy-layout{position:relative;display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:100px}.privacy-lock{width:62px;height:62px;margin-bottom:38px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.13);border-radius:19px;background:rgba(255,255,255,.07);box-shadow:inset 0 1px rgba(255,255,255,.1)}.privacy-lock svg{width:29px;fill:none;stroke:#c7b6ff;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.6}.privacy-copy .kicker{color:#ac94ff}.privacy-copy>p{max-width:560px;margin-top:28px;color:#aaa5b2;font-size:18px;line-height:1.65}.text-link{width:fit-content;margin-top:32px;display:block;color:#d8ccff;font-size:14px;font-weight:650}.text-link span{margin-left:6px}.privacy-list{overflow:hidden;border:1px solid rgba(255,255,255,.1);border-radius:25px;background:rgba(255,255,255,.045);backdrop-filter:blur(20px)}.privacy-list>div{display:flex;gap:18px;padding:25px 28px;border-bottom:1px solid rgba(255,255,255,.08)}.privacy-list>div:last-child{border:0}.privacy-check{width:28px;height:28px;flex:0 0 auto;display:grid;place-items:center;border-radius:50%;color:#bcabff;background:rgba(122,82,244,.18);font-size:13px;font-weight:900}.privacy-list strong,.privacy-list small{display:block}.privacy-list strong{font-size:16px}.privacy-list small{margin-top:6px;color:#96919e;font-size:13px;line-height:1.45}

  .agent-section{padding:120px 0;background:#efedf5}.agent-card{position:relative;overflow:hidden;min-height:570px;display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:80px;padding:75px;border:1px solid rgba(45,34,60,.09);border-radius:38px;background:#fff;box-shadow:0 25px 70px rgba(41,31,58,.09)}.agent-card::before{position:absolute;width:480px;height:480px;right:-200px;bottom:-260px;border-radius:50%;background:#d7c8ff;filter:blur(50px);opacity:.55;content:""}.agent-copy{position:relative;z-index:1}.agent-copy h2{font-size:46px}.agent-copy>p{margin-top:24px;color:var(--ink-soft);font-size:17px;line-height:1.62}.technical-note{margin-top:29px;display:block;color:#746d7a;font-size:12px;font-weight:650}.agent-terminal{position:relative;z-index:1;overflow:hidden;border:1px solid rgba(255,255,255,.12);border-radius:18px;color:#efedf5;background:#18151e;box-shadow:0 30px 60px rgba(31,17,52,.27);transform:rotate(1.5deg)}.terminal-top{height:47px;display:flex;align-items:center;gap:7px;padding:0 16px;border-bottom:1px solid rgba(255,255,255,.08);background:#211e28}.terminal-top span{width:9px;height:9px;border-radius:50%;background:#ff6159}.terminal-top span:nth-child(2){background:#ffbd2e}.terminal-top span:nth-child(3){background:#28c941}.terminal-top em{margin-left:auto;color:#79737f;font-size:10px;font-style:normal}.terminal-body{padding:26px;font:500 13px/1.65 ui-monospace,SFMono-Regular,Menlo,monospace}.terminal-body p i{color:#8c65fa;font-style:normal}.terminal-muted{color:#77717f}.terminal-body p b{color:#4bd281}.terminal-result{margin:20px 0;padding:16px;border:1px solid rgba(255,255,255,.08);border-radius:10px;background:#221e29}.terminal-result span{margin-right:10px;padding:3px 6px;border-radius:5px;color:#c6b3ff;background:#442e72;font-size:9px}.terminal-result code{color:#d8d3dc}.terminal-body small{color:#625c68;font-size:8px;letter-spacing:.09em}

  .faq-section{padding:150px 0;background:#f8f7fb}.faq-layout{display:grid;grid-template-columns:.7fr 1.3fr;gap:120px}.faq-heading{position:sticky;top:130px;align-self:start}.faq-heading h2{font-size:52px}.faq-heading p{margin-top:22px;color:var(--ink-soft);font-size:16px;line-height:1.6}.faq-list{border-top:1px solid var(--line)}details{border-bottom:1px solid var(--line)}summary{position:relative;padding:27px 45px 27px 0;cursor:pointer;font-size:18px;font-weight:650;letter-spacing:-.02em;list-style:none}summary::-webkit-details-marker{display:none}summary span::before,summary span::after{position:absolute;right:4px;top:50%;width:15px;height:1.5px;background:#77717d;content:"";transition:transform .2s ease}summary span::after{transform:rotate(90deg)}details[open] summary span::after{transform:rotate(0)}details p{max-width:650px;padding:0 40px 26px 0;color:var(--ink-soft);font-size:15px;line-height:1.65}

  .closing-section{position:relative;overflow:hidden;padding:140px 0;text-align:center;background:#fff}.closing-section::before{position:absolute;inset:0;background:radial-gradient(circle at 50% 100%,#eee8ff,transparent 50%);content:""}.closing-glow{position:absolute;width:600px;height:180px;left:50%;bottom:-130px;border-radius:50%;background:linear-gradient(90deg,#36c8f3,#743ef1,#f248ae);filter:blur(65px);opacity:.46;transform:translateX(-50%)}.closing-content{position:relative}.closing-content img{margin:0 auto 34px;border-radius:25px;filter:drop-shadow(0 18px 25px rgba(73,36,129,.26))}.closing-content h2{font-size:70px}.closing-content>p{max-width:620px;margin:26px auto 31px;color:var(--ink-soft);font-size:18px;line-height:1.6}.closing-content>.button{margin-inline:auto}.closing-content small{margin-top:22px;display:block;color:#8c8691;font-size:11px}

  .site-footer{padding:30px 0;border-top:1px solid var(--line);background:#fff}.footer-row{display:flex;align-items:center;justify-content:space-between;gap:30px}.footer-brand{font-size:14px}.site-footer p{color:#88828e;font-size:12px}.site-footer nav{display:flex;gap:25px}.site-footer nav a{font-size:12px}
}

@layer responsive {
  @media (max-width: 1050px) {
    .feature-showcase { padding: 50px; gap: 38px; }
    .editor-meta { display: none; }.editor-topbar{grid-template-columns:90px 1fr}.capture-card{min-height:500px}.sample-heading{margin-top:45px}.side-copy.lower{margin-top:110px}
    .bento { padding: 45px; }.agent-card{padding:55px;gap:45px}.agent-copy h2{font-size:40px}.faq-layout{gap:75px}.privacy-layout{gap:65px}
  }

  @media (max-width: 820px) {
    .shell { width: min(100% - 32px, 680px); }
    .nav-links { display: none; }
    .hero { min-height: auto; padding-top: 145px; }
    .hero h1 { line-height: .88; }
    .product-stage { margin-top: 62px; width: min(100% - 16px, 760px); }
    .editor-topbar { height: 54px; grid-template-columns:75px 1fr;padding:0 13px}.tool-strip .tool:nth-of-type(n+6),.tool-strip .divider:nth-of-type(2),.color-chip{display:none}.traffic-lights i{width:10px;height:10px}.editor-canvas{padding:26px}.capture-card{min-height:420px;grid-template-columns:24% 76%}.capture-sidebar{padding:23px 15px}.capture-content{padding:24px}.sample-grid>div{padding:12px}.sample-chart{height:95px}.annotation-arrow{width:160px}.preview-caption{line-height:1.6}
    .principle-grid{grid-template-columns:1fr 1fr;row-gap:28px}.principle:nth-child(2){border:0}.principle{padding:4px 15px}
    .section{padding:100px 0}.section-heading{margin-bottom:52px}.feature-showcase,.feature-annotate{min-height:0;grid-template-columns:1fr;padding:42px}.feature-capture .feature-copy{order:1}.feature-capture .capture-visual{order:2}.feature-annotate .annotation-visual{order:2}.capture-visual,.annotation-visual{min-height:410px}.bento-grid{grid-template-columns:1fr}.bento,.bento-pin,.bento-backdrop{grid-column:auto;min-height:0}.bento-pin,.bento-backdrop{grid-template-columns:1fr;gap:45px}.bento-pin{padding-bottom:30px}.pin-visual{min-height:280px}.backdrop-demo{padding:35px}
    .privacy-section{padding:105px 0}.privacy-layout{grid-template-columns:1fr;gap:55px}.agent-section{padding:80px 0}.agent-card{grid-template-columns:1fr;padding:45px}.faq-section{padding:105px 0}.faq-layout{grid-template-columns:1fr;gap:55px}.faq-heading{position:static}.closing-section{padding:105px 0}.closing-content h2{font-size:clamp(45px,10vw,70px)}
  }

  @media (max-width: 560px) {
    .shell { width: calc(100% - 24px); }
    .site-header .button-small { width:39px;padding:0;font-size:0}.site-header .button-small svg{width:17px}.brand{font-size:15px}.brand img{width:34px;height:34px}
    .hero{padding-top:125px}.hero h1{font-size:clamp(53px,17vw,75px)}.hero-copy>p{font-size:17px}.hero-actions{flex-direction:column;align-items:stretch;max-width:300px;margin-inline:auto}.hero-note{padding-inline:15px;line-height:1.4}
    .product-stage{width:calc(100% - 10px);margin-top:50px}.editor-window{border-radius:14px}.editor-topbar{grid-template-columns:60px 1fr}.traffic-lights{gap:5px}.traffic-lights i{width:8px;height:8px}.tool-strip{justify-content:flex-start}.tool{width:28px;height:28px}.tool:nth-of-type(n+5),.tool-strip .divider{display:none}.editor-canvas{padding:14px}.capture-card{min-height:290px;grid-template-columns:25% 75%}.capture-sidebar{padding:15px 9px}.mini-brand{font-size:8px}.mini-brand i{width:14px;height:14px}.side-copy{margin-top:32px;gap:9px}.side-copy span{height:4px}.side-pill{width:55px;height:18px;margin-top:23px}.side-copy.lower{margin-top:65px}.capture-content{padding:13px}.sample-nav{font-size:7px}.sample-nav span{padding:4px 7px}.sample-heading{margin-top:30px;font-size:24px}.sample-sub{margin-top:9px;font-size:7px}.sample-grid{margin-top:20px;gap:5px}.sample-grid>div{min-height:55px;padding:7px}.sample-grid small{font-size:5px}.sample-grid strong{margin-top:7px;font-size:14px}.sample-chart{height:54px;margin-top:7px}.annotation-box{height:76px;border-width:3px}.annotation-arrow{width:95px;height:65px}.annotation-arrow svg{stroke-width:5}.annotation-label{top:50px;padding:5px 7px;font-size:7px}.annotation-counter{width:24px;height:24px;border-width:3px;font-size:10px}.preview-caption span{display:none}
    .principles{padding:36px 0}.principle-grid{row-gap:24px}.principle strong{font-size:15px}.principle span{font-size:10px}
    .section{padding:82px 0}.section-heading{margin-bottom:42px}.section-heading h2,.privacy-copy h2,.faq-heading h2{font-size:41px}.section-heading>p{font-size:17px}.feature-showcase{padding:30px 22px;border-radius:25px;gap:38px}.feature-copy h3,.bento h3{font-size:36px}.feature-copy>p{font-size:16px}.capture-visual,.annotation-visual{min-height:320px}.window-front{padding:45px 18px 15px}.window-front b{font-size:14px}.selection-frame{inset:20% 10% 15%}.annotation-paper{padding:49px 23px}.paper-cards i{height:70px}.demo-circle{height:95px}.demo-arrow{width:140px}.floating-tools span{width:27px}.check-list{display:grid}.bento{padding:34px 24px;border-radius:25px}.ocr-demo{margin-top:38px;padding:22px}.ocr-demo p{font-size:16px}.ocr-selection{display:none}.history-stack{height:215px}.pin-copy{display:block}.pin-copy .feature-icon{margin-bottom:22px}.pin-copy h3{font-size:34px}.pin-visual{min-height:230px}.backdrop-demo{padding:22px}.backdrop-inner{min-height:190px;padding:50px 22px 20px}
    .privacy-list>div{padding:21px 19px}.agent-card{width:calc(100% - 24px);padding:34px 22px;border-radius:26px}.agent-copy h2{font-size:36px}.agent-terminal{transform:none}.terminal-body{padding:19px;font-size:10px}.terminal-result code{display:block;margin-top:7px}.faq-layout{gap:42px}summary{font-size:16px}.closing-content img{width:90px;height:90px}.closing-content h2{font-size:45px}.footer-row{flex-direction:column;align-items:flex-start}.site-footer p{order:3}.site-footer nav{width:100%;justify-content:space-between}
  }

  @media (prefers-color-scheme: dark) {
    :root{color-scheme:dark;--ink:#f5f2f8;--ink-soft:#aaa4b1;--line:rgba(255,255,255,.1);--surface:#1d1a22;--paper:#131116}
    html,body,.intro-section,.faq-section{background:#131116}.site-header.scrolled::before{background:rgba(19,17,22,.8)}.nav-links a,.site-footer nav a{color:#aaa4b1}.button-quiet{border-color:rgba(255,255,255,.12);background:rgba(255,255,255,.06)}
    .hero{background:radial-gradient(circle at 50% 31%,#221d2c 0,#17141d 42%,#131116 75%)}.hero::after{background:linear-gradient(180deg,transparent,rgba(24,18,35,.9))}.hero-copy>p,.hero-note{color:#aaa4b1}.principles{background:rgba(255,255,255,.025)}
    .feature-showcase,.bento,.agent-card{border-color:rgba(255,255,255,.09);background:#1d1a22}.feature-capture{background:linear-gradient(140deg,#1d1a22,#151f29)}.feature-annotate{background:linear-gradient(140deg,#251922,#1d1a22)}.bento-ocr{background:linear-gradient(145deg,#1d1a22,#211a2f)}.bento-history{background:linear-gradient(145deg,#1d1a22,#17232b)}.bento-pin{background:linear-gradient(145deg,#231f19,#1d1a22)}.bento-backdrop{background:linear-gradient(145deg,#1d1a22,#241a29)}.feature-copy>p,.bento-copy>p,.pin-copy p,.agent-copy>p,.faq-heading p,details p{color:#aaa4b1}.shortcut-row span,.technical-note{color:#928b99}kbd{border-color:#504a56;color:#eeeaf2;background:#29252d}.annotation-paper,.history-card,.pin-window,.ocr-demo{border-color:#37313b;background:#242128}.ocr-demo p{color:#e5e0e8}.floating-tools{border-color:#3a343e;background:#26222a}.paper-title{background:#e9e4ed}.paper-line,.card-one span,.pin-window b,.pin-window em{background:#514a56}.closing-section,.site-footer{background:#18151c}.closing-section::before{background:radial-gradient(circle at 50% 100%,#2b1f49,transparent 50%)}
    .agent-section{background:#100e13}.site-footer p{color:#88818d}
  }

  @media (prefers-reduced-motion: reduce) {
    html{scroll-behavior:auto}.reveal{opacity:1;transform:none;transition:none}.button,.site-header::before{transition:none}
  }
}
