:root {
  color-scheme: light;
  --bg: #f7f8f9;
  --surface: #ffffff;
  --surface-soft: #edf1f3;
  --ink: #17222c;
  --muted: #5b6671;
  --line: rgba(23, 34, 44, 0.14);
  --line-strong: rgba(23, 34, 44, 0.24);
  --charcoal: #29343f;
  --yellow: #ffd84d;
  --yellow-deep: #e9b914;
  --coral: #ff786b;
  --mint: #71d5bb;
  --blue: #62a9ff;
  --page-pad: max(20px, env(safe-area-inset-left));
  --content: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 28px 80px rgba(23, 34, 44, 0.16);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #11161b;
  --surface: #192127;
  --surface-soft: #232d35;
  --ink: #f4f7f9;
  --muted: #acb7c0;
  --line: rgba(244, 247, 249, 0.14);
  --line-strong: rgba(244, 247, 249, 0.25);
  --charcoal: #0b0f13;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.44);
}

@media (prefers-color-scheme: dark) {
  html[data-theme="auto"] {
    color-scheme: dark;
    --bg: #11161b;
    --surface: #192127;
    --surface-soft: #232d35;
    --ink: #f4f7f9;
    --muted: #acb7c0;
    --line: rgba(244, 247, 249, 0.14);
    --line-strong: rgba(244, 247, 249, 0.25);
    --charcoal: #0b0f13;
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.44);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; overflow-x: hidden; background: var(--bg); color: var(--ink); font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif; font-size: 16px; line-height: 1.5; letter-spacing: 0; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.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; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 11px 15px; border-radius: 8px; background: var(--ink); color: var(--surface); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.site-header { position: fixed; z-index: 100; top: max(10px, env(safe-area-inset-top)); left: 50%; width: min(calc(100% - 24px), 980px); min-height: 64px; padding: 8px 10px 8px 14px; display: flex; align-items: center; gap: 18px; border: 1px solid var(--line); border-radius: 32px; background: color-mix(in srgb, var(--surface) 78%, transparent); box-shadow: 0 10px 34px rgba(23, 34, 44, 0.1); backdrop-filter: saturate(160%) blur(20px); -webkit-backdrop-filter: saturate(160%) blur(20px); transform: translateX(-50%); transition: background 220ms ease, box-shadow 220ms ease, width 220ms ease; }
.site-header.is-scrolled { background: color-mix(in srgb, var(--surface) 92%, transparent); box-shadow: 0 14px 44px rgba(23, 34, 44, 0.15); }
.brand { min-height: 44px; display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-size: 18px; font-weight: 780; text-decoration: none; }
.brand img { border-radius: 8px; }
.brand-icon { display: block; flex: 0 0 auto; overflow: visible; border-radius: 8px; transform-origin: center; }
.brand-icon circle { transform-box: fill-box; transform-origin: center; }
.brand.is-logo-playing .brand-icon { animation: brand-logo-tile .72s cubic-bezier(.2, 1.35, .32, 1) both; }
.brand.is-logo-playing .brand-icon path { stroke-dasharray: 48; animation: brand-logo-highlight .72s cubic-bezier(.2, .82, .22, 1) both; }
.brand.is-logo-playing .brand-icon circle { animation: brand-logo-dot .52s cubic-bezier(.2, 1.5, .32, 1) .38s both; }
@keyframes brand-logo-tile {
  0% { transform: scale(.82) rotate(-8deg); }
  56% { transform: scale(1.1) rotate(4deg); }
  100% { transform: scale(1) rotate(0); }
}
@keyframes brand-logo-highlight {
  0% { stroke-dashoffset: 48; opacity: .38; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes brand-logo-dot {
  0% { transform: scale(0); opacity: 0; }
  68% { transform: scale(1.38); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.site-nav { margin: 0 auto; display: flex; align-items: center; gap: 4px; }
.site-nav a { min-height: 44px; padding: 0 14px; display: inline-flex; align-items: center; border-radius: 22px; color: var(--muted); font-size: 14px; font-weight: 680; text-decoration: none; transition: color 180ms ease, background 180ms ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--ink); background: color-mix(in srgb, var(--surface-soft) 75%, transparent); }
.header-actions { display: flex; align-items: center; gap: 6px; }
.control { min-width: 44px; min-height: 44px; border: 0; border-radius: 50%; display: inline-grid; place-items: center; background: color-mix(in srgb, var(--surface-soft) 76%, transparent); cursor: pointer; transition: transform 200ms var(--ease), background 200ms ease; }
.control:hover { transform: scale(1.06) rotate(4deg); }
.control:active { transform: scale(0.94); }
.theme-control { font-size: 20px; }
.nav-toggle { display: none; }

.button { min-height: 48px; padding: 0 21px; border: 1px solid var(--line); border-radius: 24px; display: inline-flex; align-items: center; justify-content: center; color: var(--ink); background: var(--surface); font-weight: 760; text-decoration: none; cursor: pointer; transition: transform 220ms var(--ease), box-shadow 220ms ease, background 220ms ease; }
.button:hover { transform: translateY(-3px) rotate(-1deg); box-shadow: 0 10px 24px rgba(23, 34, 44, 0.13); }
.button:active { transform: scale(0.97); }
.button-primary { border-color: rgba(23, 34, 44, 0.1); background: var(--yellow); color: #17222c; }
.button-primary:hover { background: #ffe573; }
.button-dark { border-color: transparent; background: #27333e; color: #fff; }
.button-quiet { background: transparent; }
.button-small { min-height: 44px; padding: 0 17px; font-size: 14px; }
.button-full { width: 100%; }

.eyebrow { margin: 0 0 15px; color: var(--muted); font-size: 12px; font-weight: 800; line-height: 1.2; text-transform: uppercase; letter-spacing: 0.08em; }
.section { width: min(100%, calc(var(--content) + var(--page-pad) * 2)); margin: 0 auto; padding: 116px var(--page-pad); }

.hero { min-height: 100svh; padding: clamp(108px, 13vh, 142px) var(--page-pad) 64px; background: var(--surface); }
.hero-mark { position: relative; width: min(100%, 900px); margin: 0 auto 48px; text-align: center; isolation: isolate; }
.hero-mark > *:not(.doodle) { position: relative; z-index: 2; }
.doodle { position: absolute; z-index: 1; pointer-events: none; }
.doodle-outline { left: -2%; top: 25%; width: 112px; height: 80px; border: 7px dotted var(--coral); border-radius: 7px; transform: rotate(-9deg); opacity: 0.8; }
.doodle-stroke { right: -3%; top: 31%; width: 124px; height: 64px; border-top: 9px solid var(--blue); border-radius: 50%; transform: rotate(16deg); }
.doodle-stroke::after { content: ""; position: absolute; right: 2px; top: -16px; width: 15px; height: 15px; border: 4px solid var(--blue); border-radius: 50%; }
.doodle-note { right: 3%; bottom: 12%; width: 86px; height: 74px; padding: 24px 8px 8px; background: var(--mint); color: #17222c; font: 700 14px/1.1 "Marker Felt", "Comic Sans MS", cursive; transform: rotate(7deg); box-shadow: 7px 8px 0 rgba(23, 34, 44, 0.12); }
.doodle-note::after { content: ""; position: absolute; right: 0; top: 0; border-style: solid; border-width: 0 20px 20px 0; border-color: transparent color-mix(in srgb, var(--mint) 65%, white) transparent transparent; }

.mark-mix-wordmark { width: min(100%, 680px); min-height: 210px; margin: 0 auto; padding: 12px; border: 0; display: flex; align-items: center; justify-content: center; gap: clamp(6px, 1.5vw, 18px); background: transparent; line-height: 1; cursor: pointer; filter: drop-shadow(0 12px 18px rgba(23, 34, 44, 0.08)); }
.mark-mix-wordmark > span { position: relative; flex: 0 0 auto; display: inline-grid; place-items: center; }
.hero-mix-m, .hero-mix-r, .hero-mix-k b { font-weight: 900; letter-spacing: 0; }
.hero-mix-m { z-index: 1; isolation: isolate; font-size: clamp(104px, 15vw, 170px); text-shadow: 7px 8px 0 rgba(255, 216, 77, 0.92); }
.hero-mix-m::before { content: ""; position: absolute; z-index: -1; left: -15%; bottom: 13%; width: 139%; height: 34%; border-radius: 7px 13px 10px 6px; background: rgba(255, 216, 77, 0.58); box-shadow: inset 0 5px 0 rgba(255, 240, 147, 0.56), 0 3px 0 rgba(206, 169, 38, 0.16); transform: rotate(-3deg) skewX(-7deg); }
.hero-mix-a { width: clamp(80px, 12vw, 128px); height: clamp(80px, 12vw, 128px); border: clamp(12px, 1.25vw, 16px) dotted var(--coral); border-radius: 50%; background: color-mix(in srgb, var(--surface) 52%, transparent); filter: drop-shadow(0 5px 0 rgba(192, 70, 59, 0.18)); box-shadow: inset 0 8px 18px rgba(255, 255, 255, 0.32); }
.hero-mix-a::after { content: ""; position: absolute; right: -15%; top: 1%; width: 13%; height: 98%; border-right: clamp(10px, 1.1vw, 14px) dotted var(--coral); }
.hero-mix-a i { position: absolute; z-index: 2; right: -28%; top: -7%; width: 14px; height: 14px; border: 4px solid var(--coral); border-radius: 50%; background: var(--surface); box-shadow: 0 3px 0 rgba(192, 70, 59, 0.2); }
.hero-mix-r { min-width: clamp(70px, 10vw, 110px); color: var(--blue); font-family: "Marker Felt", "Comic Sans MS", cursive; font-size: clamp(116px, 18vw, 184px); font-weight: 700; transform: rotate(7deg); transform-origin: 35% 85%; }
.hero-mix-r i { position: absolute; right: 3%; top: 26%; width: 12px; height: 12px; border-radius: 50%; background: currentColor; }
.hero-mix-k { width: clamp(88px, 11vw, 126px); height: clamp(96px, 12vw, 138px); border-radius: 2px; background: var(--yellow); transform: rotate(-5deg); box-shadow: 8px 10px 0 rgba(23, 34, 44, 0.13), 0 18px 26px rgba(23, 34, 44, 0.12); }
.hero-mix-k::after { content: ""; position: absolute; right: 0; top: 0; width: 22%; aspect-ratio: 1; background: #fff2a8; clip-path: polygon(0 0, 100% 100%, 0 100%); transform: rotate(180deg); }
.hero-mix-k b { color: #17222c; font-size: clamp(78px, 10vw, 118px); transform: translateY(-2%); }
.hero-mix-k i { position: absolute; left: 10%; bottom: 8%; width: 23%; height: 7px; border-radius: 4px; background: var(--mint); }
.hero-mix-marker { position: absolute; z-index: 3; left: 10%; top: 8%; width: clamp(82px, 9.5vw, 116px); height: clamp(25px, 3vw, 36px); border: 3px solid #17222c; border-radius: 9px 6px 6px 9px; background: linear-gradient(180deg, rgba(255,255,255,.64) 0 25%, transparent 26%), linear-gradient(90deg, #ffe35f 0 68%, #e7bb28 69% 78%, var(--yellow) 79% 100%); box-shadow: 0 5px 0 rgba(23,34,44,.22), 0 9px 14px rgba(23,34,44,.16); transform: rotate(42deg); transform-origin: 50% 50%; }
.hero-mix-marker::before { content: ""; position: absolute; left: -22%; top: -3px; width: 29%; height: calc(100% + 6px); border: 3px solid #17222c; border-radius: 9px 3px 3px 9px; background: #17222c; box-shadow: inset 5px 0 0 rgba(255,255,255,.16), -2px 2px 0 rgba(23,34,44,.14); }
.hero-mix-marker::after { content: ""; position: absolute; right: -29%; top: 7%; width: 32%; height: 86%; border-left: 3px solid #17222c; background: linear-gradient(90deg, #f2ca36 0 55%, #806d27 56% 100%); clip-path: polygon(0 0, 100% 19%, 100% 81%, 0 100%); box-shadow: inset -5px 0 0 rgba(23,34,44,.18); }
.hero-mark.is-visible .mark-mix-wordmark.is-loading .hero-mix-m { animation: hero-mix-m 3.25s var(--ease) both; }
.hero-mark.is-visible .mark-mix-wordmark.is-loading .hero-mix-m::before { animation: hero-mix-highlight 3.25s var(--ease) both; transform-origin: left center; }
.hero-mark.is-visible .mark-mix-wordmark.is-loading .hero-mix-marker { animation: hero-mix-marker 3.25s var(--ease) both; }
.hero-mark.is-visible .mark-mix-wordmark.is-loading .hero-mix-a { animation: hero-mix-a 3.25s var(--ease) both; }
.hero-mark.is-visible .mark-mix-wordmark.is-loading .hero-mix-r { animation: hero-mix-r 3.25s var(--ease) both; }
.hero-mark.is-visible .mark-mix-wordmark.is-loading .hero-mix-k { animation: hero-mix-k 3.25s var(--ease) both; }
.mark-mix-wordmark.is-interacting .hero-mix-marker { animation: hero-handmade-marker 760ms var(--ease); }
.mark-mix-wordmark.is-interacting .hero-mix-a { animation: hero-handmade-a 680ms var(--ease); }
.mark-mix-wordmark.is-interacting .hero-mix-r { animation: hero-handmade-r 520ms steps(4); }
.hero-statement { margin: 12px auto 14px; font-size: clamp(32px, 4.4vw, 58px); font-weight: 830; line-height: 1.02; }
.hero-support { max-width: 720px; margin: 0 auto; color: var(--muted); font-size: clamp(17px, 2vw, 21px); line-height: 1.55; }
.hero-actions { margin-top: 25px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.hero-proof { margin: 17px 0 0; display: flex; align-items: center; justify-content: center; gap: 9px; color: var(--muted); font-size: 13px; font-weight: 690; }
.hero-proof span { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px color-mix(in srgb, var(--mint) 20%, transparent); }

.product-experience { width: min(100%, 1380px); margin: 0 auto; border: 1px solid var(--line-strong); border-radius: 8px; background: #dfe5e9; box-shadow: var(--shadow); overflow: hidden; }
.experience-bar { min-height: 64px; padding: 8px 12px; display: grid; grid-template-columns: 1fr minmax(160px, 1fr) 1fr; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 88%, transparent); backdrop-filter: saturate(150%) blur(18px); -webkit-backdrop-filter: saturate(150%) blur(18px); }
.window-dots { display: flex; gap: 7px; padding-left: 4px; }
.window-dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--coral); }
.window-dots i:nth-child(2) { background: var(--yellow); }
.window-dots i:nth-child(3) { background: var(--mint); }
.experience-bar > p { margin: 0; display: flex; justify-content: center; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; font-weight: 700; }
.experience-bar > p span { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }
.device-switcher { justify-self: end; padding: 3px; display: inline-flex; border: 1px solid var(--line); border-radius: 23px; background: color-mix(in srgb, var(--surface-soft) 70%, transparent); }
.device-switcher button { min-width: 62px; min-height: 44px; padding: 0 10px; border: 0; border-radius: 20px; background: transparent; color: var(--muted); font-size: 12px; font-weight: 760; cursor: pointer; }
.device-switcher button.is-active { background: var(--surface); color: var(--ink); box-shadow: 0 2px 9px rgba(23, 34, 44, 0.12); }
.live-stage { position: relative; height: min(70vh, 720px); min-height: 540px; display: grid; place-items: center; background: #cdd6dc; overflow: hidden; transition: padding 500ms var(--ease), background 300ms ease; }
.live-stage iframe { width: 100%; height: 100%; border: 0; display: block; background: #fff; transition: width 500ms var(--ease), height 500ms var(--ease), border-radius 500ms var(--ease), box-shadow 500ms ease; }
.live-stage[data-device-stage="tablet"], .live-stage[data-device-stage="phone"] { padding: 26px; background: #bdc9cf; }
.live-stage[data-device-stage="tablet"] { min-height: 600px; }
.live-stage[data-device-stage="tablet"] iframe { width: min(78%, 820px); border-radius: 18px; box-shadow: 0 18px 48px rgba(16, 25, 34, 0.24); }
.live-stage[data-device-stage="phone"] iframe { width: min(36%, 390px); border-radius: 24px; box-shadow: 0 18px 48px rgba(16, 25, 34, 0.28); }
.frame-loading { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: #eef2f4; color: #53606c; font-size: 14px; font-weight: 720; transition: opacity 320ms ease, visibility 320ms ease; }
.frame-loading img { border-radius: 14px; animation: breathe 1.8s ease-in-out infinite; }
.frame-loading.is-hidden { opacity: 0; visibility: hidden; }
.experience-note { min-height: 44px; margin: 0; padding: 10px 16px; display: flex; align-items: center; justify-content: center; gap: 9px; background: var(--surface); color: var(--muted); font-size: 13px; }
.experience-note span { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); animation: ping 1.8s ease-in-out infinite; }

.fomo-strip { min-height: 86px; padding: 20px var(--page-pad); display: flex; align-items: center; justify-content: center; gap: clamp(26px, 6vw, 86px); background: var(--yellow); color: #17222c; overflow: hidden; }
.fomo-strip p { margin: 0; flex: 0 0 auto; font-size: 14px; font-weight: 820; }
.fomo-strip p::before { content: "×"; margin-right: 10px; color: #c3362b; font-size: 18px; }

.why { min-height: 680px; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: clamp(50px, 9vw, 120px); }
.why h2, .tools h2, .people h2, .privacy-section h2, .closing h2 { margin: 0; font-size: clamp(44px, 7.5vw, 92px); font-weight: 850; line-height: 0.98; letter-spacing: 0; }
.why-copy { padding-top: 48px; border-top: 8px solid var(--coral); }
.why-copy p { margin: 0 0 30px; color: var(--muted); font-size: clamp(18px, 2.2vw, 24px); line-height: 1.55; }
.why-copy strong { display: inline; font-size: 21px; background: linear-gradient(transparent 54%, color-mix(in srgb, var(--yellow) 75%, transparent) 55%); }

.tools { background: var(--charcoal); color: #fff; }
.tools-heading { padding-bottom: 74px; }
.tools-heading .eyebrow { color: #b7c2cb; }
.tools-heading h2 { max-width: 900px; }
.tool-bands { border-top: 1px solid rgba(255, 255, 255, 0.2); }
.tool-band { min-height: 310px; padding: 42px max(var(--page-pad), calc((100vw - var(--content)) / 2 + var(--page-pad))); display: grid; grid-template-columns: 70px minmax(240px, .78fr) minmax(360px, 1.22fr); align-items: center; gap: 34px; border-bottom: 1px solid rgba(23, 34, 44, 0.18); color: #17222c; overflow: hidden; }
.tool-band:hover .tool-gesture { transform: rotate(-1.5deg) scale(1.025); }
.tool-highlight { background: var(--yellow); }
.tool-outline { background: var(--coral); }
.tool-marker { background: var(--blue); }
.tool-note { background: var(--mint); }
.tool-number { align-self: start; font-size: 13px; font-weight: 820; }
.tool-band h3 { margin: 0; font-size: clamp(40px, 6vw, 78px); line-height: 1; }
.tool-band p { margin: 10px 0 0; max-width: 460px; font-size: clamp(17px, 2vw, 22px); font-weight: 650; }
.tool-copy { min-width: 0; }
.tool-gesture { position: relative; width: min(100%, 460px); height: 190px; justify-self: end; transition: transform 400ms var(--ease); }
.sample-page { position: relative; width: 100%; height: 100%; padding: 23px 25px; overflow: hidden; border: 1px solid rgba(23, 34, 44, .14); border-radius: 8px; background: #fff; box-shadow: 0 18px 36px rgba(23, 34, 44, .14); }
.sample-label { display: block; margin-bottom: 17px; color: #7a8691; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0; }
.sample-copy p { position: relative; z-index: 1; width: 92%; margin: 0; color: #17222c; font-size: clamp(20px, 2.2vw, 29px); font-weight: 790; line-height: 1.22; }
.sample-copy mark { position: relative; padding: 0 2px; border-radius: 3px; background: #ffd84f; color: #111827; box-shadow: 0 0 0 3px #ffd84f; box-decoration-break: clone; -webkit-box-decoration-break: clone; text-decoration: none; }
.tool-band.is-visible .sample-copy mark { animation: true-highlight-in 820ms var(--ease) 180ms both; transform-origin: left center; }
.sample-line { display: block; height: 7px; margin-top: 14px; border-radius: 4px; background: #e6eaed; }
.sample-line-long { width: 74%; }
.sample-line-short { width: 48%; margin-top: 8px; }
.sample-layout { display: grid; grid-template-columns: 1fr 43%; grid-template-rows: auto 1fr; gap: 0 24px; }
.sample-layout .sample-label { grid-column: 1 / -1; }
.sample-layout-copy { padding-top: 14px; }
.sample-layout-copy i { display: block; width: 88%; height: 10px; margin-bottom: 13px; border-radius: 5px; background: #dfe5e9; }
.sample-layout-copy i:nth-child(2) { width: 72%; }
.sample-layout-copy i:nth-child(3) { width: 46%; height: 28px; margin-top: 20px; background: #ffd84f; }
.sample-layout-media { border-radius: 6px; background: linear-gradient(145deg, #d9edf7, #78dfbc); }
.true-outline { position: absolute; right: 14px; top: 43px; width: 49%; height: 132px; border: 4px dotted #ff7d63; border-radius: 16px; }
.true-outline b { position: absolute; left: 50%; top: 8px; width: 54px; height: 20px; border-radius: 999px; background: color-mix(in srgb, #ff7d63 22%, transparent); transform: translateX(-50%); }
.true-outline b::after { content: ""; position: absolute; left: 50%; top: 50%; width: 24px; height: 6px; border-top: 2px dotted #b34131; border-bottom: 2px dotted #b34131; transform: translate(-50%, -50%); }
.true-outline i { position: absolute; width: 11px; height: 11px; border: 2px solid #202832; border-radius: 50%; background: #ff7d63; box-shadow: 0 0 0 2px #fff; }
.true-outline i:nth-of-type(1) { left: -7px; top: -7px; }.true-outline i:nth-of-type(2) { right: -7px; top: -7px; }.true-outline i:nth-of-type(3) { right: -7px; bottom: -7px; }.true-outline i:nth-of-type(4) { left: -7px; bottom: -7px; }
.tool-band.is-visible .true-outline { animation: true-outline-in 700ms var(--ease) 160ms both; }
.sample-draw { padding: 23px 25px; }
.sample-draw-row { display: flex; gap: 12px; height: 104px; }
.sample-draw-row i { flex: 1; border-radius: 6px; background: #e8edf0; }
.sample-draw-row i:nth-child(2) { background: #edf8f5; }
.sample-draw svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.sample-draw path { fill: none; stroke: #5aa7ff; stroke-width: 12; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.tool-band.is-visible .sample-draw path { stroke-dasharray: 520; animation: true-draw-in 1.05s var(--ease) 120ms both; }
.sample-note-page { padding-top: 34px; background: #f8fafb; }
.sample-note-page > .sample-line { width: 44%; }
.true-note { position: absolute; right: 28px; top: 19px; width: 190px; min-height: 145px; padding: 38px 16px 28px; border-radius: 16px; background: #78dfbc; color: #17372f; box-shadow: 0 16px 30px rgba(16, 86, 68, .22); transform: rotate(2deg); }
.true-note p { margin: 0; font: 700 16px/1.35 -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif; }
.note-grip { position: absolute; left: 50%; top: 7px; width: 54px; height: 22px; border-radius: 11px; background: rgba(23, 55, 47, .12); transform: translateX(-50%); }
.note-grip::after { content: ""; position: absolute; left: 50%; top: 50%; width: 24px; height: 6px; border-top: 2px dotted rgba(23, 55, 47, .65); border-bottom: 2px dotted rgba(23, 55, 47, .65); transform: translate(-50%, -50%); }
.note-close { position: absolute; right: 8px; top: 6px; width: 24px; height: 24px; border-radius: 50%; background: rgba(23, 55, 47, .12); }
.note-close::before, .note-close::after { content: ""; position: absolute; left: 6px; top: 11px; width: 12px; height: 2px; border-radius: 2px; background: #17372f; transform: rotate(45deg); }
.note-close::after { transform: rotate(-45deg); }
.note-corner { position: absolute; right: 0; bottom: 0; width: 24px; height: 24px; border-radius: 12px 0 14px 0; background: color-mix(in srgb, #78dfbc 72%, #317966); }
.tool-band.is-visible .true-note { animation: true-note-in 720ms var(--ease) 160ms both; }

@keyframes true-highlight-in { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(-6px -6px -6px -6px); } }
@keyframes true-outline-in { 0% { opacity: 0; transform: scale(.72); } 72% { opacity: 1; transform: scale(1.04); } 100% { opacity: 1; transform: scale(1); } }
@keyframes true-draw-in { from { stroke-dashoffset: 520; } to { stroke-dashoffset: 0; } }
@keyframes true-note-in { 0% { opacity: 0; transform: translate(26px, -22px) rotate(8deg) scale(.76); } 72% { opacity: 1; transform: translate(0, 0) rotate(-1deg) scale(1.04); } 100% { opacity: 1; transform: rotate(2deg) scale(1); } }

.people { padding-top: 130px; padding-bottom: 130px; }
.people-intro { max-width: 850px; }
.people-intro h2 { font-size: clamp(44px, 7vw, 84px); }
.people-intro > p:last-child { max-width: 620px; margin: 25px 0 0; color: var(--muted); font-size: 20px; }
.people-list { margin-top: 76px; border-top: 1px solid var(--line-strong); }
.people-list article { min-height: 170px; padding: 28px 0; display: grid; grid-template-columns: .34fr 1fr; align-items: center; gap: 28px; border-bottom: 1px solid var(--line-strong); }
.people-list span { color: var(--muted); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.people-list h3 { max-width: 780px; margin: 0; font-size: clamp(27px, 4vw, 48px); line-height: 1.08; }
.people-scope { margin: 52px 0 0; padding: 22px 24px; border-left: 8px solid var(--blue); background: var(--surface); color: var(--muted); font-size: 18px; font-weight: 720; box-shadow: 0 12px 36px rgba(23,34,44,.07); }

.privacy-section { background: var(--mint); color: #17222c; }
.privacy-inner { min-height: 620px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(50px, 10vw, 130px); }
.privacy-section .eyebrow { color: #27483f; }
.privacy-section h2 { max-width: 600px; }
.privacy-copy > p { margin: 0; font-size: clamp(19px, 2.3vw, 25px); line-height: 1.5; }
.privacy-copy ul { margin: 30px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; list-style: none; }
.privacy-copy li { min-height: 46px; padding: 0 12px; display: flex; align-items: center; gap: 9px; border: 1px solid rgba(23,34,44,.2); border-radius: 8px; background: rgba(255,255,255,.32); font-weight: 760; }
.privacy-copy li::before { content: "✓"; font-weight: 900; }
.privacy-copy a { display: inline-flex; align-items: center; gap: 12px; font-weight: 820; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.privacy-copy a span { font-size: 24px; transition: transform 180ms ease; }
.privacy-copy a:hover span { transform: translateX(5px); }

.closing { padding: 72px var(--page-pad) max(72px, env(safe-area-inset-bottom)); background: var(--surface); }
.closing-inner { position: relative; width: min(100%, 1120px); min-height: 590px; margin: 0 auto; padding: clamp(44px, 8vw, 96px); display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; background: var(--charcoal); color: #fff; text-align: center; }
.closing-inner::before { content: ""; position: absolute; left: -5%; top: 28%; width: 110%; height: 28%; background: var(--yellow); opacity: .12; transform: rotate(-5deg); }
.closing-inner > * { position: relative; z-index: 1; }
.closing-inner img { margin-bottom: 24px; border-radius: 15px; box-shadow: 0 16px 34px rgba(0,0,0,.22); }
.closing .eyebrow { color: #b8c4cd; }
.closing h2 { max-width: 850px; }
.closing-inner > p:not(.eyebrow) { margin: 22px 0 28px; color: #bdc7ce; font-size: 19px; }

.site-footer { width: min(100%, calc(var(--content) + var(--page-pad) * 2)); min-height: 120px; margin: 0 auto; padding: 26px var(--page-pad) max(26px, env(safe-area-inset-bottom)); display: flex; align-items: center; gap: 30px; color: var(--muted); font-size: 13px; }
.site-footer > p { margin-right: auto; }
.site-footer > div { display: flex; align-items: center; gap: 22px; }
.site-footer a { text-underline-offset: 4px; }

.purchase-dialog { width: min(calc(100% - 24px), 520px); padding: 0; border: 1px solid var(--line); border-radius: 22px; background: color-mix(in srgb, var(--surface) 92%, transparent); color: var(--ink); box-shadow: 0 30px 100px rgba(0,0,0,.34); backdrop-filter: saturate(150%) blur(24px); -webkit-backdrop-filter: saturate(150%) blur(24px); }
.purchase-dialog::backdrop { background: rgba(13,18,23,.38); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); }
.purchase-dialog form { position: relative; padding: 38px; }
.purchase-dialog img { margin-bottom: 24px; border-radius: 12px; }
.purchase-dialog h2 { margin: 0; font-size: 40px; line-height: 1.02; }
.purchase-dialog form > p:not(.eyebrow) { color: var(--muted); }
.dialog-close { position: absolute; top: 16px; right: 16px; font-size: 24px; }
.plan-options { margin: 26px 0 16px; display: grid; grid-template-columns: 1fr; gap: 10px; }
.plan-options div { min-height: 88px; padding: 15px; border: 1px solid var(--line); border-radius: 8px; display: flex; flex-direction: column; justify-content: center; }
.plan-options div.is-featured { border-color: var(--yellow-deep); box-shadow: inset 0 0 0 1px var(--yellow-deep); }
.plan-options span, .plan-options small { display: block; }
.plan-options span { font-weight: 780; }
.plan-options small { margin-top: 3px; color: var(--muted); }
.dialog-note { display: block; margin-top: 14px; color: var(--muted); text-align: center; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes ping { 0%, 100% { box-shadow: 0 0 0 0 rgba(255,120,107,.38); } 50% { box-shadow: 0 0 0 6px rgba(255,120,107,0); } }
@keyframes hero-mix-m { 0% { opacity: 0; transform: translate(-38px,28px) rotate(-9deg) scale(.55); } 14% { opacity: 1; transform: translate(0,-9px) rotate(2deg) scale(1.08); } 22%,100% { opacity: 1; transform: none; } }
@keyframes hero-mix-highlight { 0%,18% { opacity: 0; transform: rotate(-3deg) skewX(-7deg) scaleX(.05); } 22% { opacity: 1; } 46%,100% { opacity: 1; transform: rotate(-3deg) skewX(-7deg) scaleX(1); } }
@keyframes hero-mix-marker { 0%,13% { opacity: 0; transform: translate(-76px,-54px) rotate(24deg) scale(.8); } 19% { opacity: 1; } 43% { transform: translate(-6px,-3px) rotate(38deg) scale(1.04); } 52% { transform: translate(2px,2px) rotate(45deg) scale(.98); } 60%,100% { opacity: 1; transform: rotate(42deg); } }
@keyframes hero-mix-a { 0%,34% { opacity: 0; transform: translateY(28px) rotate(-18deg) scale(.28); } 52% { opacity: 1; transform: translateY(-7px) rotate(6deg) scale(1.15,.9); } 63% { transform: translateY(3px) rotate(-2deg) scale(.96,1.05); } 72%,100% { opacity: 1; transform: none; } }
@keyframes hero-mix-r { 0%,48% { opacity: 0; clip-path: inset(0 100% 0 0); transform: translate(-12px,8px) rotate(-5deg) scale(.82); } 55% { opacity: 1; } 73% { clip-path: inset(0); transform: translate(0,-6px) rotate(11deg) scale(1.05); } 82%,100% { opacity: 1; clip-path: inset(0); transform: rotate(7deg); } }
@keyframes hero-mix-k { 0%,67% { opacity: 0; transform: translate(54px,-58px) rotate(16deg) scale(.72); } 82% { opacity: 1; transform: translate(-5px,5px) rotate(-9deg) scale(1.07); } 90% { transform: translate(2px,-2px) rotate(-3deg) scale(.98); } 100% { opacity: 1; transform: rotate(-5deg); } }
@keyframes hero-handmade-marker { 0%,100% { transform: rotate(42deg); } 38% { transform: rotate(35deg) translate(-5px,-7px) scale(1.06); } 68% { transform: rotate(46deg) translate(2px,2px) scale(.99); } }
@keyframes hero-handmade-a { 0%,100% { filter: drop-shadow(0 5px 0 rgba(192,70,59,.18)); } 46% { filter: drop-shadow(0 7px 0 rgba(192,70,59,.24)) brightness(1.06); transform: rotate(-3deg) scale(1.04); } }
@keyframes hero-handmade-r { 0%,100% { transform: rotate(7deg); } 25% { transform: rotate(2deg) translateY(-3px); } 50% { transform: rotate(11deg) translateY(2px); } 75% { transform: rotate(5deg) translateY(-1px); } }

@media (max-width: 860px) {
  .site-nav a { padding: 0 9px; }
  .why { grid-template-columns: 1fr; gap: 30px; }
  .why-copy { max-width: 680px; padding-top: 30px; }
  .privacy-inner { grid-template-columns: 1fr; gap: 46px; }
  .tool-band { grid-template-columns: 56px minmax(180px,.7fr) 1fr; }
}

@media (max-width: 700px) {
  .site-header { top: max(8px, env(safe-area-inset-top)); width: calc(100% - 16px); min-height: 60px; padding: 7px 8px 7px 12px; gap: 8px; }
  .nav-toggle { display: inline-grid; order: 2; margin-left: auto; }
  .nav-toggle span:not(.sr-only) { position: absolute; width: 18px; height: 2px; border-radius: 1px; background: currentColor; transition: transform 220ms ease; }
  .nav-toggle span:nth-child(2) { transform: translateY(-4px); }
  .nav-toggle span:nth-child(3) { transform: translateY(4px); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }
  .site-nav { position: absolute; top: 68px; left: 0; right: 0; padding: 8px; border: 1px solid var(--line); border-radius: 22px; display: grid; background: color-mix(in srgb, var(--surface) 94%, transparent); box-shadow: 0 18px 44px rgba(23,34,44,.18); backdrop-filter: blur(22px); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { padding: 0 16px; }
  .header-actions { order: 3; }
  .header-actions .button { display: none; }
  .hero { padding: 98px 0 48px; }
  .hero-mark { padding: 0 20px; margin-bottom: 34px; }
  .mark-mix-wordmark { min-height: 156px; padding: 4px; gap: 4px; }
  .hero-mix-m { font-size: 88px; }
  .hero-mix-a { width: 68px; height: 68px; border-width: 10px; }
  .hero-mix-a::after { border-right-width: 10px; }
  .hero-mix-r { min-width: 58px; font-size: 98px; }
  .hero-mix-k { width: 74px; height: 82px; }
  .hero-mix-k b { font-size: 68px; }
  .hero-mix-marker { width: 72px; height: 22px; }
  .hero-statement { font-size: 35px; }
  .hero-support { font-size: 17px; }
  .hero-actions { display: grid; }
  .doodle-outline { left: 8px; top: 29%; width: 62px; height: 50px; border-width: 5px; opacity: .55; }
  .doodle-stroke { right: 8px; top: 32%; width: 70px; border-top-width: 6px; opacity: .65; }
  .doodle-note { display: none; }
  .product-experience { border-left: 0; border-right: 0; border-radius: 0; box-shadow: none; }
  .experience-bar { grid-template-columns: 1fr; padding: 10px; }
  .window-dots, .experience-bar > p { display: none; }
  .device-switcher { justify-self: center; width: min(100%, 320px); }
  .device-switcher button { flex: 1; }
  .live-stage { min-height: 560px; height: 68svh; }
  .live-stage[data-device-stage="tablet"], .live-stage[data-device-stage="phone"] { padding: 18px 12px; }
  .live-stage[data-device-stage="tablet"] iframe { width: min(100%, 640px); border-radius: 18px; }
  .live-stage[data-device-stage="phone"] iframe { width: min(76%, 390px); border-radius: 24px; }
  .experience-note { align-items: flex-start; text-align: left; }
  .fomo-strip { justify-content: flex-start; overflow-x: auto; }
  .section { padding-top: 88px; padding-bottom: 88px; }
  .why { min-height: 0; }
  .why h2, .tools h2, .people h2, .privacy-section h2, .closing h2 { font-size: 45px; }
  .tools-heading { padding-bottom: 54px; }
  .tool-band { min-height: 310px; padding: 30px 20px; grid-template-columns: 42px 1fr; grid-template-areas: "number copy" "gesture gesture"; gap: 20px; }
  .tool-number { grid-area: number; }
  .tool-copy { grid-area: copy; }
  .tool-gesture { grid-area: gesture; justify-self: center; height: 166px; }
  .tool-band h3 { font-size: 48px; }
  .sample-page { padding: 19px 20px; }
  .sample-copy p { font-size: 22px; }
  .sample-layout { grid-template-columns: 1fr 43%; }
  .true-outline { top: 38px; height: 113px; }
  .true-note { right: 20px; top: 12px; width: 180px; min-height: 140px; }
  .people-list article { grid-template-columns: 1fr; gap: 12px; }
  .people-scope { font-size: 16px; }
  .privacy-copy ul { grid-template-columns: 1fr; }
  .closing { padding: 0; }
  .closing-inner { min-height: 570px; padding: 48px 20px; }
  .site-footer { min-height: 170px; flex-wrap: wrap; gap: 10px 22px; }
  .site-footer > p { width: 100%; order: 3; }
  .site-footer > div { margin-left: auto; }
  .purchase-dialog form { padding: 30px 20px 24px; }
  .purchase-dialog h2 { font-size: 36px; }
}

@media (max-width: 420px) {
  .brand span { font-size: 17px; }
  .mark-mix-wordmark { width: 100%; margin-left: 0; }
  .hero-mix-m { font-size: 82px; }
  .hero-mix-a { width: 62px; height: 62px; border-width: 9px; }
  .hero-mix-r { min-width: 52px; font-size: 91px; }
  .hero-mix-k { width: 67px; height: 76px; }
  .hero-mix-k b { font-size: 62px; }
  .hero-mix-marker { left: 22%; }
  .tool-band { min-height: 330px; }
  .tool-gesture { height: 158px; }
  .sample-copy p { width: 100%; font-size: 20px; }
  .true-outline { right: 10px; width: 51%; height: 108px; }
  .true-note { right: 12px; width: 172px; min-height: 134px; padding: 36px 14px 25px; }
  .true-note p { font-size: 15px; }
  .plan-options { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .sample-copy mark, .true-outline, .sample-draw path, .true-note { animation: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header, .site-nav, .purchase-dialog, .experience-bar { background: var(--surface); backdrop-filter: none; -webkit-backdrop-filter: none; }
}
