/* panwright.com — one stylesheet, no framework, no build step.
   Editorial-manifesto aesthetic: warm paper ink on near-black night, a dawn-gradient
   signature (amber → coral → violet, after Joy's Dawn Solutions), a self-hosted display
   serif, and hand-built product visuals. Fonts ship with the site, so nothing is fetched
   from a third party at runtime. Dark by default with a full warm-paper light mode. */

/* ── Display face: Fraunces, self-hosted (see /fonts) ── */
@font-face {
  font-family: "Fraunces";
  font-style: normal; font-weight: 400; font-display: swap;
  src: url("/fonts/fraunces-400.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal; font-weight: 500; font-display: swap;
  src: url("/fonts/fraunces-500.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal; font-weight: 600; font-display: swap;
  src: url("/fonts/fraunces-600.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal; font-weight: 900; font-display: swap;
  src: url("/fonts/fraunces-900.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic; font-weight: 400; font-display: swap;
  src: url("/fonts/fraunces-400-italic.woff2") format("woff2");
}

/* ── Tokens ── */
:root {
  --bg: #0b0b0f;
  --bg-1: #101015;
  --bg-2: #15151c;
  --bg-3: #1c1c25;
  --line: #26262f;
  --line-2: #35353f;
  --fg: #f3efe7;
  --fg-dim: #b0adb8;
  --fg-faint: #75727e;

  --accent: #ff8f7a;
  --accent-2: #c6a6ff;
  --btn: #f3efe7;
  --btn-ink: #14121a;
  --focus: #ffb36b;

  --dawn-1: #ffc069;
  --dawn-2: #ff7a7f;
  --dawn-3: #b07bff;
  --grad-dawn: linear-gradient(96deg, var(--dawn-1), var(--dawn-2) 46%, var(--dawn-3));
  --grad-text: linear-gradient(96deg, #ffd18c, #ff9090 45%, #cba0ff);
  --grad-soft: linear-gradient(180deg, rgba(255,192,105,.16), rgba(176,123,255,.09));

  --r-sm: 10px;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-card: 0 1px 0 rgba(255,255,255,.02) inset, 0 18px 44px -28px rgba(0,0,0,.7);
  --shadow-lift: 0 24px 60px -24px rgba(0,0,0,.75);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Code", "Segoe UI Mono", Consolas, monospace;

  --max: 1120px;
  --prose: 720px;

  color-scheme: dark;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #faf7f1;
    --bg-1: #ffffff;
    --bg-2: #ffffff;
    --bg-3: #f4efe4;
    --line: #ece5d8;
    --line-2: #ddd4c4;
    --fg: #1a1620;
    --fg-dim: #575163;
    --fg-faint: #8b8593;

    --accent: #c2452f;
    --accent-2: #6b3fd0;
    --btn: #17141d;
    --btn-ink: #faf7f1;
    --focus: #c2452f;

    --grad-text: linear-gradient(96deg, #c9781f, #cf3f2c 45%, #6d3fd0);
    --grad-soft: linear-gradient(180deg, rgba(207,120,31,.12), rgba(109,63,208,.07));

    --shadow-card: 0 1px 0 rgba(255,255,255,.6) inset, 0 18px 40px -30px rgba(60,40,20,.32);
    --shadow-lift: 0 26px 60px -28px rgba(60,40,20,.34);

    color-scheme: light;
  }
}

/* ── Reset / base ── */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

::selection { background: rgba(255,143,122,.28); }

:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; }

/* ── Atmosphere: dawn glow + fine grain, both behind everything ── */
.bg { position: fixed; inset: 0; z-index: -2; pointer-events: none; }
.bg::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 90vh;
  background:
    radial-gradient(60% 55% at 72% 0%, rgba(176,123,255,.20), transparent 70%),
    radial-gradient(55% 50% at 20% 4%, rgba(255,122,127,.16), transparent 68%),
    radial-gradient(50% 40% at 50% 0%, rgba(255,192,105,.14), transparent 70%);
  filter: blur(6px);
}
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-color-scheme: light) { .grain { opacity: .5; mix-blend-mode: multiply; } .bg::before { opacity: .8; } }

/* ── Layout ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.wrap.narrow { max-width: var(--prose); }

/* ── Header / nav ── */
header.site {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  transition: border-color .3s ease;
}
header.site.scrolled { border-bottom-color: var(--line); }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 68px; }

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--fg); font-weight: 600; font-size: 18px; letter-spacing: -.01em; }
.brand:hover { text-decoration: none; }
.brand .mark {
  position: relative; width: 27px; height: 27px; border-radius: 8px;
  background: var(--grad-dawn); overflow: hidden; flex: none;
  box-shadow: 0 4px 14px -4px rgba(255,122,127,.6);
}
.brand .mark::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 40%;
  background: var(--bg);
}
.brand .mark::after {
  content: ""; position: absolute; left: 50%; bottom: 40%; transform: translate(-50%, 50%);
  width: 10px; height: 10px; border-radius: 50%; z-index: 1;
  background: #fff6ec; box-shadow: 0 0 9px 1px rgba(255,238,214,.9);
}
.brand b { font-family: var(--font-display); font-weight: 600; }

nav.site { display: flex; align-items: center; gap: 26px; }
nav.site a { color: var(--fg-dim); font-size: 15px; font-weight: 500; }
nav.site a:hover { color: var(--fg); text-decoration: none; }
nav.site .btn { padding: 9px 18px; font-size: 14.5px; }
.nav-links { display: contents; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--btn); color: var(--btn-ink);
  font-family: var(--font-sans); font-weight: 600; font-size: 16px; line-height: 1;
  padding: 14px 24px; border-radius: 12px; border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(0,0,0,.6); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn.ghost { background: transparent; color: var(--fg); border-color: var(--line-2); }
.btn.ghost:hover { background: color-mix(in srgb, var(--fg) 6%, transparent); box-shadow: none; }
.btn.lg { padding: 16px 30px; font-size: 17px; }
.btn.block { width: 100%; }

/* ── Shared type helpers ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-sans); font-weight: 600; font-size: 12.5px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin: 0 0 20px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .7; }
.eyebrow.center { justify-content: center; }
.grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ── Hero ── */
.hero { position: relative; padding: 108px 0 0; text-align: center; }
.hero .wrap { position: relative; }
.hero h1 {
  font-weight: 900; letter-spacing: -.035em; margin: 0 auto 26px; max-width: 15ch;
  font-size: clamp(3.2rem, 9.2vw, 6.6rem); line-height: .96;
}
.hero h1 .grad { font-style: italic; font-weight: 900; }
.hero .lead {
  font-size: clamp(1.12rem, 2.1vw, 1.4rem); color: var(--fg-dim);
  max-width: 640px; margin: 0 auto; line-height: 1.55;
}
.hero .lead b { color: var(--fg); font-weight: 600; }
.hero .cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.hero .fineprint { margin-top: 22px; color: var(--fg-faint); font-size: 14.5px; }
.hero .fineprint span { white-space: nowrap; }
.hero .fineprint i { font-style: normal; color: var(--line-2); margin: 0 10px; }

/* window frame around a real product screenshot */
.frame {
  position: relative; margin: 0 auto; max-width: 1000px;
  background: var(--bg-1); border: 1px solid var(--line);
  border-radius: var(--r-xl); box-shadow: var(--shadow-lift); overflow: hidden;
}
.hero .frame { margin: 64px auto 0; }
.shot-img { display: block; width: 100%; height: auto; }

/* Interactive team graph: a frozen, true-vector SVG the visitor can pan and zoom, like the real app. */
.graph-embed {
  position: relative; display: block; width: 100%;
  aspect-ratio: 2341 / 2338; /* the svg's viewBox; JS resets it exactly once loaded */
  overflow: hidden; background: oklch(0.205 0.008 75);
  cursor: grab; touch-action: none; user-select: none; -webkit-user-select: none;
}
.graph-embed.grabbing { cursor: grabbing; }
.graph-embed svg { display: block; width: 100%; height: 100%; }
.graph-embed .shot-img { position: absolute; inset: 0; height: 100%; object-fit: contain; }
.graph-hint {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .02em;
  color: var(--fg-dim); background: color-mix(in oklab, var(--bg) 62%, transparent);
  border: 1px solid var(--line); border-radius: 8px; padding: 5px 9px;
  pointer-events: none; opacity: .85; transition: opacity .4s ease;
}
.graph-embed.used .graph-hint { opacity: 0; }
.graph-ctl {
  position: absolute; right: 14px; bottom: 14px; z-index: 3;
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--line); border-radius: 10px;
  background: color-mix(in oklab, var(--bg) 68%, transparent);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.graph-btn {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 0; background: transparent; color: var(--fg-dim);
  font-family: var(--font-sans); font-size: 21px; line-height: 1; cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.graph-btn + .graph-btn { border-top: 1px solid var(--line); }
.graph-btn:hover { background: color-mix(in oklab, var(--fg) 10%, transparent); color: var(--fg); }
.graph-btn:active { background: color-mix(in oklab, var(--fg) 16%, transparent); }
.shot figcaption {
  padding: 15px 20px; border-top: 1px solid var(--line); background: var(--bg-2);
  color: var(--fg-faint); font-size: 13.5px; line-height: 1.5; text-align: center;
}
.frame::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  box-shadow: 0 1px 0 rgba(255,255,255,.05) inset;
}
.frame-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 18px; border-bottom: 1px solid var(--line); background: var(--bg-2);
}
.frame-bar .dots { display: inline-flex; gap: 7px; }
.frame-bar .dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); }
.frame-title { font-size: 13.5px; color: var(--fg-dim); font-weight: 500; }
.frame-title b { color: var(--fg); font-weight: 600; }
.frame-tag {
  margin-left: auto; font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--dawn-1); display: inline-flex; align-items: center; gap: 6px;
}
.frame-tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--dawn-1); box-shadow: 0 0 8px var(--dawn-1); }

/* ── Sections ── */
section { position: relative; padding: 108px 0; }
.section-head { max-width: 720px; margin: 0 0 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.15rem); letter-spacing: -.025em; margin: 0 0 16px; font-weight: 600; }
.section-head p { font-size: clamp(1.05rem, 1.8vw, 1.22rem); color: var(--fg-dim); margin: 0; line-height: 1.55; }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ── Why we built it: origin note + differentiators ── */
.founder { max-width: 780px; margin: 0 auto; text-align: center; }
.founder-note {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 3.1vw, 2.15rem);
  line-height: 1.34; letter-spacing: -.015em; margin: 0; color: var(--fg);
}
.founder-note .grad { font-style: italic; }
.whys { list-style: none; padding: 0; margin: 46px auto 0; max-width: 760px; }
.whys li {
  padding: 22px 2px; border-top: 1px solid var(--line);
  color: var(--fg-dim); font-size: 1.06rem; line-height: 1.55;
}
.whys li:first-child { border-top: 0; }
.whys li b { color: var(--fg); font-weight: 600; }

/* ── How it works: the three-move band (text only) ── */
.moves { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 0; }
.move { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 24px 28px; background: var(--bg-1); box-shadow: var(--shadow-card); }
.move .k { display: block; margin-bottom: 12px; font-family: var(--font-display); font-weight: 900; font-size: 2.1rem; letter-spacing: -.03em; line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.move h3 { font-size: 1.35rem; margin: 0 0 8px; letter-spacing: -.01em; }
.move p { margin: 0; color: var(--fg-dim); font-size: 15px; line-height: 1.55; }

/* full-width feature: centered copy above a screenshot the size of the hero shot */
.feature { margin-top: 96px; }
.feature-copy { max-width: 680px; margin: 0 auto 34px; text-align: center; }
.feature-copy .k { display: inline-block; margin-bottom: 12px; font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--accent); letter-spacing: .02em; }
.feature-copy h3 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); letter-spacing: -.02em; margin: 0 0 14px; }
.feature-copy p { color: var(--fg-dim); margin: 0; font-size: 1.08rem; line-height: 1.55; }
.feature .frame { margin: 0 auto; }

/* ── Trust grid ── */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tcard { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; background: var(--bg-1); transition: border-color .2s ease, transform .2s ease; }
.tcard:hover { border-color: var(--line-2); transform: translateY(-2px); }
.tcard .ti { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 18px; color: var(--dawn-1); background: var(--grad-soft); border: 1px solid var(--line); }
.tcard .ti svg { width: 20px; height: 20px; }
.tcard h3 { font-size: 1.28rem; margin: 0 0 8px; letter-spacing: -.01em; }
.tcard p { margin: 0; color: var(--fg-dim); font-size: 15px; line-height: 1.55; }

/* ── Setup: numbered steps ── */
.steps { list-style: none; margin: 48px auto 0; padding: 0; max-width: 680px; }
.steps li { display: flex; gap: 18px; align-items: flex-start; padding: 20px 2px; border-top: 1px solid var(--line); }
.steps li:first-child { border-top: 0; }
.steps .sn {
  flex: none; width: 34px; height: 34px; border-radius: 50%; margin-top: 1px;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: #1a1200; background: var(--grad-dawn);
}
.steps .st h3 { margin: 3px 0 5px; font-size: 1.12rem; font-weight: 600; letter-spacing: -.01em; }
.steps .st p { margin: 0; color: var(--fg-dim); font-size: 1rem; line-height: 1.5; }

/* ── Pricing ── */
.pricing { text-align: center; }
.price-card {
  max-width: 460px; margin: 48px auto 0; text-align: left;
  background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 6px; box-shadow: var(--shadow-lift); position: relative;
}
.price-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; pointer-events: none;
  background: var(--grad-dawn); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: .5;
}
.price-inner { padding: 34px 32px 32px; }
.price-amount { display: flex; align-items: baseline; gap: 8px; }
.price-amount .num { font-family: var(--font-display); font-weight: 900; font-size: 4rem; letter-spacing: -.04em; line-height: 1; }
.price-amount .per { color: var(--fg-dim); font-size: 1.05rem; }
.price-card .tagline { color: var(--fg-dim); margin: 10px 0 26px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 28px; }
.price-card li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; color: var(--fg); font-size: 15.5px; border-top: 1px solid var(--line); }
.price-card li:first-child { border-top: 0; }
.price-card li svg { width: 18px; height: 18px; color: var(--dawn-2); flex: none; margin-top: 2px; }
.price-card .microcopy { margin-top: 18px; color: var(--fg-faint); font-size: 13px; line-height: 1.5; text-align: center; }
.price-card .microcopy a { color: var(--fg-dim); text-decoration: underline; }

/* ── Closing band ── */
.closing { text-align: center; padding: 120px 0 128px; }
.closing h2 { font-size: clamp(2.4rem, 6vw, 4.4rem); letter-spacing: -.035em; font-weight: 900; margin: 0 0 24px; }
.closing p { color: var(--fg-dim); font-size: 1.15rem; max-width: 520px; margin: 0 auto 34px; }

/* ── Download page ── */
.dl-list { display: grid; gap: 14px; margin: 40px 0 30px; }
.dl-row {
  display: flex; align-items: center; gap: 18px;
  background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 20px 24px; transition: border-color .2s ease, transform .2s ease;
}
.dl-row:hover { border-color: var(--line-2); transform: translateY(-2px); }
.dl-row .os-ico { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; color: var(--dawn-1); background: var(--grad-soft); border: 1px solid var(--line); flex: none; }
.dl-row .os-ico svg { width: 22px; height: 22px; }
.dl-row .os { font-weight: 600; font-size: 16.5px; }
.dl-row .os small { display: block; color: var(--fg-faint); font-weight: 400; font-size: 13px; margin-top: 2px; }
.dl-row .btn { margin-left: auto; }
.note {
  background: var(--bg-2); border: 1px solid var(--line); border-left: 3px solid var(--dawn-2);
  border-radius: var(--r); padding: 16px 20px; color: var(--fg-dim); font-size: 15px; line-height: 1.6;
}
.note strong { color: var(--fg); }
.note code, .prose code {
  font-family: var(--font-mono); font-size: .88em; background: var(--bg-3);
  border: 1px solid var(--line); border-radius: 6px; padding: 1px 6px;
}
.after-list { display: grid; gap: 12px; margin: 20px 0 0; padding: 0; list-style: none; }
.after-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--fg-dim); }
.after-list li svg { width: 18px; height: 18px; color: var(--dawn-2); flex: none; margin-top: 4px; }

/* ── Coming-soon splash (download page, pre-launch) ── */
.coming { text-align: center; padding: 96px 0 48px; }
.coming h1 { font-size: clamp(2.6rem, 7vw, 4.4rem); letter-spacing: -.03em; margin: 0 0 14px; }
.coming .sub { color: var(--fg-dim); font-size: 1.15rem; margin: 0 auto 30px; max-width: 34rem; }
.coming-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Legal / prose ── */
.prose { padding: 72px 0 90px; }
.prose h1 { font-size: clamp(2.2rem, 5vw, 3rem); letter-spacing: -.02em; margin: 0 0 8px; font-weight: 600; }
.prose .updated { color: var(--fg-faint); font-size: 14px; margin: 0 0 40px; }
.prose h2 { font-size: 1.4rem; margin: 44px 0 12px; letter-spacing: -.01em; font-weight: 600; }
.prose p, .prose li { color: var(--fg-dim); }
.prose p { margin: 0 0 16px; }
.prose strong { color: var(--fg); font-weight: 600; }
.prose ul { padding-left: 22px; margin: 0 0 16px; }
.prose li { margin: 7px 0; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* ── Checkout shell ── */
.checkout { text-align: center; padding: 128px 0; }
.checkout h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin: 0 0 14px; font-weight: 600; }
.checkout p { color: var(--fg-dim); font-size: 1.05rem; max-width: 520px; margin: 0 auto 12px; }
.checkout .fineprint { color: var(--fg-faint); font-size: 14px; }
.spinner {
  width: 38px; height: 38px; margin: 0 auto 30px; border-radius: 50%;
  border: 3px solid var(--line); border-top-color: var(--dawn-2); animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Footer ── */
footer.site { border-top: 1px solid var(--line); padding: 56px 0; margin-top: 40px; }
footer.site .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; }
footer.site .f-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--fg); font-weight: 600; }
footer.site .f-links { display: flex; flex-wrap: wrap; gap: 22px; }
footer.site .f-links a { color: var(--fg-dim); font-size: 14.5px; }
footer.site .f-links a:hover { color: var(--fg); text-decoration: none; }
footer.site .f-legal { width: 100%; color: var(--fg-faint); font-size: 13.5px; border-top: 1px solid var(--line); padding-top: 22px; margin-top: 4px; }
footer.site .f-legal a { color: var(--fg-faint); }

/* ── Motion: hero load + scroll reveal ── */
.reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .hero-rise { opacity: 0; animation: rise .85s cubic-bezier(.2,.7,.25,1) both; }
  .hero-rise.d1 { animation-delay: .04s; }
  .hero-rise.d2 { animation-delay: .12s; }
  .hero-rise.d3 { animation-delay: .2s; }
  .hero-rise.d4 { animation-delay: .28s; }
  .hero-rise.d5 { animation-delay: .4s; }
  html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.25,1); }
  html.js .reveal.in { opacity: 1; transform: none; }
}
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* ── Responsive ── */
@media (max-width: 900px) {
  .moves { grid-template-columns: 1fr; gap: 16px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .feature { margin-top: 64px; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  section { padding: 78px 0; }
  .hero { padding-top: 80px; }
  .trust-grid { grid-template-columns: 1fr; }
  nav.site .nav-links a:not(.btn) { display: none; }
  .dl-row { flex-wrap: wrap; }
  .dl-row .btn { margin-left: 0; width: 100%; }
  footer.site .wrap { flex-direction: column; align-items: flex-start; }
}
