/* ═══════════════════════════════════════════════════════════
   Sptpro — Business Concierge
   Light editorial look: warm paper, ink, vermilion accent.
   NOTE: motion is intentionally ALWAYS ON. There is deliberately
   no `prefers-reduced-motion` query anywhere in this project.
   ═══════════════════════════════════════════════════════════ */

:root {
  --paper: #FBF7F0;
  --paper-2: #F4EEE3;
  --ink: #15211D;
  --ink-soft: #4A5651;
  --line-c: rgba(21, 33, 29, .13);
  --accent: #FF5B35;
  --accent-d: #D9411D;
  --mint: #CFEBDD;
  --mint-d: #2A7A5E;
  --butter: #FCE6A4;
  --sky: #D2E4FA;
  --blush: #FBD8CE;
  --lilac: #E4DBF9;

  --f-display: 'Bricolage Grotesque', 'Segoe UI', sans-serif;
  --f-serif: 'Instrument Serif', Georgia, serif;
  --f-body: 'Hanken Grotesk', 'Segoe UI', sans-serif;

  --r-lg: 32px;
  --r-md: 22px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
  --shadow: 0 1px 0 rgba(21,33,29,.04), 0 18px 40px -18px rgba(21,33,29,.22);
}

.tint-butter { --tint: var(--butter); }
.tint-mint   { --tint: var(--mint); }
.tint-sky    { --tint: var(--sky); }
.tint-blush  { --tint: var(--blush); }
.tint-lilac  { --tint: var(--lilac); }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 110px; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font: 400 17px/1.6 var(--f-body); -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
::selection { background: var(--accent); color: var(--paper); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.wrap { width: min(1240px, 100% - 48px); margin-inline: auto; position: relative; }
.skip { position: fixed; left: 16px; top: -60px; z-index: 100; background: var(--ink); color: var(--paper); padding: 10px 16px; border-radius: 12px; transition: top .2s; }
.skip:focus { top: 16px; }

/* ── atmosphere ─────────────────────────────────────────── */
.grain {
  position: fixed; inset: -50%; z-index: 90; pointer-events: none; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain { 0%{transform:translate(0,0)} 20%{transform:translate(-3%,2%)} 40%{transform:translate(2%,-3%)} 60%{transform:translate(-2%,-2%)} 80%{transform:translate(3%,3%)} 100%{transform:translate(0,0)} }

.cursor-blob {
  position: fixed; left: 0; top: 0; width: 14px; height: 14px; margin: -7px 0 0 -7px; border-radius: 50%;
  background: var(--accent); z-index: 95; pointer-events: none; opacity: 0; mix-blend-mode: multiply;
  transition: width .3s var(--ease), height .3s var(--ease), margin .3s var(--ease), opacity .3s;
}
.cursor-blob.on { opacity: .9; }
.cursor-blob.big { width: 64px; height: 64px; margin: -32px 0 0 -32px; opacity: .28; }
@media (hover: none), (pointer: coarse) { .cursor-blob { display: none; } }

.progress { position: fixed; left: 0; top: 0; height: 3px; width: 100%; background: var(--accent); transform: scaleX(0); transform-origin: left; z-index: 80; }

.blob { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; z-index: 0; }
.blob.b1 { width: 520px; height: 520px; right: -120px; top: -80px; background: var(--tint, var(--butter)); opacity: .9; animation: blob 16s ease-in-out infinite alternate; }
.blob.b2 { width: 420px; height: 420px; left: -160px; bottom: -120px; background: var(--blush); opacity: .7; animation: blob 20s ease-in-out infinite alternate-reverse; }
@keyframes blob { 0%{transform:translate(0,0) scale(1)} 50%{transform:translate(-60px,50px) scale(1.15)} 100%{transform:translate(40px,-30px) scale(.95)} }

/* ── type ───────────────────────────────────────────────── */
.display {
  font: 700 clamp(2.9rem, 6.3vw, 6rem)/.94 var(--f-display); letter-spacing: -.04em; font-variation-settings: 'opsz' 96;
}
.display.sm { font-size: clamp(2.5rem, 5.2vw, 4.6rem); line-height: 1; }
.h2 { font: 700 clamp(2.1rem, 4.4vw, 3.8rem)/1 var(--f-display); letter-spacing: -.035em; }
.display em, .h2 em, .statement em, .cta-box h2 em {
  font-family: var(--f-serif); font-style: italic; font-weight: 400; letter-spacing: -.02em; color: var(--accent);
}
.lead { font-size: clamp(1.05rem, 1.35vw, 1.25rem); color: var(--ink-soft); max-width: 56ch; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font: 600 .78rem/1 var(--f-body); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft);
}
.eyebrow.pill { padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,.7); border: 1px solid var(--line-c); color: var(--ink); backdrop-filter: blur(6px); }
.eyebrow .ico { width: 16px; height: 16px; }
.eyebrow.on-dark { color: rgba(251,247,240,.75); }
.ulink { background: linear-gradient(var(--accent), var(--accent)) 0 100%/100% 2px no-repeat; transition: background-size .35s var(--ease), color .2s; padding-bottom: 2px; font-weight: 600; }
.ulink:hover { background-size: 100% 100%; color: var(--paper); }
.ico { width: 24px; height: 24px; flex: none; }
.chk { width: 18px; height: 18px; flex: none; }

.status-dot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: #2FB67C; flex: none; }
.status-dot::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: inherit; animation: ping 1.8s ease-out infinite; }
@keyframes ping { to { transform: scale(3.2); opacity: 0; } }

/* ── buttons ────────────────────────────────────────────── */
.btn {
  --bg: var(--ink); --fg: var(--paper);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; overflow: hidden; isolation: isolate;
  padding: 14px 24px; border-radius: 999px; font: 600 1rem/1 var(--f-body); background: var(--bg); color: var(--fg); cursor: pointer;
  transition: color .35s var(--ease), box-shadow .35s var(--ease), transform .25s var(--ease); will-change: transform;
}
.btn::before { content: ''; position: absolute; z-index: -1; left: 50%; top: 100%; width: 140%; aspect-ratio: 1; border-radius: 50%; background: var(--hover, var(--accent)); transform: translate(-50%, 0) scale(0); transition: transform .55s var(--ease); }
.btn:hover::before { transform: translate(-50%, -55%) scale(1); }
.btn .arr { width: 18px; height: 18px; transition: transform .35s var(--spring); }
.btn:hover .arr { transform: translateX(5px); }
.btn-lg { padding: 18px 30px; font-size: 1.05rem; }
.btn-sm { padding: 11px 18px; font-size: .92rem; }
.btn-accent { --bg: var(--accent); --hover: var(--ink); box-shadow: 0 14px 30px -12px rgba(255,91,53,.65); }
.btn-ink { --hover: var(--accent); }
.btn-ghost { --bg: transparent; --fg: var(--ink); --hover: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn-ghost:hover { color: var(--paper); }
.btn-line-light { --bg: transparent; --fg: var(--paper); --hover: var(--paper); box-shadow: inset 0 0 0 1.5px rgba(251,247,240,.4); }
.btn-line-light:hover { color: var(--ink); }

/* ── nav ────────────────────────────────────────────────── */
.nav {
  position: fixed; z-index: 70; top: 14px; left: 50%; transform: translateX(-50%); width: min(1240px, 100% - 28px);
  display: flex; align-items: center; gap: 28px; padding: 10px 10px 10px 20px; border-radius: 999px;
  background: rgba(251,247,240,.78); backdrop-filter: blur(14px) saturate(1.4); border: 1px solid var(--line-c);
  transition: box-shadow .4s, top .4s var(--ease), background .4s; animation: navIn .9s var(--ease) both;
}
@keyframes navIn { from { transform: translate(-50%, -120%); } }
.nav.is-scrolled { top: 8px; box-shadow: var(--shadow); background: rgba(251,247,240,.92); }
.nav.is-hidden { top: -90px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font: 700 1.35rem/1 var(--f-display); letter-spacing: -.04em; }
.logo sup { font: 400 italic .85rem/1 var(--f-serif); letter-spacing: 0; color: var(--accent-d); margin-left: 3px; top: -.7em; position: relative; }
.logo-mark { width: 36px; height: 36px; border-radius: 12px; background: var(--accent); color: var(--paper); display: grid; place-items: center; transition: transform .5s var(--spring); }
.logo-mark svg { width: 20px; height: 20px; transform-origin: 50% 20%; }
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.06); }
.logo:hover .logo-mark svg { animation: ring .7s ease-in-out; }
@keyframes ring { 0%,100%{transform:rotate(0)} 20%{transform:rotate(16deg)} 40%{transform:rotate(-14deg)} 60%{transform:rotate(9deg)} 80%{transform:rotate(-5deg)} }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links > a, .has-drop > a { display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px; border-radius: 999px; font-weight: 500; font-size: .97rem; transition: background .25s; }
.nav-links > a:hover, .has-drop:hover > a { background: rgba(21,33,29,.07); }
.chev { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.has-drop { position: relative; }
.has-drop:hover .chev, .has-drop:focus-within .chev { transform: rotate(180deg); }
.drop {
  position: absolute; left: 50%; top: calc(100% + 14px); width: 560px; padding: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--paper); border: 1px solid var(--line-c); border-radius: 24px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translate(-50%, 10px) scale(.98); transform-origin: top; transition: .3s var(--ease);
}
.drop::before { content: ''; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translate(-50%, 0) scale(1); }
.drop-link { display: flex; align-items: center; gap: 12px; padding: 9px 10px; border-radius: 14px; font-size: .95rem; font-weight: 500; transition: background .2s, transform .3s var(--ease); }
.drop-link:hover { background: var(--paper-2); transform: translateX(4px); }
.drop-ico { width: 36px; height: 36px; border-radius: 11px; background: var(--tint); display: grid; place-items: center; flex: none; }
.drop-ico .ico { width: 18px; height: 18px; }
.burger { display: none; width: 46px; height: 46px; border-radius: 50%; background: var(--ink); position: relative; flex: none; }
.burger span { position: absolute; left: 14px; right: 14px; height: 2px; background: var(--paper); border-radius: 2px; transition: .35s var(--ease); }
.burger span:first-child { top: 19px; } .burger span:last-child { top: 26px; }
.burger[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 60; background: var(--paper); clip-path: circle(0 at calc(100% - 50px) 50px); transition: clip-path .7s var(--ease); overflow-y: auto; visibility: hidden; }
.mobile-menu.open { clip-path: circle(150% at calc(100% - 50px) 50px); visibility: visible; }
.mm-inner { padding: 110px 24px 40px; display: grid; gap: 22px; }
.mm-services { display: grid; gap: 2px; }
.mm-services a { display: flex; align-items: center; gap: 12px; padding: 11px 0; font: 600 1.2rem/1.2 var(--f-display); letter-spacing: -.02em; border-bottom: 1px solid var(--line-c); }
.mm-services .ico { width: 20px; height: 20px; color: var(--accent-d); }
.mm-links { display: flex; flex-wrap: wrap; gap: 8px 20px; font-weight: 500; }

/* ── load + reveal motion ───────────────────────────────── */
.load { opacity: 0; animation: rise .9s var(--ease) var(--d, 0s) forwards; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.ln { display: block; overflow: hidden; padding-bottom: .12em; margin-bottom: -.12em; }
.ln > span { display: inline-block; transform: translateY(115%) rotate(4deg); transform-origin: left top; animation: lineUp 1s var(--ease) var(--d, 0s) forwards; }
@keyframes lineUp { to { transform: none; } }
.load-art { opacity: 0; animation: artIn 1.2s var(--ease) .25s forwards; }
@keyframes artIn { from { opacity: 0; transform: scale(.9) translateY(30px) rotate(2deg); } to { opacity: 1; transform: none; } }

.js [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease) var(--d, 0s), transform .9s var(--ease) var(--d, 0s); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js [data-words] .w { opacity: .14; transition: opacity .4s; }
.js [data-words] .w.on { opacity: 1; }

/* ── decorations (small animated details) ───────────────── */
.deco { position: absolute; pointer-events: none; color: var(--ink); }
.deco-asterisk { width: 56px; height: 56px; color: var(--accent); animation: spin 9s linear infinite; }
.deco-spark { width: 26px; height: 26px; color: var(--accent); animation: twinkle 2.4s ease-in-out infinite; }
.deco-flower { width: 90px; height: 90px; color: var(--accent); animation: spin 14s linear infinite; }
.deco-ring { width: 120px; height: 120px; animation: spin 18s linear infinite; }
.deco-spring { width: 46px; height: 92px; color: var(--accent); transform-origin: 50% 100%; animation: springy 2.2s var(--spring) infinite alternate; }
.deco-plane { width: 44px; height: 44px; }
.deco-clock { position: static; display: inline-block; width: 22px; height: 22px; }
.deco-clock .hand-m { transform-origin: 30px 30px; animation: spin 4s linear infinite; }
.deco-clock .hand-h { transform-origin: 30px 30px; animation: spin 48s linear infinite; }
.deco-arrow { width: 100px; height: 76px; color: var(--accent-d); }
.deco-arrow .draw, .squiggle path, .scribble path { stroke-dasharray: 100; stroke-dashoffset: 100; }
.is-in .deco-arrow .draw, .deco-arrow.is-in .draw { animation: draw 1.4s var(--ease) .3s forwards; }
.is-in .deco-arrow .draw.d2, .deco-arrow.is-in .draw.d2 { animation-delay: 1.3s; animation-duration: .5s; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes twinkle { 0%,100% { transform: scale(.45) rotate(0); opacity: .35; } 50% { transform: scale(1) rotate(90deg); opacity: 1; } }
@keyframes springy { from { transform: scaleY(.72) rotate(-4deg); } to { transform: scaleY(1.08) rotate(4deg); } }
@keyframes draw { to { stroke-dashoffset: 0; } }

.squiggle { position: absolute; left: -2%; bottom: -.08em; width: 104%; height: .22em; color: var(--ink); overflow: visible; }
.squiggle path { animation: draw 1.1s var(--ease) 1.2s forwards; }
.hl { position: relative; display: inline-block; }
.h1-spark { width: .5em; height: .5em; right: -.55em; top: -.1em; left: auto; animation-delay: .4s; }

.badge-rot { width: 140px; height: 140px; left: -18px; bottom: 22px; pointer-events: auto; }
.badge-rot svg { width: 100%; height: 100%; }
.badge-spin { transform-origin: 70px 70px; animation: spin 16s linear infinite; }
.badge-rot text { font: 600 11.500px var(--f-body); letter-spacing: .16em; fill: var(--ink); }
.badge-core { position: absolute; inset: 34px; border-radius: 50%; background: var(--ink); color: var(--paper); display: grid; place-items: center; transition: transform .5s var(--spring), background .3s; }
.badge-core svg { width: 30px; height: 30px; transform-origin: 50% 20%; animation: ring 2.8s ease-in-out infinite; }
.badge-rot:hover .badge-core { transform: scale(1.12); background: var(--accent); }

.eyes { display: flex; gap: 8px; right: 8%; top: -34px; }
.eye { width: 52px; height: 68px; border-radius: 50%; background: var(--paper); border: 2.5px solid var(--ink); display: grid; place-items: center; animation: blinkEye 5s infinite; }
.eye i { width: 22px; height: 22px; border-radius: 50%; background: var(--ink); transform: translate(var(--ex, 0), var(--ey, 0)); transition: transform .12s linear; position: relative; }
.eye i::after { content: ''; position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--paper); right: 3px; top: 3px; }
@keyframes blinkEye { 0%, 94%, 100% { transform: scaleY(1); } 97% { transform: scaleY(.08); } }

/* ── hero ───────────────────────────────────────────────── */
.hero { position: relative; padding: 120px 0 70px; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 40px; align-items: center; z-index: 1; }
.hero-copy { display: grid; gap: 22px; justify-items: start; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: .95rem; color: var(--ink-soft); }
.hero-points li { display: inline-flex; align-items: center; gap: 8px; }
.hero-points .chk { color: var(--mint-d); }
.hero-art { position: relative; }
.hero-art .illo { width: 100%; height: auto; transform: translate(var(--px, 0), var(--py, 0)); transition: transform .5s var(--ease); overflow: visible; }
.art-ast { left: 0; bottom: 9%; width: 60px; height: 60px; }
.scroll-cue { position: absolute; left: 50%; bottom: 22px; width: 28px; height: 46px; margin-left: -14px; border: 2px solid var(--ink); border-radius: 20px; z-index: 2; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 9px; margin-left: -2px; border-radius: 4px; background: var(--accent); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(18px); opacity: 0; } 100% { transform: translateY(0); opacity: 0; } }

/* ── marquee ────────────────────────────────────────────── */
.marquee { border-block: 1.5px solid var(--ink); overflow: hidden; background: var(--paper); position: relative; z-index: 1; transform: rotate(-1.2deg) scale(1.02); margin-block: 10px 30px; }
.marquee-track { display: flex; align-items: center; gap: 34px; width: max-content; padding: 18px 0; animation: marquee 48s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font: 600 clamp(1.4rem, 2.6vw, 2.2rem)/1 var(--f-display); letter-spacing: -.03em; white-space: nowrap; }
.marquee span:nth-of-type(3n) { font-family: var(--f-serif); font-style: italic; font-weight: 400; }
.marquee .deco { position: static; width: 26px; height: 26px; flex: none; animation-duration: 5s; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── sections ───────────────────────────────────────────── */
section { position: relative; }
.intro, .services, .how, .samples, .pricing, .faq, .handles, .notes, .others, .form-sec, .legal { padding: clamp(70px, 9vw, 130px) 0; }
.sec-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: clamp(36px, 5vw, 64px); }
.sec-head > div { display: grid; gap: 18px; }
.sec-head.center { flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.sec-note { max-width: 38ch; color: var(--ink-soft); position: relative; }
.sec-sub { color: var(--ink-soft); max-width: 52ch; }
.sec-arrow { left: -110px; top: -40px; transform: rotate(8deg); }

.intro-flower { right: 0; top: -40px; }
.statement { font: 600 clamp(1.7rem, 3.5vw, 3.1rem)/1.15 var(--f-display); letter-spacing: -.03em; max-width: 24ch; max-width: 1000px; margin-top: 24px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: clamp(50px, 7vw, 90px); }
.stat { border-top: 1.5px solid var(--ink); padding-top: 18px; display: grid; gap: 6px; }
.stat strong { font: 700 clamp(2.8rem, 5vw, 4.4rem)/1 var(--f-display); letter-spacing: -.05em; }
.stat strong small { font-size: .45em; color: var(--accent); margin-left: 2px; }
.stat > span { color: var(--ink-soft); font-size: .98rem; max-width: 22ch; }

/* service cards */
.services { background: linear-gradient(var(--paper), var(--paper-2)); }
.services-ring { right: 2%; bottom: 24px; opacity: .8; width: 90px; height: 90px; }
.s-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.s-card {
  position: relative; display: flex; flex-direction: column; gap: 14px; min-height: 310px; padding: 28px; border-radius: var(--r-lg); overflow: hidden; cursor: pointer;
  background: var(--tint); border: 1.5px solid transparent; transform-style: preserve-3d;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .3s, opacity .9s var(--ease) var(--d, 0s);
}
.s-card:hover { border-color: var(--ink); box-shadow: 0 30px 50px -28px rgba(21,33,29,.45); }
.s-card-glow { position: absolute; inset: 0; background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 0%), rgba(255,255,255,.75), transparent 60%); opacity: 0; transition: opacity .4s; pointer-events: none; }
.s-card:hover .s-card-glow { opacity: 1; }
.s-card-top { display: flex; align-items: center; justify-content: space-between; position: relative; }
.s-card-ico { width: 58px; height: 58px; border-radius: 18px; background: var(--paper); display: grid; place-items: center; border: 1.5px solid var(--ink); transition: transform .5s var(--spring), background .3s, color .3s; }
.s-card:hover .s-card-ico { transform: rotate(-10deg) scale(1.08); background: var(--ink); color: var(--paper); }
.s-card:hover .s-card-ico .ico { animation: wiggle .6s ease-in-out; }
@keyframes wiggle { 0%,100%{transform:rotate(0)} 25%{transform:rotate(14deg)} 50%{transform:rotate(-12deg)} 75%{transform:rotate(6deg)} }
.s-card-num { font: 400 italic 1.5rem/1 var(--f-serif); opacity: .55; }
.s-card h3 { font: 700 1.6rem/1.05 var(--f-display); letter-spacing: -.03em; margin-top: auto; position: relative; }
.s-card p { color: var(--ink-soft); font-size: .98rem; position: relative; }
.s-card-more { display: flex; align-items: center; justify-content: space-between; font-weight: 600; font-size: .95rem; padding-top: 14px; border-top: 1.5px solid rgba(21,33,29,.18); position: relative; }
.s-card-arrow { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--ink); display: grid; place-items: center; overflow: hidden; transition: background .3s, color .3s, transform .5s var(--spring); }
.s-card-arrow svg { width: 17px; height: 17px; }
.s-card:hover .s-card-arrow { background: var(--accent); border-color: var(--accent); color: var(--paper); transform: rotate(45deg) scale(1.1); }

/* how */
.how { overflow: hidden; }
.how-track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.how-line { position: absolute; left: 0; right: 0; top: 0; width: 100%; height: 90px; color: var(--ink); overflow: visible; }
.how-step { position: relative; display: grid; gap: 12px; justify-items: start; padding-top: 10px; }
.how-num { width: 72px; height: 72px; border-radius: 50%; background: var(--paper); border: 1.5px solid var(--ink); display: grid; place-items: center; font: 400 italic 2rem/1 var(--f-serif); position: relative; transition: transform .5s var(--spring), background .3s, color .3s; }
.how-step:hover .how-num { background: var(--accent); color: var(--paper); transform: scale(1.1) rotate(-8deg); }
.how-step:nth-child(odd) .how-num { background: var(--butter); } .how-step:nth-child(even) .how-num { background: var(--mint); }
.how-ico { position: absolute; left: 52px; top: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--ink); color: var(--paper); display: grid; place-items: center; animation: floaty 3s ease-in-out infinite; }
.how-step:nth-child(even) .how-ico { animation-delay: -1.5s; }
.how-ico .ico { width: 16px; height: 16px; }
.how-step h3 { font: 700 1.45rem/1.1 var(--f-display); letter-spacing: -.03em; margin-top: 10px; }
.how-step p { color: var(--ink-soft); font-size: .98rem; max-width: 28ch; }
.how-plane { left: 0; top: 46%; animation: flyAcross 14s linear infinite; }
@keyframes flyAcross { 0% { transform: translate(-10vw, 40px) rotate(8deg); } 50% { transform: translate(50vw, -50px) rotate(-6deg); } 100% { transform: translate(110vw, 30px) rotate(10deg); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* samples */
.samples { background: var(--paper-2); }
.sample-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sample { background: var(--paper); border: 1.5px solid var(--ink); border-radius: 26px 26px 26px 6px; padding: 24px; display: grid; gap: 16px; align-content: start; box-shadow: 5px 5px 0 var(--ink); transition: transform .4s var(--spring), box-shadow .4s var(--ease), opacity .9s var(--ease) var(--d,0s); }
.sample:hover { transform: translate(-3px, -3px) rotate(-.6deg); box-shadow: 9px 9px 0 var(--accent); }
.sample header { display: flex; justify-content: space-between; align-items: center; }
.tag { font: 600 .74rem/1 var(--f-body); letter-spacing: .1em; text-transform: uppercase; padding: 7px 11px; border-radius: 999px; background: var(--butter); }
.sample:nth-child(3n+2) .tag { background: var(--mint); } .sample:nth-child(3n) .tag { background: var(--sky); }
.sample p { font: 400 italic 1.35rem/1.25 var(--f-serif); }
.sample footer { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--mint-d); }
.typing { display: inline-flex; gap: 4px; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); animation: typing 1.2s ease-in-out infinite; }
.typing i:nth-child(2) { animation-delay: .15s; } .typing i:nth-child(3) { animation-delay: .3s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: .3; } 30% { transform: translateY(-5px); opacity: 1; } }

/* pricing */
.pricing-spring { left: 1%; top: 30px; }
.p-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.p-card { position: relative; display: flex; flex-direction: column; gap: 16px; padding: 32px; border-radius: var(--r-lg); background: #fff; border: 1.5px solid var(--line-c); transition: transform .5s var(--ease), box-shadow .5s, border-color .3s, opacity .9s var(--ease) var(--d,0s); }
.p-card:hover { transform: translateY(-8px); border-color: var(--ink); box-shadow: var(--shadow); }
.p-card.is-featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.p-card h3 { font: 700 1.7rem/1 var(--f-display); letter-spacing: -.03em; }
.p-blurb { color: var(--ink-soft); } .is-featured .p-blurb { color: rgba(251,247,240,.7); }
.p-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; padding: 18px 0; border-block: 1.5px dashed var(--line-c); }
.is-featured .p-price { border-color: rgba(251,247,240,.25); }
.p-price strong { font: 700 2.6rem/1 var(--f-display); letter-spacing: -.04em; }
.p-price span { color: var(--ink-soft); font-size: .95rem; } .is-featured .p-price span { color: rgba(251,247,240,.7); }
.p-card ul { display: grid; gap: 11px; margin-bottom: auto; padding-bottom: 10px; }
.p-card li { display: flex; gap: 10px; align-items: flex-start; font-size: .98rem; }
.p-card li .chk { margin-top: 4px; color: var(--accent); }
.is-featured .btn-accent { --hover: var(--paper); } .is-featured .btn-accent:hover { color: var(--ink); }
.sticker { position: absolute; right: 22px; top: -16px; display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px; border-radius: 999px; background: var(--butter); color: var(--ink); font: 600 .8rem/1 var(--f-body); border: 1.5px solid var(--ink); animation: stickerWob 3s ease-in-out infinite; }
.sticker .deco { position: static; width: 14px; height: 14px; }
@keyframes stickerWob { 0%,100% { transform: rotate(4deg); } 50% { transform: rotate(-3deg) translateY(-3px); } }
.fineprint { text-align: center; color: var(--ink-soft); font-size: .9rem; margin-top: 30px; }

/* faq */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.faq-side { position: sticky; top: 120px; display: grid; gap: 18px; justify-items: start; }
.qmark { font: 400 italic 11rem/.8 var(--f-serif); color: var(--accent); margin-top: 20px; transform-origin: 50% 100%; animation: qBounce 2.6s var(--spring) infinite; }
@keyframes qBounce { 0%,100% { transform: rotate(-8deg) translateY(0); } 50% { transform: rotate(8deg) translateY(-14px); } }
.faq-item { border-bottom: 1.5px solid var(--ink); }
.faq-item:first-child { border-top: 1.5px solid var(--ink); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 4px; text-align: left; font: 600 1.25rem/1.25 var(--f-display); letter-spacing: -.02em; transition: padding .4s var(--ease), color .2s; }
.faq-q:hover { padding-left: 14px; color: var(--accent-d); }
.faq-plus { position: relative; width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--ink); flex: none; transition: transform .5s var(--spring), background .3s; }
.faq-plus::before, .faq-plus::after { content: ''; position: absolute; left: 50%; top: 50%; width: 14px; height: 2px; margin: -1px 0 0 -7px; background: currentColor; transition: transform .4s var(--ease); }
.faq-plus::after { transform: rotate(90deg); }
.faq-item.open .faq-plus { transform: rotate(180deg); background: var(--accent); border-color: var(--accent); color: var(--paper); }
.faq-item.open .faq-plus::after { transform: rotate(0); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease); }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 60px 26px 4px; color: var(--ink-soft); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }

/* CTA */
.cta-band { padding: 40px 0 clamp(70px, 9vw, 120px); }
.cta-box { position: relative; background: var(--ink); color: var(--paper); border-radius: 44px; padding: clamp(50px, 8vw, 110px) clamp(26px, 6vw, 90px); display: grid; gap: 24px; justify-items: start; }
.cta-box::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(600px circle at 85% 110%, rgba(255,91,53,.5), transparent 60%), radial-gradient(500px circle at 0% 0%, rgba(207,235,221,.18), transparent 60%); pointer-events: none; }
.cta-box > * { position: relative; }
.cta-box h2 { font: 700 clamp(2.4rem, 5.6vw, 5rem)/.98 var(--f-display); letter-spacing: -.04em; max-width: 16ch; }
.cta-sub { color: rgba(251,247,240,.75); max-width: 50ch; font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.cta-box > .deco { position: absolute; }
.cta-ast { right: 7%; bottom: 14%; width: 90px; height: 90px; }
.cta-ring { right: 20%; top: 22%; color: rgba(251,247,240,.5); }
.cta-sp1 { right: 34%; bottom: 20%; color: var(--butter); } .cta-sp2 { right: 12%; top: 40%; color: var(--mint); animation-delay: .8s; }

/* footer */
.footer { background: var(--paper-2); padding: 80px 0 30px; border-top: 1.5px solid var(--ink); overflow: hidden; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; }
.footer-brand { display: grid; gap: 18px; align-content: start; justify-items: start; max-width: 36ch; color: var(--ink-soft); }
.footer-brand .logo { color: var(--ink); }
.status { display: inline-flex; align-items: center; gap: 10px; font-size: .9rem; }
.footer-col { display: grid; gap: 10px; align-content: start; justify-items: start; font-size: .97rem; }
.footer-col h4 { font: 600 .78rem/1 var(--f-body); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.footer-col h4.mt { margin-top: 22px; }
.footer-col a { position: relative; transition: transform .3s var(--ease), color .2s; }
.footer-col a:hover { transform: translateX(6px); color: var(--accent-d); }
.addr { color: var(--ink-soft); max-width: 28ch; }
.wordmark { display: flex; justify-content: center; font: 800 clamp(5rem, 21vw, 19rem)/.8 var(--f-display); letter-spacing: -.06em; margin: 60px 0 10px; user-select: none; }
.wordmark span { display: inline-block; animation: wave 3.2s ease-in-out calc(var(--i) * .14s) infinite; transition: color .3s; }
.wordmark span:hover { color: var(--accent); }
.wordmark span:last-child { color: var(--accent); animation: spin 10s linear infinite; transform-origin: 50% 36%; }
@keyframes wave { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-4%); } }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--line-c); font-size: .86rem; color: var(--ink-soft); }
.to-top { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); }
.to-top svg { width: 38px; height: 38px; padding: 9px; border-radius: 50%; border: 1.5px solid var(--ink); animation: floaty 2s ease-in-out infinite; transition: background .3s, color .3s; }
.to-top:hover svg { background: var(--ink); color: var(--paper); }

/* cookie */
.cookie { position: fixed; z-index: 85; left: 18px; bottom: 18px; width: min(430px, calc(100% - 36px)); padding: 18px; border-radius: 24px; background: #fff; border: 1.5px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); display: grid; grid-template-columns: 54px 1fr; gap: 12px 14px; font-size: .92rem; animation: cookieIn .8s var(--spring) 1.4s both; }
.cookie a { text-decoration: underline; text-underline-offset: 3px; }
.cookie-ico .mini-illo { width: 54px; height: 54px; }
.cookie-actions { grid-column: 1 / -1; display: flex; gap: 8px; justify-content: flex-end; }
.cookie.bye { animation: cookieOut .5s var(--ease) forwards; }
@keyframes cookieIn { from { transform: translateY(140%) rotate(-4deg); opacity: 0; } }
@keyframes cookieOut { to { transform: translateY(140%) rotate(4deg); opacity: 0; } }

/* ── service page ───────────────────────────────────────── */
.s-hero { padding: 150px 0 70px; overflow: hidden; background: linear-gradient(180deg, color-mix(in srgb, var(--tint) 55%, var(--paper)) 0%, var(--paper) 100%); }
.s-hero .blob.b1 { background: #fff; opacity: .8; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: .9rem; color: var(--ink-soft); }
.crumbs a:hover { color: var(--accent-d); } .crumbs b { color: var(--ink); font-weight: 600; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--ink); font-weight: 500; font-size: .92rem; background: var(--paper); transition: transform .4s var(--spring), background .3s; }
.chip:hover { transform: translateY(-3px) rotate(-2deg); background: var(--butter); }

.handles-ring { position: relative; flex: none; }
.h-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 28px; }
.h-item { position: relative; padding: 28px 0 34px; display: grid; gap: 10px; align-content: start; }
.h-item::before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 1.5px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform 1.1s var(--ease) calc(var(--d, 0s) + .15s); }
.h-item.is-in::before { transform: scaleX(1); }
.h-check { width: 40px; height: 40px; border-radius: 50%; background: var(--mint); display: grid; place-items: center; border: 1.5px solid var(--ink); transition: transform .5s var(--spring), background .3s; }
.h-item:nth-child(3n+2) .h-check { background: var(--butter); } .h-item:nth-child(3n) .h-check { background: var(--blush); }
.h-item:hover .h-check { transform: scale(1.15) rotate(-12deg); background: var(--accent); color: var(--paper); }
.h-item h3 { font: 700 1.35rem/1.1 var(--f-display); letter-spacing: -.025em; margin-top: 6px; }
.h-item p { color: var(--ink-soft); font-size: .98rem; }

.steps { padding: clamp(70px, 9vw, 120px) 0; background: color-mix(in srgb, var(--tint) 50%, var(--paper)); border-block: 1.5px solid var(--ink); }
.steps-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.steps-side { position: sticky; top: 120px; display: grid; gap: 18px; }
.steps-arrow { position: relative; margin-top: 10px; transform: rotate(20deg) scale(1.2); transform-origin: left; }
.steps-list { display: grid; gap: 14px; counter-reset: s; }
.steps-list li { display: grid; grid-template-columns: 84px 1fr; gap: 20px; align-items: center; padding: 22px 26px; background: var(--paper); border: 1.5px solid var(--ink); border-radius: var(--r-md); transition: transform .45s var(--spring), box-shadow .4s, opacity .9s var(--ease) var(--d,0s); }
.steps-list li:hover { transform: translateX(10px); box-shadow: -8px 8px 0 var(--ink); }
.step-n { font: 400 italic 3.2rem/1 var(--f-serif); color: var(--accent); }
.steps-list h3 { font: 700 1.35rem/1.1 var(--f-display); letter-spacing: -.025em; margin-bottom: 4px; }
.steps-list p { color: var(--ink-soft); font-size: .98rem; }

.notes-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.notes-box { position: relative; padding: 36px; border-radius: var(--r-lg); background: var(--paper-2); border: 1.5px solid var(--ink); display: grid; gap: 22px; }
.notes-flower { right: -24px; top: -34px; width: 78px; height: 78px; }
.notes-box li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; }
.notes-box li + li { margin-top: 14px; }
.notes-box li .deco { position: static; width: 20px; height: 20px; margin-top: 4px; }
.notes-box li:nth-child(2) .deco { animation-delay: .6s; } .notes-box li:nth-child(3) .deco { animation-delay: 1.2s; }
.notes-grid > div > .eyebrow { margin-bottom: 20px; }
.others { background: var(--paper-2); }

/* ── contact ────────────────────────────────────────────── */
.c-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; max-width: 620px; }
.c-card { display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: 20px; background: rgba(255,255,255,.75); border: 1.5px solid var(--line-c); transition: transform .4s var(--spring), border-color .3s, box-shadow .3s; min-width: 0; }
a.c-card:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: 5px 5px 0 var(--ink); }
.c-ico { width: 44px; height: 44px; border-radius: 14px; background: var(--butter); display: grid; place-items: center; flex: none; border: 1.5px solid var(--ink); }
.c-card:nth-child(2) .c-ico { background: var(--blush); } .c-card:nth-child(3) .c-ico { background: var(--sky); } .c-card:nth-child(4) .c-ico { background: var(--lilac); }
.c-ico .ico { width: 20px; height: 20px; }
.c-card small { display: block; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.c-card b { font-weight: 600; font-size: .98rem; overflow-wrap: anywhere; }
.form-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.form-side { display: grid; gap: 22px; position: relative; justify-items: start; }
.form-points { display: grid; gap: 10px; } .form-points li { display: flex; gap: 10px; align-items: center; } .form-points .chk { color: var(--mint-d); }
.company { padding: 24px; border-radius: var(--r-md); border: 1.5px dashed var(--ink); display: grid; gap: 12px; font-size: .95rem; color: var(--ink-soft); } .company b { color: var(--ink); }
.form-spring { position: relative; }
.form { position: relative; display: grid; gap: 18px; padding: clamp(24px, 4vw, 44px); border-radius: var(--r-lg); background: #fff; border: 1.5px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; font-weight: 600; font-size: .9rem; }
.field input, .field select, .field textarea { width: 100%; font: 400 1rem/1.4 var(--f-body); color: var(--ink); padding: 15px 16px; border-radius: 16px; border: 1.5px solid var(--line-c); background: var(--paper); transition: border-color .25s, box-shadow .25s, transform .3s var(--ease); appearance: none; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315211D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 16px; padding-right: 44px; }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 4px 4px 0 var(--accent); transform: translate(-2px, -2px); }
.field.bad input, .field.bad textarea { border-color: var(--accent-d); animation: shake .4s; }
@keyframes shake { 25% { transform: translateX(-6px); } 50% { transform: translateX(5px); } 75% { transform: translateX(-3px); } }
.consent { display: grid; grid-template-columns: 22px 1fr; gap: 12px; font-size: .9rem; color: var(--ink-soft); align-items: start; cursor: pointer; }
.consent input { width: 22px; height: 22px; accent-color: var(--accent); margin: 2px 0 0; }
.consent a { text-decoration: underline; text-underline-offset: 3px; color: var(--ink); }
.consent.bad { color: var(--accent-d); }
.form-error { color: var(--accent-d); font-weight: 600; font-size: .92rem; }
.form button[type=submit] { justify-self: start; }
.form-done { position: absolute; inset: 0; border-radius: inherit; background: #fff; display: grid; place-content: center; justify-items: center; text-align: center; gap: 14px; padding: 40px; animation: rise .6s var(--ease); }
.form-done svg { width: 90px; height: 90px; animation: pop .7s var(--spring); }
.form-done h3 { font: 700 2rem/1 var(--f-display); letter-spacing: -.03em; }
.form-done p { color: var(--ink-soft); max-width: 40ch; } .form-done a { text-decoration: underline; }
.done-check { stroke-dasharray: 100; stroke-dashoffset: 100; animation: draw .7s var(--ease) .35s forwards; }
@keyframes pop { from { transform: scale(0) rotate(-40deg); } }

/* ── legal ──────────────────────────────────────────────── */
.l-hero { padding: 160px 0 60px; background: linear-gradient(180deg, color-mix(in srgb, var(--tint) 60%, var(--paper)), var(--paper)); }
.l-hero-in { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.l-hero-in > div:first-child { display: grid; gap: 20px; }
.updated { font-size: .9rem; color: var(--ink-soft); }
.l-icon { position: relative; width: clamp(140px, 18vw, 220px); }
.l-icon .mini-illo { width: 100%; height: auto; }
.l-sp1 { left: -10px; top: 6px; } .l-sp2 { right: -6px; bottom: 18px; color: var(--ink); animation-delay: 1s; }
.legal { padding-top: 40px; }
.legal-grid { display: grid; grid-template-columns: 280px 1fr; gap: 70px; align-items: start; }
.toc { position: sticky; top: 110px; display: grid; gap: 4px; font-size: .93rem; }
.toc .eyebrow { margin-bottom: 12px; }
.toc a { padding: 7px 0 7px 14px; border-left: 2px solid var(--line-c); color: var(--ink-soft); transition: .25s; }
.toc a:hover, .toc a.active { border-color: var(--accent); color: var(--ink); padding-left: 20px; }
.prose { max-width: 74ch; }
.prose section { padding-bottom: 38px; }
.prose h2 { font: 700 1.7rem/1.1 var(--f-display); letter-spacing: -.03em; margin-bottom: 14px; }
.prose p, .prose li { color: var(--ink-soft); } .prose p + p, .prose ul + p, .prose p + ul, .prose .table-wrap + p { margin-top: 12px; }
.prose ul { display: grid; gap: 8px; } .prose li { position: relative; padding-left: 22px; }
.prose li::before { content: ''; position: absolute; left: 2px; top: .62em; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.prose strong { color: var(--ink); } .prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--accent); }
.table-wrap { overflow-x: auto; margin-top: 14px; border: 1.5px solid var(--ink); border-radius: 16px; }
table { border-collapse: collapse; width: 100%; font-size: .92rem; min-width: 560px; } th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line-c); } th { background: var(--paper-2); } tr:last-child td { border: 0; }
code { background: var(--paper-2); padding: 2px 6px; border-radius: 6px; font-size: .9em; }

.nf { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: 140px 0 80px; } .nf .wrap { display: grid; gap: 24px; justify-items: center; } .nf .display { font-size: clamp(7rem, 24vw, 18rem); } .nf-ast { position: relative; }

/* ═══════════ SVG illustration system ═══════════ */
.illo { color: var(--ink); }
.illo .s { stroke: var(--ink); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.illo .s.thin, .mini-illo .s.thin { stroke-width: 1.8; }
.illo .s-paper { stroke: var(--paper); }
.mini-illo .s { stroke: var(--ink); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.f-paper { fill: var(--paper); } .f-paper2 { fill: var(--paper-2); } .f-ink { fill: var(--ink); } .f-acc { fill: var(--accent); } .f-butter { fill: var(--butter); } .f-mint { fill: var(--mint); }
.f-mint-d { fill: var(--mint-d); } .f-sky { fill: var(--sky); } .f-blush { fill: var(--blush); } .f-lilac { fill: var(--lilac); } .f-line { fill: var(--line-c); }
.illo text { fill: var(--ink); stroke: none; }
.t-b { font: 600 13px var(--f-body); } .t-s { font: 400 11px var(--f-body); fill: var(--ink-soft) !important; } .t-xl { font: 700 27px var(--f-display); } .t-script { font: italic 24px var(--f-serif); }

.illo [class*="a-"], .mini-illo [class*="a-"] { transform-box: fill-box; transform-origin: center; }
.a-float { animation: iFloat 5s ease-in-out infinite; }
.a-float2 { animation: iFloat 6s ease-in-out -2.5s infinite; }
.a-bob { animation: iBob 2.4s ease-in-out infinite; }
.a-spin { animation: spin 1.1s linear infinite; }
.a-spin-med { animation: spin 6s linear infinite; }
.a-spin-slow { animation: spin 26s linear infinite; }
.a-twinkle { animation: twinkle 2.6s ease-in-out infinite; }
.a-blink { animation: iBlink 2.6s ease-in-out infinite; }
.a-dash { animation: iDash 7s linear infinite; }
.a-dash-fast { animation: iDashFast 1.8s linear infinite; }
.a-dash-fast.rev { animation-direction: reverse; }
.a-check { stroke-dasharray: 70; stroke-dashoffset: 70; animation: iCheck 4.2s var(--ease) infinite; }
.a-sign { stroke-dasharray: 100; stroke-dashoffset: 100; animation: iSign 5s ease-in-out infinite; }
.a-progress { stroke-dashoffset: 100; animation: iProgress 5s var(--ease) infinite; }
.a-grow { transform-origin: 0% 50% !important; animation: iGrow 5s var(--ease) infinite; }
.a-ring { animation: iRing 2.4s ease-out infinite; }
.a-pin { animation: iPin 1.7s var(--ease) infinite; }
.a-pin-shadow { animation: iPinShadow 1.7s var(--ease) infinite; }
.a-flag { transform-origin: 0% 50% !important; animation: iFlag 1.6s ease-in-out infinite alternate; }
.a-swing { transform-origin: 50% 0% !important; animation: iSwing 3s ease-in-out infinite alternate; }
.a-sway { transform-origin: 50% 100% !important; animation: iSway 3.4s ease-in-out infinite alternate; }
.a-press { animation: iPress 3s var(--ease) infinite; }
.a-ding-rays { animation: iDing 3s var(--ease) infinite; }
.a-convey { animation: iConvey 8.1s linear infinite; }
.a-stamp { transform-origin: 50% 100% !important; animation: iStamp 3.6s var(--ease) infinite; }
.a-seal { animation: iSeal 3.6s linear infinite; }
.a-rumble { animation: iRumble .38s steps(2) infinite; }
.a-speed { animation: iSpeed .9s linear infinite; }
.a-drift { animation: iDrift 13s ease-in-out infinite alternate; }
.a-lid { transform-origin: 20% 100% !important; animation: iLid 2.8s var(--spring) infinite; }
.a-confetti { animation: iConfetti 2.8s ease-out infinite; opacity: 0; }
.a-beat { animation: iBeat 1.2s ease-in-out infinite; }
.a-smoke { animation: iSmoke 3s ease-out infinite; }
.a-scan { animation: iScan 9s ease-in-out infinite; }
.a-letter { animation: iLetter 3.2s ease-in-out infinite alternate; }
.a-ringing { animation: iRinging 2.4s ease-in-out infinite; }
.a-wobble { animation: iWobble 3s ease-in-out infinite alternate; }

@keyframes iFloat { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(-1.5deg); } }
@keyframes iBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes iBlink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes iDash { to { stroke-dashoffset: -84; } }
@keyframes iDashFast { to { stroke-dashoffset: -120; } }
@keyframes iCheck { 0% { stroke-dashoffset: 70; } 28%, 84% { stroke-dashoffset: 0; opacity: 1; } 96%, 100% { stroke-dashoffset: 0; opacity: 0; } }
@keyframes iSign { 0% { stroke-dashoffset: 100; opacity: 1; } 45%, 85% { stroke-dashoffset: 0; opacity: 1; } 100% { stroke-dashoffset: 0; opacity: 0; } }
@keyframes iProgress { 0% { stroke-dashoffset: 100; } 55%, 88% { stroke-dashoffset: 8; } 100% { stroke-dashoffset: 100; } }
@keyframes iGrow { 0% { transform: scaleX(0); } 30%, 88% { transform: scaleX(1); } 100% { transform: scaleX(0); } }
@keyframes iRing { from { transform: scale(1); opacity: .55; } to { transform: scale(1.8); opacity: 0; } }
@keyframes iPin { 0%,100% { transform: translateY(0) scale(1.04,.96); } 50% { transform: translateY(-26px) scale(.97,1.03); } }
@keyframes iPinShadow { 0%,100% { transform: scale(1); } 50% { transform: scale(.55); } }
@keyframes iFlag { from { transform: skewY(-5deg) scaleX(1); } to { transform: skewY(7deg) scaleX(.86); } }
@keyframes iSwing { from { transform: rotate(-9deg); } to { transform: rotate(9deg); } }
@keyframes iSway { from { transform: rotate(-6deg); } to { transform: rotate(6deg); } }
@keyframes iPress { 0%, 8%, 22%, 100% { transform: translateY(0); } 13% { transform: translateY(8px); } }
@keyframes iDing { 0%, 10% { opacity: 0; transform: scale(.8); } 18% { opacity: 1; transform: scale(1); } 45%, 100% { opacity: 0; transform: scale(1.18); } }
@keyframes iConvey { 0% { transform: translateX(-24px); opacity: 0; } 7% { opacity: 1; } 93% { opacity: 1; } 100% { transform: translateX(372px); opacity: 0; } }
@keyframes iStamp { 0%, 30% { transform: translateY(-62px) rotate(-10deg); } 44%, 54% { transform: translateY(16px) rotate(0) scale(1.04,.94); } 72%, 100% { transform: translateY(-62px) rotate(-10deg); } }
@keyframes iSeal { 0%, 46% { opacity: 0; } 50%, 90% { opacity: 1; } 100% { opacity: 0; } }
@keyframes iRumble { 0% { transform: translateY(0); } 100% { transform: translateY(-2.5px); } }
@keyframes iSpeed { from { transform: translateX(14px); opacity: 1; } to { transform: translateX(-30px); opacity: 0; } }
@keyframes iDrift { from { transform: translateX(-40px); } to { transform: translateX(60px); } }
@keyframes iLid { 0%, 55%, 100% { transform: translateY(0) rotate(0); } 18% { transform: translateY(-30px) rotate(-7deg); } 36% { transform: translateY(-22px) rotate(-4deg); } }
@keyframes iConfetti { 0%, 8% { transform: translate(0,0) scale(.3) rotate(0); opacity: 0; } 16% { opacity: 1; } 70% { opacity: 1; } 100% { transform: translate(var(--tx), var(--ty)) scale(1.1) rotate(260deg); opacity: 0; } }
@keyframes iBeat { 0%,100% { transform: scale(1); } 30% { transform: scale(1.2); } 60% { transform: scale(.96); } }
@keyframes iSmoke { from { transform: translateY(0) scale(.6); opacity: .95; } to { transform: translate(14px,-46px) scale(1.7); opacity: 0; } }
@keyframes iScan { 0%,100% { transform: translate(0,0); } 25% { transform: translate(-64px,54px); } 50% { transform: translate(6px,112px); } 75% { transform: translate(-56px,168px); } }
@keyframes iLetter { from { transform: translateY(34px); } to { transform: translateY(-12px); } }
@keyframes iRinging { 0%, 40%, 100% { transform: rotate(0); } 5%, 15%, 25% { transform: rotate(-12deg); } 10%, 20%, 30% { transform: rotate(12deg); } }
@keyframes iWobble { from { transform: rotate(-10deg); } to { transform: rotate(10deg); } }

/* ── responsive ─────────────────────────────────────────── */
@media (max-width: 1080px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 560px; margin-inline: auto; width: 100%; }
  .hero { padding-top: 130px; }
  .s-grid, .sample-grid, .p-grid, .h-grid { grid-template-columns: 1fr 1fr; }
  .how-track { grid-template-columns: 1fr 1fr; gap: 40px 24px; } .how-line { display: none; }
  .faq-grid, .steps-grid, .notes-grid, .form-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-side, .steps-side, .toc { position: static; } .qmark, .steps-arrow { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .legal-grid { grid-template-columns: 1fr; gap: 30px; } .toc { grid-template-columns: 1fr 1fr; } .toc .eyebrow { grid-column: 1/-1; }
  .sec-arrow { display: none; }
  .p-card.is-featured { order: -1; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .wrap { width: calc(100% - 36px); }
  .s-grid, .sample-grid, .p-grid, .h-grid, .stats, .c-cards, .f-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .how-track { grid-template-columns: 1fr; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-top { grid-template-columns: 1fr; }
  .s-card { min-height: 0; } .s-card h3 { margin-top: 24px; }
  .badge-rot { width: 104px; height: 104px; left: -6px; bottom: 0; } .badge-core { inset: 26px; } .badge-core svg { width: 22px; height: 22px; }
  .eyes { right: 24px; transform: scale(.8); transform-origin: right bottom; }
  .cta-ast, .cta-ring, .intro-flower, .pricing-spring, .services-ring, .handles-ring { display: none; }
  .scroll-cue { display: none; } .hero { min-height: 0; }
  .steps-list li { grid-template-columns: 56px 1fr; padding: 18px; } .step-n { font-size: 2.4rem; }
  .l-hero-in { grid-template-columns: 1fr; } .l-icon { width: 120px; order: -1; } .toc { grid-template-columns: 1fr; }
  .faq-a p { padding-right: 10px; } .faq-q { font-size: 1.1rem; }
  .btn-lg { padding: 16px 24px; }
}
