/* Admin Handled — public site.
   One hand-written stylesheet, no build step. Self-hosted type, so nothing is
   requested from a third party before a visitor has consented to anything. */

/* ------------------------------------------------------------------ type */
@font-face {
  font-family: 'Inter';
  src: url('/static/fonts/Inter.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Instrument Serif';
  src: url('/static/fonts/InstrumentSerif.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Instrument Serif';
  src: url('/static/fonts/InstrumentSerif-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ---------------------------------------------------------------- tokens */
:root {
  /* Sampled from the logo: navy #081830, brand blue #0f72da, azure #38a0f8,
     slate #607080. Nothing here is invented. */
  --ink: #0b1a33;
  --ink-2: #35485f;
  --ink-3: #64788f;

  --paper: #fbfcfe;
  --paper-2: #f1f6fc;
  --paper-3: #e5eef8;
  --surface: #ffffff;

  --line: #dbe6f2;
  --line-2: #c2d3e6;

  --brand: #0f72da;
  --brand-2: #38a0f8;
  --brand-ink: #082860;
  --brand-wash: #e4f0fd;

  --deep: #082860;
  --deep-wash: #e9eff9;

  --shadow-1: 0 1px 2px rgba(11, 26, 51, .05), 0 2px 6px rgba(11, 26, 51, .04);
  --shadow-2: 0 2px 4px rgba(11, 26, 51, .05), 0 12px 28px -8px rgba(11, 26, 51, .15);
  --shadow-3: 0 4px 8px rgba(11, 26, 51, .06), 0 32px 64px -16px rgba(11, 26, 51, .24);

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --wrap: 1140px;
  --gutter: 20px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e9f1fa;
    --ink-2: #aec3d8;
    --ink-3: #7b93ab;

    --paper: #071120;
    --paper-2: #0b1a2e;
    --paper-3: #102440;
    --surface: #0d1e35;

    --line: #1d3350;
    --line-2: #2a4667;

    --brand: #4da8f5;
    --brand-2: #7cc2ff;
    --brand-ink: #b9dcff;
    --brand-wash: #0d2a4d;

    --deep: #38a0f8;
    --deep-wash: #0e2440;

    --shadow-1: 0 1px 2px rgba(0, 0, 0, .5);
    --shadow-2: 0 2px 4px rgba(0, 0, 0, .5), 0 12px 28px -8px rgba(0, 0, 0, .6);
    --shadow-3: 0 4px 8px rgba(0, 0, 0, .5), 0 32px 64px -16px rgba(0, 0, 0, .7);
  }
}

* { box-sizing: border-box; }

/* An inline SVG with only a viewBox has no intrinsic size and will happily fill
   its container. One of these escaped into a text link and rendered as a
   full-width arrow, so the default is pinned here rather than per-component. */
svg { max-width: 100%; }
a:not(.btn) > svg, p > svg, li > svg, span > svg { width: 1em; height: 1em; vertical-align: -0.14em; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-feature-settings: 'cv05' 1, 'cv11' 1, 'ss01' 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Paper grain. Cheap, self-contained, and stops large flat fills looking dead. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
}
@media (prefers-color-scheme: dark) { body::before { opacity: .14; } }

h1, h2, h3, h4 { margin: 0 0 .45em; line-height: 1.08; font-weight: 600; letter-spacing: -0.021em; }

.display {
  font-family: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.02;
}
.display em { font-style: italic; color: var(--brand); }

h1 { font-size: clamp(2.6rem, 7.2vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
h3 { font-size: 1.16rem; letter-spacing: -0.012em; font-weight: 600; }

p { margin: 0 0 1.05em; }
a { color: var(--brand); text-decoration-color: color-mix(in srgb, var(--brand) 35%, transparent); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 2; }
.narrow { max-width: 720px; }
.center { text-align: center; }

.lede { font-size: clamp(1.08rem, 1.9vw, 1.28rem); line-height: 1.6; color: var(--ink-2); }
.fine { font-size: .92rem; color: var(--ink-3); margin: .4em 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand); margin: 0 0 1.1em;
}
.eyebrow::before {
  content: ''; width: 26px; height: 1px; background: currentColor; opacity: .5;
}

.skip { position: absolute; left: -9999px; background: var(--brand); color: #fff; padding: 12px 18px; z-index: 200; }
.skip:focus { left: 8px; top: 8px; border-radius: var(--r-sm); }
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2.5px solid var(--deep); outline-offset: 3px; border-radius: 6px;
}

/* ---------------------------------------------------------------- header */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}
.head-inner { display: flex; align-items: center; gap: 18px; min-height: 104px; flex-wrap: wrap; }

.logo { display: inline-flex; align-items: center; text-decoration: none; margin-right: auto; }
.logo-full { height: 68px; width: auto; display: block; }
.site-foot .logo-full { height: 58px; }

.site-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.site-nav a:not(.btn) {
  position: relative; color: var(--ink-2); text-decoration: none;
  font-weight: 500; font-size: .96rem; letter-spacing: -0.005em;
  padding: 10px 2px; margin: 0 12px;
  transition: color .18s ease;
}
/* A rule that grows from the centre on hover and stays put on the current page. */
.site-nav a:not(.btn)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px;
  background: var(--brand); border-radius: 2px;
  transform: scaleX(0); transform-origin: 50% 50%;
  transition: transform .22s cubic-bezier(.2,.7,.3,1);
}
.site-nav a:not(.btn):hover { color: var(--ink); }
.site-nav a:not(.btn):hover::after { transform: scaleX(1); }
.site-nav a:not(.btn)[aria-current='page'] { color: var(--ink); font-weight: 600; }
.site-nav a:not(.btn)[aria-current='page']::after { transform: scaleX(1); }

/* The call to action is a button, not a link, so it gets air and a divider. */
.site-nav .nav-cta {
  margin-left: 18px; padding-left: 22px;
  border-left: 1px solid var(--line);
  display: inline-flex; align-items: center;
}
.site-nav .nav-cta .btn { margin: 0; }


.navtoggle, .burger { display: none; }

/* --------------------------------------------------------------- buttons */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: linear-gradient(170deg, var(--brand-2), var(--brand));
  color: #fff; text-decoration: none; font-weight: 600; font-size: 1rem;
  padding: 14px 24px; border: 0; border-radius: 12px; cursor: pointer;
  box-shadow: var(--shadow-2), inset 0 1px 0 rgba(255,255,255,.22);
  transition: transform .16s cubic-bezier(.2,.7,.3,1), box-shadow .16s, filter .16s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-3), inset 0 1px 0 rgba(255,255,255,.22); text-decoration: none; filter: brightness(1.04); }
.btn:active { transform: translateY(0); }
.btn svg { width: 16px; height: 16px; flex: none; }
.btn-lg { padding: 17px 32px; font-size: 1.06rem; border-radius: 14px; }
.btn-sm { padding: 9px 16px; font-size: .92rem; border-radius: 10px; }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--line-2);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--surface); border-color: var(--ink-3); filter: none; }
.btn-quiet { background: transparent; color: var(--ink-3); border: 1px solid var(--line); box-shadow: none; }
.btn-quiet:hover { background: var(--paper-2); color: var(--ink); filter: none; }
@media (prefers-color-scheme: dark) {
  .btn:not(.btn-ghost):not(.btn-quiet) { color: #04203f; }
  .btn-ghost { color: var(--ink); }
  .btn-quiet { color: var(--ink-2); }
}
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }

/* -------------------------------------------------------------- sections */
.band { padding: clamp(64px, 9vw, 116px) 0; position: relative; }
.band-warm { background: var(--paper-2); }
.band-sunk { background: var(--paper-3); }
.band-ink {
  background: linear-gradient(165deg, #0c2244 0%, #081730 55%, #0b2c58 100%);
  color: #e8f1fb;
}
.band-ink h2, .band-ink h3 { color: #fff; }
.band-ink .lede { color: #b7cde6; }
.band-ink .fine { color: #92adc9; }
.band + .band-warm, .band-warm + .band, .band-sunk + .band { border-top: 1px solid var(--line); }

.section-head { max-width: 640px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; }

/* ------------------------------------------------------------------ hero */
.hero { padding: clamp(52px, 8vw, 104px) 0 clamp(48px, 7vw, 92px); position: relative; overflow: hidden; }
.hero::after {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  width: 780px; height: 780px; right: -260px; top: -320px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
      color-mix(in srgb, var(--brand) 20%, transparent) 0%,
      color-mix(in srgb, var(--gold) 9%, transparent) 42%,
      transparent 68%);
  filter: blur(18px);
}
.hero-grid {
  display: grid; gap: clamp(32px, 5vw, 60px);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
}
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { max-width: 13ch; margin-bottom: .3em; }
.hero .lede { max-width: 48ch; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; align-items: center; margin-top: 30px; }

.hero-proof {
  list-style: none; margin: 40px 0 0; padding: 28px 0 0;
  border-top: 1px solid var(--line);
  display: grid; gap: 13px 28px; grid-template-columns: repeat(auto-fit, minmax(212px, 1fr));
}
.hero-proof li { display: flex; align-items: center; gap: 10px; font-size: .97rem; color: var(--ink-2); }
.hero-proof svg { width: 18px; height: 18px; color: var(--brand); flex: none; }

/* ------------------------------------------------------------ hero visual */
.hero-visual { position: relative; }
.hero-visual svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 24px 48px rgba(14,26,33,.16)); }
@media (prefers-color-scheme: dark) { .hero-visual svg { filter: drop-shadow(0 24px 48px rgba(0,0,0,.6)); } }

/* ----------------------------------------------------------------- cards */
.grid { display: grid; gap: 20px; }
.g2 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
/* Four items: a clean 2x2 rather than 3 across with one orphan below. */
.g-pair { grid-template-columns: repeat(auto-fit, minmax(430px, 1fr)); }
.g3 { grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.g4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px; box-shadow: var(--shadow-1);
  transition: transform .2s cubic-bezier(.2,.7,.3,1), box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--line-2); }
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) { .card:hover { transform: none; } }

.card-icon {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--brand-wash); color: var(--brand); margin-bottom: 16px;
}
.card-icon svg { width: 21px; height: 21px; }

.card-quiet { background: transparent; border-color: transparent; box-shadow: none; padding: 0; }
.card-quiet:hover { transform: none; box-shadow: none; }

/* Problem cards get the deep navy edge — these are the reader's pain, not our features. */
.card-problem { border-left: 3px solid var(--deep); }
.card-problem h3 { color: var(--ink); }

/* ----------------------------------------------------------------- steps */
.steps { counter-reset: step; display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); }
.step { position: relative; padding-top: 58px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center;
  font-family: 'Instrument Serif', Georgia, serif; font-size: 1.32rem;
  background: var(--surface); color: var(--brand);
  border: 1px solid var(--line); box-shadow: var(--shadow-1);
}
.step::after {
  content: ''; position: absolute; top: 22px; left: 56px; right: -26px; height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 5px, transparent 5px 11px);
}
.steps > .step:last-child::after { display: none; }
@media (max-width: 800px) { .step::after { display: none; } }

/* -------------------------------------------------------------- boundary */
.boundary {
  position: relative; border-radius: var(--r-lg); padding: clamp(28px, 4.4vw, 48px);
  background: linear-gradient(160deg, var(--deep-wash), color-mix(in srgb, var(--deep-wash) 40%, var(--surface)));
  border: 1px solid color-mix(in srgb, var(--deep) 28%, transparent);
  box-shadow: var(--shadow-1);
}
.boundary h2 { margin-top: 0; }
.boundary p:last-child { margin-bottom: 0; }
.boundary-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 11px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.boundary-list li {
  display: flex; align-items: center; gap: 10px; font-weight: 550; font-size: .97rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 11px; padding: 12px 14px;
}
.boundary-list svg { width: 17px; height: 17px; color: var(--deep); flex: none; }

/* --------------------------------------------------------------- pricing */
.plans { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(282px, 1fr)); align-items: stretch; }
.plan { display: flex; flex-direction: column; position: relative; padding-top: 30px; }
.plan.featured {
  border-color: color-mix(in srgb, var(--brand) 45%, transparent);
  box-shadow: var(--shadow-3);
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(160deg, var(--brand-2), var(--brand)) border-box;
  border: 1.5px solid transparent;
}
.plan-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(170deg, var(--brand-2), var(--brand)); color: #fff;
  font-size: .71rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 15px; border-radius: 999px; box-shadow: var(--shadow-1); white-space: nowrap;
}
@media (prefers-color-scheme: dark) { .plan-tag { color: #04203f; } }
.plan-name { font-size: .82rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin: 0 0 6px; }
.plan-price strong { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: 3.1rem; letter-spacing: -0.02em; line-height: 1; }
.plan-price span { color: var(--ink-3); font-size: .95rem; }
.plan-for { color: var(--ink-2); font-size: .95rem; min-height: 3.2em; margin-bottom: 4px; }
.plan .tick { margin: 18px 0 26px; }
.plan .btn { margin-top: auto; width: 100%; }

.tick { list-style: none; margin: 0; padding: 0; }
.tick li { position: relative; padding-left: 29px; margin-bottom: .68em; font-size: .97rem; color: var(--ink-2); }
.tick li::before {
  content: ''; position: absolute; left: 0; top: .42em; width: 17px; height: 17px; border-radius: 50%;
  background: var(--brand-wash);
}
.tick li::after {
  content: ''; position: absolute; left: 5px; top: .68em; width: 7px; height: 3.5px;
  border-left: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}

/* ------------------------------------------------------------------- faq */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; padding: 21px 46px 21px 0; font-weight: 600; font-size: 1.06rem;
  position: relative; list-style: none; transition: color .15s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand); }
.faq summary::after,
.faq summary::before {
  content: ''; position: absolute; right: 10px; top: 50%; background: var(--brand);
  transition: transform .2s, opacity .2s;
}
.faq summary::after { width: 14px; height: 2px; margin-top: -1px; }
.faq summary::before { width: 2px; height: 14px; margin-top: -7px; right: 16px; }
.faq details[open] summary::before { transform: rotate(90deg); opacity: 0; }
.faq details p { color: var(--ink-2); padding-right: 46px; margin-top: -.35em; }

/* ------------------------------------------------------------------ form */
.form-shell { display: grid; gap: 26px; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); align-items: start; }
@media (max-width: 900px) { .form-shell { grid-template-columns: 1fr; } }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3.6vw, 38px); box-shadow: var(--shadow-2); }
.field { margin-bottom: 19px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .95rem; }
.field .hint { font-size: .87rem; color: var(--ink-3); margin: 0 0 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line-2); border-radius: 11px;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field textarea { min-height: 112px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brand); background: var(--surface);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 14%, transparent);
  outline: none;
}
.field.bad input, .field.bad select, .field.bad textarea { border-color: #c0392b; }
.err { color: #b8382a; font-size: .9rem; margin: 6px 0 0; font-weight: 550; }
@media (prefers-color-scheme: dark) { .err { color: #ff9e90; } .field.bad input, .field.bad textarea, .field.bad select { border-color: #ff9e90; } }

.check { display: flex; gap: 12px; align-items: flex-start; }
.check input { width: 19px; height: 19px; margin-top: 3px; flex: none; accent-color: var(--brand); }
.check label { font-weight: 400; font-size: .95rem; color: var(--ink-2); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-side { position: sticky; top: 100px; }
.form-side .item { display: flex; gap: 13px; margin-bottom: 20px; }
.form-side .item:last-child { margin-bottom: 0; }
.form-side .item-mark { width: 30px; height: 30px; border-radius: 9px; background: var(--brand-wash); color: var(--brand); display: grid; place-items: center; flex: none; }
.form-side .item-mark svg { width: 15px; height: 15px; }
.form-side strong { display: block; font-size: .98rem; margin-bottom: 1px; }
.form-side span { color: var(--ink-3); font-size: .91rem; line-height: 1.55; }
@media (max-width: 900px) { .form-side { position: static; } }

/* -------------------------------------------------------------- cta band */
.cta-band { position: relative; overflow: hidden; }
.cta-band::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 120% at 50% 0%, rgba(56, 160, 248, .20), transparent 70%);
}
.cta-band .btn { background: #fff; color: var(--brand-ink); }
.cta-band .btn:hover { background: #fff; filter: brightness(1); }

/* ---------------------------------------------------------------- footer */
.site-foot { border-top: 1px solid var(--line); padding: 56px 0 30px; background: var(--paper-2); }
.foot-inner { display: grid; gap: 30px; grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(140px, 1fr)); margin-bottom: 34px; }
.foot-inner nav { display: flex; flex-direction: column; gap: 9px; }
.foot-col-title { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; }
.foot-inner nav a { color: var(--ink-2); text-decoration: none; font-size: .95rem; }
.foot-inner nav a:hover { color: var(--brand); }
.foot-bottom { border-top: 1px solid var(--line); padding-top: 20px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }

/* --------------------------------------------------------------- consent */
.consent {
  position: fixed; left: var(--gutter); right: var(--gutter); bottom: var(--gutter); z-index: 120;
  max-width: 460px; margin: 0 auto; background: var(--surface);
  border: 1px solid var(--line-2); border-radius: var(--r); box-shadow: var(--shadow-3);
  padding: 20px 22px;
}
.consent p { font-size: .93rem; margin-bottom: 14px; color: var(--ink-2); }
.consent-actions { display: flex; gap: 10px; }

/* ----------------------------------------------------------------- prose */
.prose h2 { font-size: 1.36rem; margin-top: 2em; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-2); max-width: 66ch; }

/* ---------------------------------------------------------------- reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ----------------------------------------------------------------- small */
@media (max-width: 760px) {
  body { font-size: 16px; --gutter: 16px; }
  .burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 11px; cursor: pointer; border-radius: 11px; border: 1px solid var(--line);
  }
  .burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
  .navtoggle:checked ~ .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .navtoggle:checked ~ .burger span:nth-child(2) { opacity: 0; }
  .navtoggle:checked ~ .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .head-inner { min-height: 78px; gap: 10px; }
  .logo-full { height: 50px; }
  .site-foot .logo-full { height: 46px; }
  .site-nav { display: none; width: 100%; flex-direction: column; align-items: stretch; padding: 6px 0 14px; }
  .navtoggle:checked ~ .site-nav { display: flex; }
  .site-nav a:not(.btn) { padding: 13px 4px; margin: 0; }
  .site-nav a:not(.btn)::after { bottom: 6px; }
  .site-nav .nav-cta { margin: 10px 0 0; padding: 12px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .site-nav .nav-cta .btn { width: 100%; }
  .hero::after { width: 460px; height: 460px; right: -180px; top: -200px; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
}
