/* ==========================================================================
   Order-Point marketing site
   --------------------------------------------------------------------------
   The app's "Daylight" palette: white and near-white grounds, deep green-grey
   ink, one teal accent flooded on the primary action with DARK text on it
   (white on #00ccbc is 2:1 and fails). Dark bands borrow the app icon's ground
   and the admin console's navy, so the screenshots sit in their own colours.
   ========================================================================== */

/* ── Fonts ───────────────────────────────────────────────────────────── */
/* Served from this site, not Google Fonts, so a visit sends nobody else the visitor's IP address
   (the privacy page says so). Latin subset as Google serves it; Inter is one variable file for
   every weight. Both are SIL Open Font Licence: assets/fonts/OFL-*.txt. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/inter-latin-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/ibm-plex-mono-latin-500.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/ibm-plex-mono-latin-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #1f2828;
  --ink-2: #46524f;
  --ink-3: #5f6a6a;
  --line: #dde2e2;
  --line-2: #ebeeee;
  --ground: #ffffff;
  --ground-2: #f6f7f7;
  --ground-3: #eceeee;

  --accent: #00ccbc;
  --accent-ink: #00776e;
  --accent-soft: #e8faf8;
  --accent-line: #9de7e0;
  --on-accent: #10201e;

  --night: #1c1e2b;
  --night-2: #262a3a;
  --night-3: #363b50;
  --night-ink: #e9e9ed;
  --night-ink-2: #b8bccb;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(16, 32, 30, .06), 0 8px 24px rgba(16, 32, 30, .08);
  --shadow-lg: 0 2px 6px rgba(16, 32, 30, .08), 0 30px 60px -12px rgba(16, 32, 30, .25);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 32px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ground);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-ink); }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 .5em; color: inherit; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.9rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; }
h3 { font-size: 1.12rem; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); }
.narrow { max-width: 820px; }
.center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.skip { position: absolute; left: 12px; top: -60px; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { top: 12px; }

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

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-ink); margin-bottom: 14px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }

.lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-2); }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-weight: 700; font-size: .98rem; line-height: 1;
  padding: 13px 20px; border-radius: 11px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn-primary { background: var(--accent); color: var(--on-accent); box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 6px 16px -6px rgba(0, 150, 138, .55); }
.btn-primary:hover { background: #12d8c8; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-3); }
.btn-sm { padding: 10px 14px; font-size: .9rem; }
.btn-lg { padding: 16px 24px; font-size: 1.04rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; transform: none; }

/* ── Header ──────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line-2); }
.header-row { display: flex; align-items: center; gap: 24px; height: 68px; }

.brand { display: inline-flex; align-items: center; gap: 10px; flex: none; white-space: nowrap; color: var(--ink); text-decoration: none; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; }
.brand img { border-radius: 8px; }

.site-nav { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.site-nav a:not(.btn) { color: var(--ink-2); text-decoration: none; font-weight: 500; font-size: .95rem; white-space: nowrap; }
.site-nav a:not(.btn):hover { color: var(--ink); }

.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: #fff; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 6px; }
.nav-toggle .bar { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease; }
.nav-toggle[aria-expanded="true"] .bar:first-of-type { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:last-of-type { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 68px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 18px;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a:not(.btn) { padding: 13px 2px; border-bottom: 1px solid var(--line-2); font-size: 1rem; }
  .site-nav .btn { margin-top: 14px; }
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(40px, 7vw, 88px) clamp(56px, 8vw, 104px);
  background:
    radial-gradient(900px 480px at 85% 10%, rgba(0, 204, 188, .16), transparent 60%),
    radial-gradient(700px 420px at 0% 100%, rgba(0, 204, 188, .08), transparent 60%),
    linear-gradient(180deg, #fff, var(--ground-2));
}
.hero h1 .hl { color: var(--accent-ink); }
.hero .lede { max-width: 36em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 26px; }
.hero-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; color: var(--ink-2); font-size: .98rem; }
.hero-points li { position: relative; padding-left: 28px; }
.hero-points li::before { content: ""; position: absolute; left: 0; top: .45em; width: 16px; height: 16px; border-radius: 50%; background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.2l2.2 2.2 4.8-4.8' fill='none' stroke='%2300776e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat; }

/* Copy in two columns, tops level, then both devices side by side at a size where their screens can
   be read, the same height and never overlapping. */
.hero-copy { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 8px clamp(32px, 5vw, 72px); align-items: start; }
.hero-lead h1 { margin-bottom: 0; }
.hero-side .lede { max-width: none; }
.hero-side .hero-actions { margin: 22px 0 20px; }

/* One height for both devices, worked out from the row's width so they always match:
     tablet width = (h - 2 x bezel) x 2360/1640 + 2 x bezel
     phone width  = (h - 2 x bezel - status - home) x 780/1688 + 2 x bezel
   and tablet + gap + phone = the row. With the bezels (14px, 9px), status bar (28px) and home strip
   (16px) below, that gives h = (row - gap + 22.94px) / 1.90111. Change any of those and redo the sum. */
.hero-visual {
  --hero-gap: clamp(20px, 3.5vw, 48px);
  --hero-h: calc((100cqi - 2px - var(--hero-gap) + 22.94px) / 1.90111);
  container-type: inline-size;
  display: flex; justify-content: center; align-items: flex-end;
  gap: var(--hero-gap);
  margin-top: clamp(44px, 6vw, 76px);
}
.hero-tablet { flex: none; width: calc((var(--hero-h) - 2 * var(--bezel)) * 2360 / 1640 + 2 * var(--bezel)); }
.hero-phone { flex: none; width: calc((var(--hero-h) - 2 * var(--bezel) - var(--status) - var(--home)) * 780 / 1688 + 2 * var(--bezel)); }

@media (max-width: 920px) {
  .hero-copy { grid-template-columns: 1fr; }
  .hero-side .hero-actions { margin-top: 18px; }
}

/* ── Devices ─────────────────────────────────────────────────────────── */
/* Drawn in CSS: black glass inside a thin two-tone metal edge, a soft shadow beneath. The phone has
   a status bar with its camera island ABOVE the screenshot, never over it (a notch drawn over the
   picture hid the shop's name), and a side button; the tablet a front camera and a top button. */
.device { margin: 0; position: relative; }
.device img { width: 100%; display: block; background: #fff; }

.device-phone,
.device-tablet {
  padding: var(--bezel);
  border-radius: var(--radius);
  background: linear-gradient(160deg, #1b1d22, #0a0b0d 40%);
  box-shadow:
    0 0 0 1.5px #c3c8cd,
    0 0 0 3px #6b7178,
    inset 0 0 0 1px rgba(255, 255, 255, .07),
    0 36px 64px -26px rgba(16, 32, 30, .45),
    0 12px 24px -14px rgba(16, 32, 30, .25);
}

.device-phone {
  --bezel: 9px;
  --radius: 46px;
  --status: 28px;
  --home: 16px;
  container-type: inline-size;
  max-width: 320px;
}
.device-phone::before {
  content: "9:41";
  position: absolute;
  top: var(--bezel); left: var(--bezel); right: var(--bezel);
  height: var(--status);
  z-index: 1;
  display: flex; align-items: center;
  padding-left: 10%;
  font: 600 clamp(6px, 4.2cqi, 13px)/1 var(--font);
  letter-spacing: -0.01em;
  color: #111;
  border-radius: calc(var(--radius) - var(--bezel)) calc(var(--radius) - var(--bezel)) 0 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 28'%3E%3Crect width='100' height='28' rx='14' fill='%230a0b0d'/%3E%3C/svg%3E") center / auto 64% no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 24' fill='%23111'%3E%3Crect x='0' y='14' width='4' height='6' rx='1'/%3E%3Crect x='6' y='11' width='4' height='9' rx='1'/%3E%3Crect x='12' y='8' width='4' height='12' rx='1'/%3E%3Crect x='18' y='5' width='4' height='15' rx='1'/%3E%3Crect x='31' y='5' width='26' height='14' rx='4' fill='none' stroke='%23111' stroke-width='2'/%3E%3Crect x='34' y='8' width='17' height='8' rx='2'/%3E%3Crect x='58.5' y='9.5' width='2.5' height='5' rx='1'/%3E%3C/svg%3E") right 9% center / auto 38% no-repeat,
    #ffffff;
}
.device-phone::after {
  content: "";
  position: absolute;
  right: -4.5px; top: 24%;
  width: 3px; height: 11%;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(90deg, #6b7178, #c3c8cd);
}
.device-phone > img,
.device-phone > .tour-frames {
  margin-top: var(--status);
  border-radius: 0 0 calc(var(--radius) - var(--bezel)) calc(var(--radius) - var(--bezel));
  overflow: hidden;
}
/* A home strip under the screenshot, as the status bar sits above it: the tab bar is the last thing
   on the screen, and without the strip the rounded corners cut off Mabel and Account. Content-box,
   so the strip adds height rather than cropping the picture. */
.device-phone img {
  box-sizing: content-box;
  padding-bottom: var(--home);
  aspect-ratio: 780 / 1688; object-fit: cover; object-position: top;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 4'%3E%3Crect width='100' height='4' rx='2' fill='%23111'/%3E%3C/svg%3E") center bottom 6px / 34% 4px no-repeat;
}

.device-tablet {
  --bezel: 14px;
  --radius: 30px;
}
.device-tablet img { border-radius: calc(var(--radius) - var(--bezel)); aspect-ratio: 2360 / 1640; object-fit: cover; object-position: top; }
.device-tablet::before {
  content: "";
  position: absolute;
  top: calc(var(--bezel) / 2 - 2.5px); left: 50%;
  width: 5px; height: 5px; margin-left: -2.5px;
  border-radius: 50%;
  background: #262b33;
  box-shadow: inset 0 0 0 1px #3a414c;
}
.device-tablet::after {
  content: "";
  position: absolute;
  top: -4.5px; right: 11%;
  width: 8%; height: 3px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(#c3c8cd, #6b7178);
}

/* On a narrow screen the hero's second device only crowds the first, and bezels slim down. */
@media (max-width: 620px) {
  .hero-phone { display: none; }
  .hero-tablet { flex-basis: 100%; }
  .device-tablet { --bezel: 9px; --radius: 20px; }
}

.device-browser { border-radius: 14px; padding: 0; overflow: hidden; background: #2d3142; box-shadow: var(--shadow-lg); }
.browser-bar { display: flex; align-items: center; gap: 7px; height: 36px; padding: 0 14px; background: #20232f; }
.browser-bar span { width: 11px; height: 11px; border-radius: 50%; background: #4a4f63; }
.browser-bar em { font-style: normal; font-size: .78rem; color: #9ba0b3; margin-left: 14px; background: #2d3142; padding: 4px 12px; border-radius: 7px; }
.device-browser img { aspect-ratio: 2160 / 1350; object-fit: cover; object-position: top; }

/* ── Sections ────────────────────────────────────────────────────────── */
.section { padding-block: clamp(64px, 9vw, 112px); }
.section-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; }
.section-tint { background: var(--ground-2); }
.problem { padding-block: clamp(56px, 8vw, 96px); background: var(--ground-2); }
.problem h2 { max-width: 20em; margin-inline: auto; }

.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px 22px; position: relative; }
.step-num { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: var(--accent); color: var(--on-accent); font-weight: 800; margin-bottom: 16px; }
.step p { color: var(--ink-2); margin: 0; font-size: .98rem; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ── Tour ────────────────────────────────────────────────────────────── */
.tour-section { background: linear-gradient(180deg, var(--ground-2), #fff); }
.tour-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .8fr); gap: clamp(32px, 6vw, 80px); align-items: center; }
.tour-steps { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 10px; }
.tour-steps li { padding: 16px 18px 16px 20px; border-radius: var(--radius); border: 1px solid transparent; color: var(--ink-3); display: flex; flex-direction: column; gap: 2px; transition: background-color .3s ease, border-color .3s ease, color .3s ease; cursor: pointer; }
.tour-steps li strong { color: var(--ink-2); font-size: 1.02rem; }
.tour-steps li.is-active { background: #fff; border-color: var(--line); box-shadow: var(--shadow); color: var(--ink-2); }
.tour-steps li.is-active strong { color: var(--ink); }
.tour-steps li.is-active::before { content: ""; }

.tour-stage { position: relative; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.tour-stage .device-phone { width: min(320px, 78vw); }
.tour-frames { position: relative; }
.tour-frame { transition: opacity .55s ease; }
.tour-frame:not(:first-child) { position: absolute; inset: 0; }
.tour-frame:not(.is-active) { opacity: 0; }
.tour-progress { width: min(240px, 60vw); height: 4px; border-radius: 4px; background: var(--ground-3); overflow: hidden; }
.tour-progress span { display: block; height: 100%; width: 0; background: var(--accent); }
.tour-pause { font: inherit; font-size: .85rem; color: var(--ink-3); background: none; border: 0; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 860px) { .tour-grid { grid-template-columns: 1fr; } .tour-stage { order: -1; } }

/* ── Features ────────────────────────────────────────────────────────── */
.feature-split { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(32px, 5vw, 64px); align-items: start; }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 22px 18px; }
.feature h3 { display: flex; align-items: center; gap: 10px; }
.feature h3::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--accent); flex: none; }
.feature p { color: var(--ink-2); margin: 0; font-size: .96rem; }
.feature-visual { position: sticky; top: 100px; }
@media (max-width: 980px) { .feature-split { grid-template-columns: 1fr; } .feature-visual { position: static; order: -1; justify-self: center; width: min(300px, 80vw); } }
@media (max-width: 620px) { .feature-grid { grid-template-columns: 1fr; } }

/* ── Split ───────────────────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 80px); align-items: center; }
.split-copy p { color: var(--ink-2); }
@media (max-width: 920px) { .split { grid-template-columns: 1fr; } .split-visual { order: 2; } }

.ticks { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.ticks li { position: relative; padding-left: 32px; color: var(--ink-2); }
.ticks li strong { color: var(--ink); }
.ticks li::before { content: ""; position: absolute; left: 0; top: .3em; width: 20px; height: 20px; border-radius: 6px; background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.2 8.3l2.4 2.4 5.2-5.2' fill='none' stroke='%2310201e' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat; }

/* ── Admin (dark) ────────────────────────────────────────────────────── */
.section-dark { background: radial-gradient(1000px 500px at 50% 0%, #2f3450, var(--night)); color: var(--night-ink); }
.section-dark .eyebrow { color: var(--accent); }
.section-dark .eyebrow .dot { box-shadow: 0 0 0 4px rgba(0, 204, 188, .18); }
.section-dark .lede, .section-dark p { color: var(--night-ink-2); }
.section-dark .section-head { margin-inline: auto; text-align: center; }
.admin-hero { max-width: 1040px; margin: 0 auto clamp(32px, 5vw, 56px); box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .6); }
.admin-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.admin-card { background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .09); border-radius: var(--radius); padding: 10px 10px 18px; }
.admin-card img { border-radius: 9px; aspect-ratio: 16 / 10; object-fit: cover; object-position: top left; margin-bottom: 16px; }
.admin-card h3, .admin-card p { padding-inline: 8px; }
.admin-card h3 { color: #fff; }
.admin-card p { font-size: .94rem; margin: 0; }
@media (max-width: 1020px) { .admin-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .admin-grid { grid-template-columns: 1fr; } }

/* ── The assistant ───────────────────────────────────────────────────── */
/* The same tour as the order one, mirrored so the two sections do not read as a repeat. */
.tour-flip .tour-stage { order: -1; }
.tour-note { margin: 18px 0 0; font-size: .92rem; color: var(--ink-3); }
/* An odd card out at the end of the grid spans the row rather than sitting alone. */
.feature-grid > .feature:last-child:nth-child(odd) { grid-column: 1 / -1; }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq { display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 0 22px; }
.faq details[open] { box-shadow: var(--shadow); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 32px 20px 0; font-weight: 700; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 2px; top: 50%; width: 10px; height: 10px; border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3); transform: translateY(-70%) rotate(45deg); transition: transform .2s ease; }
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details p { color: var(--ink-2); padding-bottom: 20px; margin: 0; }

/* ── Demo ────────────────────────────────────────────────────────────── */
.section-accent { background: linear-gradient(135deg, var(--accent-soft), #fff 60%); border-top: 1px solid var(--accent-line); }
.demo-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 80px); align-items: start; }
.demo-copy p { color: var(--ink-2); }
@media (max-width: 900px) { .demo-grid { grid-template-columns: 1fr; } }

.demo-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(20px, 3.5vw, 32px); box-shadow: var(--shadow-lg); }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.field label { font-weight: 600; font-size: .92rem; }
.optional { font-weight: 400; color: var(--ink-3); }
.field input, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 10px; padding: 12px 13px; background: #fff; width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.field.has-error input, .field.has-error textarea { border-color: #a8271e; }
.field .error { color: #a8271e; font-size: .85rem; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .85rem; color: var(--ink-3); margin: 12px 0 0; text-align: center; }
.form-status { margin: 12px 0 0; font-weight: 600; text-align: center; }
.form-status.is-error { color: #a8271e; }
.form-done { text-align: center; padding: 28px 8px; }
.form-done h3 { font-size: 1.5rem; }
.form-done p { color: var(--ink-2); }

/* ── Footer ──────────────────────────────────────────────────────────── */
.site-footer { background: var(--night); color: var(--night-ink-2); padding-block: 36px; font-size: .92rem; }
.site-footer .brand { color: #fff; }
.footer-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 40px; }
.footer-brand p { margin: 6px 0 0; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.footer-nav a { color: var(--night-ink); text-decoration: none; }
.footer-nav a:hover { text-decoration: underline; }
.footer-copy { margin: 0; width: 100%; color: #8a8fa3; }

/* ── The public, and Christmas ───────────────────────────────────────── */
/* A deep evergreen taken from the teal's own ink, so the season reads without a second brand
   colour, and a printed production sheet: the one picture only this subject has. */
.section-season {
  background:
    radial-gradient(800px 420px at 90% 0%, rgba(0, 204, 188, .18), transparent 60%),
    linear-gradient(180deg, #0d2826, #0a1f1e);
  color: #e6f1ef;
}
.section-season .eyebrow { color: var(--accent); }
.section-season .eyebrow .dot { box-shadow: 0 0 0 4px rgba(0, 204, 188, .18); }
.season-copy .lede { color: #b9ccc9; }
.season-copy .ticks li { color: #b9ccc9; }
.season-copy .ticks li strong { color: #ffffff; }
.season-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .85fr); gap: clamp(32px, 6vw, 80px); align-items: center; }
@media (max-width: 920px) { .season-grid { grid-template-columns: 1fr; } }

.sheet {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  border-radius: 4px;
  padding: 26px 28px 20px;
  box-shadow: 0 40px 70px -24px rgba(0, 0, 0, .6);
  transform: rotate(-1.2deg);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 920px) { .sheet { transform: none; } }
.sheet-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 4px 12px; padding-bottom: 12px; border-bottom: 2px solid var(--ink); }
.sheet-head h3 { margin: 0; font-size: 1.1rem; }
.sheet-head span { font-family: var(--mono); font-size: .78rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); }
.sheet table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.sheet th { padding: 12px 0 6px; text-align: left; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.sheet td { padding: 9px 0; border-top: 1px dashed var(--line); vertical-align: top; }
.sheet .num { text-align: right; }
.sheet td.num { font-family: var(--mono); font-size: 1.05rem; font-weight: 600; }
.sheet td small { display: block; font-size: .82rem; color: var(--ink-3); }
.sheet-note { margin-top: 14px; font-size: .82rem; color: var(--ink-3); }

/* ── 404 ─────────────────────────────────────────────────────────────── */
.notfound { max-width: 620px; margin: 0 auto; padding: 72px var(--gutter); }
.notfound h1 { font-size: clamp(2rem, 5vw, 3rem); margin-top: 28px; }
.notfound p { color: var(--ink-2); }

/* ── Privacy page ────────────────────────────────────────────────────── */
/* One readable column of prose under the same header and footer as the home page. */
.legal { padding-block: clamp(40px, 7vw, 80px) clamp(56px, 8vw, 96px); }
.legal .wrap { max-width: 760px; }
.legal h1 { font-size: clamp(2.1rem, 4.6vw, 3rem); margin-bottom: .3em; }
.legal-updated { color: var(--ink-3); font-size: .95rem; margin-bottom: 2em; }
.legal h2 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); letter-spacing: -0.02em; margin: 2em 0 .6em; }
.legal p, .legal li { color: var(--ink-2); }
.legal ul { padding-left: 1.2em; margin: 0 0 1em; display: grid; gap: 8px; }
.legal strong { color: var(--ink); }
.legal-aside { background: var(--ground-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; margin: 1.6em 0; }
.legal-aside p:last-child { margin-bottom: 0; }
