/* Slots Picker — marketing landing page.
   Self-contained (does NOT load base.css, which styles the add-in). It mirrors the shipped
   Outlook/Fluent system so the site and product feel like one thing: Microsoft neutrals,
   Segoe UI, tight radii, and the two-blue brand (#0078D4 brand / #2563EB interactive accent).
   The embedded demo lives in an <iframe> (public/demo.html) and brings its own base.css. */

:root {
  /* Brand + accent (two-blue system, matching base.css) */
  --brand:#0078D4; --brand-deep:#0064B6; --brand-deeper:#00457E;
  --accent:#2563EB; --accent-press:#1D4ED8; --accent-soft:#EEF2FF;

  /* Fluent neutrals */
  --ink:#1B1A19; --ink-2:#201F1E; --muted:#605E5C; --faint:#8A8886;
  --bg:#FFFFFF; --surface:#FFFFFF; --surface-2:#FAF9F8; --chrome:#F3F2F1;
  --line:#EDEBE9; --line-2:#E1DFDD;
  --ok:#107C41;

  --font:"Segoe UI","Source Sans 3",system-ui,-apple-system,sans-serif;

  --radius:4px; --radius-md:8px; --radius-lg:12px; --radius-xl:20px;
  --maxw:1140px;

  --shadow-xs:0 1px 2px rgba(16,24,40,.05);
  --shadow-sm:0 1.6px 3.6px rgba(0,0,0,.08), 0 .3px .9px rgba(0,0,0,.06);
  --shadow-md:0 8px 24px rgba(16,24,40,.08), 0 2px 6px rgba(16,24,40,.05);
  --shadow-lg:0 24px 60px rgba(16,24,40,.16), 0 6px 18px rgba(16,24,40,.08);
  --shadow-brand:0 20px 48px rgba(0,80,160,.30), 0 4px 12px rgba(0,60,120,.18);
}

* { box-sizing:border-box; }

html { scroll-behavior:smooth; scroll-padding-top:84px; }

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

@media (prefers-reduced-motion:reduce) {
  html { scroll-behavior:auto; }
  * { animation-duration:.001ms !important; transition-duration:.001ms !important; animation-iteration-count:1 !important; }
}

/* ---- motion: scroll reveals + hero entrance ------------------------------ */
/* Reveals are only armed when JS is present (html.js) so content is never stuck
   hidden if scripts fail; landing.js adds .in as elements enter the viewport. */
html.js .reveal { opacity:0; transform:translateY(20px); transition:opacity .65s cubic-bezier(.16,.84,.44,1), transform .65s cubic-bezier(.16,.84,.44,1); }
html.js .reveal.in { opacity:1; transform:none; }

/* Hero entrance (CSS-only, so it runs even before reveal JS; reduced-motion collapses it). */
@keyframes heroIn { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }
.hero-copy > *, .demo-stage { animation:heroIn .7s both cubic-bezier(.16,.84,.44,1); }
.hero-badge { animation-delay:.02s; }
.hero h1 { animation-delay:.08s; }
.hero .lead { animation-delay:.16s; }
.hero-actions { animation-delay:.24s; }
.hero .cta-note { animation-delay:.30s; }
.pill-row { animation-delay:.36s; }
.demo-stage { animation-delay:.20s; }

a { color:inherit; text-decoration:none; }
img, svg { display:block; max-width:100%; }
h1,h2,h3,p { margin:0; }

.wrap { width:100%; max-width:var(--maxw); margin:0 auto; padding:0 24px; }

/* ---- shared section primitives ------------------------------------------- */
section { position:relative; }
.eyebrow {
  display:inline-block; font-size:12.5px; font-weight:700; letter-spacing:.10em;
  text-transform:uppercase; color:var(--accent); margin-bottom:14px;
}
.eyebrow.on-brand { color:rgba(255,255,255,.92); }
.h-sec {
  font-size:clamp(28px,3.6vw,42px); line-height:1.12; font-weight:700;
  letter-spacing:-.022em; color:var(--ink-2); max-width:18ch;
}
.h-sec.wide { max-width:24ch; }
.lead { font-size:clamp(16px,1.5vw,18.5px); color:var(--muted); line-height:1.6; max-width:62ch; }

.band { padding:clamp(64px,8vw,108px) 0; }
.band.alt { background:var(--surface-2); border-block:1px solid var(--line); }

/* ---- buttons ------------------------------------------------------------- */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font); font-size:15.5px; font-weight:600; line-height:1;
  padding:14px 22px; border-radius:var(--radius-md); border:1px solid transparent;
  cursor:pointer; white-space:nowrap; transition:background .18s, box-shadow .18s, border-color .18s, color .18s, transform .18s;
}
.btn .ms-ico { width:20px; height:20px; flex:none; }
.btn-primary { background:var(--accent); color:#fff; box-shadow:var(--shadow-sm); }
.btn-primary:hover { background:var(--accent-press); box-shadow:var(--shadow-md); }
.btn-ghost { background:#fff; color:var(--ink-2); border-color:var(--line-2); box-shadow:var(--shadow-xs); }
.btn-ghost:hover { border-color:#C8C6C4; background:var(--surface-2); }
.btn-on-brand { background:#fff; color:var(--brand-deeper); box-shadow:var(--shadow-md); }
.btn-on-brand:hover { background:#F3F8FD; }
.btn-lg { padding:16px 28px; font-size:16.5px; }
.btn-sm { padding:10px 16px; font-size:14px; }
.btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible {
  outline:2px solid var(--accent); outline-offset:2px;
}

.cta-note { font-size:13.5px; color:var(--faint); margin-top:14px; }

/* ---- navigation ---------------------------------------------------------- */
.nav {
  position:sticky; top:0; z-index:50; background:rgba(255,255,255,.82);
  backdrop-filter:saturate(180%) blur(14px); -webkit-backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid transparent; transition:border-color .2s, box-shadow .2s;
}
.nav.scrolled { border-bottom-color:var(--line); box-shadow:var(--shadow-xs); }
.nav-inner { display:flex; align-items:center; justify-content:space-between; height:64px; }
.brand-mark { display:flex; align-items:center; gap:10px; font-weight:700; font-size:17px; letter-spacing:-.01em; color:var(--ink-2); }
.brand-mark img { width:28px; height:28px; }
.nav-links { display:flex; align-items:center; gap:6px; }
.nav-links a { padding:8px 14px; border-radius:var(--radius-md); font-size:15px; font-weight:500; color:var(--muted); transition:background .15s, color .15s; }
.nav-links a:hover { color:var(--ink-2); background:var(--chrome); }
.nav-cta { display:flex; align-items:center; gap:8px; }
.nav-toggle { display:none; }
.mobile-menu { display:none; } /* hidden by default; the mobile breakpoint shows it when .open */

/* ---- hero (blue brand gradient, so the white demo pops) ------------------ */
.hero {
  position:relative; overflow:hidden; color:#fff;
  padding:clamp(44px,6vw,84px) 0 clamp(56px,7vw,96px);
  background:linear-gradient(165deg, var(--brand) 0%, #0064B6 52%, #00457E 100%);
}
.hero::before { /* soft highlight + corner depth */
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(50% 42% at 84% -4%, rgba(255,255,255,.22), transparent 60%),
    radial-gradient(45% 45% at -4% 104%, rgba(0,40,78,.32), transparent 60%);
}
.hero::after { /* faint dot texture, fading down */
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none; opacity:.5;
  background-image:radial-gradient(rgba(255,255,255,.13) 1px, transparent 1px);
  background-size:22px 22px;
  -webkit-mask-image:linear-gradient(180deg, #000 0%, transparent 75%);
  mask-image:linear-gradient(180deg, #000 0%, transparent 75%);
}
.hero .wrap { position:relative; z-index:1; }
.hero-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(32px,5vw,64px); align-items:start; }
.hero-copy { padding-top:clamp(8px,3vw,40px); }
.hero h1 {
  font-size:clamp(36px,5.4vw,62px); line-height:1.03; font-weight:700;
  letter-spacing:-.035em; color:#fff; max-width:15ch;
}
.hero h1 .quiet { color:#BCE2FF; }
/* hero eyebrow badge */
.hero-badge {
  display:inline-flex; align-items:center; gap:8px; margin-bottom:22px;
  padding:7px 14px 7px 9px; border-radius:999px;
  background:rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.30);
  font-size:13px; font-weight:600; color:rgba(255,255,255,.92); backdrop-filter:blur(6px);
}
.hero-badge img { width:18px; height:18px; }
.hero-badge b { color:#fff; font-weight:700; }
.hero .lead { margin-top:22px; color:rgba(255,255,255,.96); }
.hero .cta-note { color:rgba(255,255,255,.86); }
.hero-actions { display:flex; align-items:center; gap:14px; margin-top:30px; flex-wrap:wrap; }
.pill-row { display:flex; gap:14px 22px; flex-wrap:wrap; margin-top:26px; }
.trust-pill { display:inline-flex; align-items:center; gap:8px; font-size:13.5px; color:rgba(255,255,255,.96); font-weight:500; }
.trust-pill svg { width:16px; height:16px; color:#fff; flex:none; }
a.trust-link { cursor:pointer; transition:color .15s; }
a.trust-link .ul { text-decoration:underline; text-underline-offset:2px; }
a.trust-link:hover { color:#fff; }

/* embedded demo "device" frame */
.demo-stage { position:relative; }
.demo-frame {
  background:#fff; border:1px solid var(--line-2); border-radius:14px; overflow:hidden;
  box-shadow:var(--shadow-lg); width:100%; max-width:430px; margin-inline:auto;
}
.demo-titlebar {
  display:flex; align-items:center; justify-content:space-between; gap:8px; height:36px; padding:0 4px 0 12px;
  background:var(--chrome); border-bottom:1px solid var(--line);
}
.demo-title { display:flex; align-items:center; gap:8px; font-size:12.5px; color:var(--muted); font-weight:600; }
.demo-favicon { width:16px; height:16px; border-radius:3px; }
.demo-frame iframe { width:100%; height:840px; border:0; display:block; background:#fff; }
.demo-tag {
  position:absolute; top:-14px; right:6px; z-index:2;
  background:var(--accent); color:#fff; font-size:12px; font-weight:700; letter-spacing:.02em;
  padding:7px 14px; border-radius:999px; box-shadow:var(--shadow-md);
  display:inline-flex; align-items:center; gap:7px;
}
.demo-tag .dot { width:7px; height:7px; border-radius:50%; background:#fff; animation:livepulse 1.8s ease-in-out infinite; }
@keyframes livepulse { 0%,100%{ opacity:.45; } 50%{ opacity:1; } }
.demo-caption { text-align:center; font-size:13px; color:var(--faint); margin-top:16px; }

/* ---- anti-booking-link + generic prose band ------------------------------ */
.split { display:grid; grid-template-columns:.9fr 1.1fr; gap:clamp(28px,5vw,64px); align-items:start; }
.split .body p + p { margin-top:18px; }
.split .body { font-size:17px; color:var(--muted); }
.split .body strong { color:var(--ink-2); font-weight:650; }
.contrast {
  margin-top:26px; display:grid; gap:12px;
}
.contrast .row { display:grid; grid-template-columns:auto 1fr; gap:12px; align-items:start; padding:14px 16px; border:1px solid var(--line); border-radius:var(--radius-md); background:#fff; }
.contrast .row.bad { background:var(--surface-2); }
.contrast .tag { font-size:11px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; padding:3px 8px; border-radius:999px; }
.contrast .bad .tag { color:#8A8886; background:#EDEBE9; }
.contrast .good .tag { color:var(--ok); background:#E6F4EA; }
.contrast .row span:last-child { color:var(--ink-2); font-size:15px; }

/* booking-link section header: heading left, intro to its right (less white space) */
.booking-head { display:grid; grid-template-columns:1fr 1fr; gap:clamp(24px,4vw,56px); align-items:center; }
.booking-head .sec-sub { margin-top:0; max-width:46ch; }

/* booking-link comparison: cold link vs warm formatted email, side by side */
.vs { display:grid; grid-template-columns:1fr 1fr; gap:22px; margin-top:40px; align-items:stretch; }
.vs-card { display:flex; flex-direction:column; gap:16px; padding:26px; border-radius:var(--radius-lg); }
.vs-card.cold { background:var(--surface-2); border:1px solid var(--line); }
.vs-card.warm { background:#fff; border:1px solid var(--accent-soft); box-shadow:var(--shadow-md); }
.vs-tag { align-self:flex-start; font-size:11.5px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; padding:4px 11px; border-radius:999px; color:var(--muted); background:var(--chrome); }
.vs-tag.warm { color:var(--accent); background:var(--accent-soft); }
.vs-msg { display:flex; flex-direction:column; gap:14px; color:var(--muted); font-size:15.5px; }
.vs-msg p { margin:0; }
.vs-link { align-self:flex-start; display:inline-flex; align-items:center; gap:8px; font-size:13px; color:var(--faint); background:#fff; border:1px solid var(--line); border-radius:6px; padding:8px 12px; }
.vs-link svg { width:15px; height:15px; flex:none; }
.vs-email { display:flex; flex-direction:column; gap:5px; font-size:14.5px; color:var(--ink-2); line-height:1.55; }
.vs-email p { margin:0; }
.vs-email .vs-greet { font-weight:600; margin-bottom:5px; }
.vs-email .vs-slot { color:var(--muted); }
.vs-note { margin-top:auto; padding-top:6px; font-size:13.5px; color:var(--muted); }
.vs-card.warm .vs-note { color:var(--ink-2); font-weight:600; }

/* ---- problem cards ------------------------------------------------------- */
.cards-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:48px; }
.card {
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:26px 24px; box-shadow:var(--shadow-xs); transition:box-shadow .2s, transform .2s, border-color .2s;
}
.card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); border-color:var(--line-2); }
.card .ic { width:42px; height:42px; border-radius:10px; display:grid; place-items:center; background:var(--accent-soft); color:var(--accent); margin-bottom:18px; }
.card .ic svg { width:22px; height:22px; }
.card p { font-size:15.5px; color:var(--muted); }

/* a section sub-line under a heading (problem section) */
.sec-sub { font-size:clamp(16.5px,1.7vw,19px); color:var(--muted); margin-top:16px; max-width:54ch; line-height:1.55; }

/* problem section: an editorial two-column split with an un-carded points list (no boxes) */
.problem-split { display:grid; grid-template-columns:.82fr 1.18fr; gap:clamp(30px,5vw,72px); align-items:start; }
.problem-points { display:grid; gap:26px; padding-top:6px; }
.point { display:grid; grid-template-columns:auto 1fr; gap:18px; align-items:start; }
.point .ic { width:44px; height:44px; flex:none; border-radius:11px; display:grid; place-items:center; background:var(--accent-soft); color:var(--accent); }
.point .ic svg { width:22px; height:22px; }
.point h3 { font-size:18px; font-weight:650; letter-spacing:-.01em; color:var(--ink-2); margin:0 0 5px; }
.point p { font-size:15.5px; color:var(--muted); margin:0; line-height:1.55; }

/* ---- product features (bento grid) --------------------------------------- */
.features { display:grid; grid-template-columns:repeat(6,1fr); gap:clamp(16px,2vw,22px); margin-top:54px; }
.bento-tile {
  grid-column:span 3; display:flex; flex-direction:column; gap:16px; min-width:0;
  padding:26px 26px 22px; border:1px solid var(--line); border-radius:var(--radius-lg);
  background:linear-gradient(180deg,#fff,var(--surface-2)); box-shadow:var(--shadow-xs);
  transition:box-shadow .2s, transform .2s, border-color .2s;
}
.bento-tile:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); border-color:var(--line-2); }
.bento-tile.wide { grid-column:span 4; }
.bento-tile.narrow { grid-column:span 2; }
.bento-head { display:flex; align-items:center; gap:14px; }
.bento-tile .ic { width:46px; height:46px; flex:none; border-radius:12px; display:grid; place-items:center; background:var(--brand); color:#fff; box-shadow:var(--shadow-sm); }
.bento-tile .ic svg { width:24px; height:24px; }
.bento-tile h3 { font-size:18px; font-weight:650; letter-spacing:-.01em; color:var(--ink-2); }
.bento-text p { font-size:15px; color:var(--muted); }

/* how it works — alternating ("zigzag") feature rows */
.features-head { text-align:center; padding:clamp(56px,8vw,100px) 0 clamp(6px,2vw,16px); }
.features-head .h-sec { margin-inline:auto; }
.feature-row { padding:clamp(28px,4vw,48px) 0; }
/* Background alternation is offset from the zigzag layout: the header stays white, then row 1 (See
   every calendar) is grey and it alternates from there — so the white booking-link section below
   reads as separate. The .alt class still controls only the left/right graphic order. */
.feature-row:not(.alt) { background:var(--surface-2); border-block:1px solid var(--line); }
.fr-inner { display:grid; grid-template-columns:1fr 1fr; gap:clamp(36px,6vw,84px); align-items:center; }
.feature-row.alt .fr-copy { order:2; }
.feature-row.alt .fr-viz { order:1; }
.fr-copy h3 { font-size:clamp(22px,2.4vw,28px); font-weight:700; letter-spacing:-.02em; color:var(--ink-2); margin:0 0 12px; }
.fr-copy p { font-size:16px; color:var(--muted); line-height:1.6; max-width:42ch; }
.fr-viz { display:flex; justify-content:center; }
.fr-viz .tile-visual { width:100%; max-width:420px; margin:0; }

/* mini product visuals inside tiles (decorative) */
.tile-visual { margin-top:auto; border:1px solid var(--line); border-radius:var(--radius-md); background:#fff; padding:14px; overflow:hidden; }

/* drag-select mini grid */
.viz-grid { position:relative; height:120px; border-radius:6px; overflow:hidden;
  background:repeating-linear-gradient(180deg, #fff 0, #fff 28px, var(--line-soft) 28px, var(--line-soft) 29px); }
.viz-grid .sel { position:absolute; left:9%; right:9%; top:35px; height:46px; border-radius:6px;
  background:color-mix(in srgb, var(--accent) 15%, #fff); border:1.5px solid var(--accent); }
.viz-grid .sel b { position:absolute; left:9px; top:6px; font-size:11px; font-weight:700; color:var(--accent-press); }
.viz-grid .cursor { position:absolute; left:56%; top:60px; color:var(--ink-2); }
.viz-grid .cursor svg { width:18px; height:18px; filter:drop-shadow(0 1px 2px rgba(0,0,0,.25)); }

/* multi-calendar DAY view mini: a portrait time grid with tall, vertical event blocks packed into
   side-by-side lanes (one per person) — mirrors the real app, not a horizontal scheduling-assistant bar. */
.viz-daygrid { position:relative; height:184px; width:100%; max-width:300px; margin:2px auto 0;
  border:1px solid var(--line); border-radius:6px; overflow:hidden;
  background:repeating-linear-gradient(180deg, #fff 0 29px, var(--line-soft) 29px 30px); }
.viz-daygrid .ev { position:absolute; border-radius:4px; opacity:.92; box-shadow:0 1px 2px rgba(0,0,0,.06); }
.viz-daygrid .ev.free { background:color-mix(in srgb, var(--accent) 14%, #fff); border:1.5px dashed var(--accent); opacity:1; box-shadow:none; }

/* customisable-output tone pills mini */
.viz-tones { display:flex; flex-wrap:wrap; gap:7px; }
.viz-tones .tone { font-size:12px; font-weight:600; color:var(--muted); background:var(--surface-2);
  border:1px solid var(--line); border-radius:999px; padding:5px 11px; }
.viz-tones .tone.on { color:#fff; background:var(--accent); border-color:var(--accent); }

/* timezone mini */
.viz-tz { display:flex; flex-direction:column; gap:9px; }
.viz-tz .z { display:flex; align-items:center; justify-content:space-between; font-size:13px; }
.viz-tz .z .city { color:var(--muted); font-weight:600; }
.viz-tz .z .t { font-variant-numeric:tabular-nums; font-weight:700; color:var(--ink-2); }
.viz-tz .z.hi { background:var(--accent-soft); margin:0 -6px; padding:3px 6px; border-radius:5px; }
.viz-tz .z.hi .t, .viz-tz .z.hi .city { color:var(--accent-press); }

/* email mini */
.viz-email { font-size:12.5px; line-height:1.55; }
.viz-email .to { color:var(--faint); border-bottom:1px solid var(--line-soft); padding-bottom:7px; margin-bottom:8px; }
.viz-email .subj { font-weight:700; color:var(--ink-2); margin-bottom:6px; }
.viz-email .ln { color:var(--muted); }
.viz-email .ln.b { color:var(--ink-2); font-weight:600; }

/* ---- founder ------------------------------------------------------------- */
.founder-card {
  display:grid; grid-template-columns:auto 1fr; gap:clamp(24px,4vw,48px); align-items:center;
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-xl);
  padding:clamp(28px,4vw,52px); box-shadow:var(--shadow-md); margin-top:40px;
}
.founder-badge {
  width:128px; height:128px; border-radius:50%; display:grid; place-items:center; flex:none;
  background:linear-gradient(145deg, var(--brand) 0%, var(--brand-deeper) 100%);
  box-shadow:var(--shadow-brand);
}
.founder-badge img { width:62px; height:62px; }
.founder blockquote { margin:0; font-size:clamp(17px,1.8vw,20px); line-height:1.6; color:var(--ink-2); }
.founder blockquote p + p { margin-top:16px; }
.founder .sign { margin-top:22px; font-weight:650; color:var(--ink-2); }
.founder .sign span { color:var(--muted); font-weight:400; }

/* ---- privacy band (dark surface, keep / never-keep columns) --------------- */
.privacy {
  background:#0B0D11;
  background:radial-gradient(120% 95% at 82% -10%, #1A1F28 0%, #0B0D11 56%);
  color:#fff; overflow:hidden; padding-block:clamp(52px,6.5vw,86px);
}
/* a soft security "glow" that follows the cursor across the dark band (set by landing.js) */
.privacy::before {
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:radial-gradient(440px circle at var(--mx,50%) var(--my,120%), rgba(96,168,255,.22), rgba(96,168,255,.06) 42%, transparent 72%);
  opacity:0; transition:opacity .4s ease;
}
.privacy.glow::before { opacity:1; }
.privacy .wrap { position:relative; z-index:1; }
.privacy-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(34px,5vw,68px); align-items:center; }
/* shield stacks above the heading + body */
.privacy-copy { min-width:0; }
/* glowing frosted shield (the shield shape itself, lit from behind), stacked above the heading */
.privacy .ring { position:relative; width:78px; height:78px; flex:none; display:grid; place-items:center; margin-bottom:16px; }
.privacy .ring::before {
  content:""; position:absolute; left:50%; top:50%; width:142px; height:142px; transform:translate(-50%,-50%);
  background:radial-gradient(circle, rgba(120,170,255,.5), rgba(120,170,255,0) 68%); pointer-events:none;
}
.privacy .ring svg { position:relative; width:74px; height:74px; color:rgba(255,255,255,.88); filter:drop-shadow(0 0 14px rgba(140,185,255,.6)); }
.privacy .ring svg path { fill:rgba(255,255,255,.10); }
.privacy h2, .privacy .h-sec { color:#fff; max-width:none; }
.privacy .lead { color:rgba(255,255,255,.74); max-width:46ch; margin-top:14px; font-size:16.5px; }

.privacy-cols { display:grid; grid-template-columns:1fr; gap:16px; }
/* frosted-glass card: translucent top-lit fill, blurred backdrop, soft border + inner highlight */
.pcol {
  background:linear-gradient(160deg, rgba(255,255,255,.13), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.16); border-radius:clamp(16px,2vw,22px);
  padding:clamp(22px,3vw,30px);
  backdrop-filter:blur(14px) saturate(120%); -webkit-backdrop-filter:blur(14px) saturate(120%);
  box-shadow:0 24px 60px rgba(0,0,0,.40), 0 0 80px rgba(120,170,255,.16), inset 0 1px 0 rgba(255,255,255,.16);
}
.pcol-head { display:flex; align-items:center; gap:8px; font-size:11px; font-weight:700; letter-spacing:.03em; text-transform:uppercase; color:rgba(255,255,255,.55); margin-bottom:16px; white-space:nowrap; }
.pcol-head svg { width:16px; height:16px; flex:none; }
.pcol ul { list-style:none; margin:0; padding:0; display:grid; gap:12px; }
.pcol li { display:grid; grid-template-columns:auto 1fr; gap:11px; align-items:center; font-size:14.5px; color:rgba(255,255,255,.9); }
.pcol li svg { width:15px; height:15px; flex:none; }
.pcol.keep li svg { color:#34D399; }
/* the "never keep" ticks sit in soft red rounded-square badges (per the mock) */
.pcol.never li svg {
  width:24px; height:24px; padding:5px; box-sizing:border-box;
  background:rgba(244,63,94,.15); color:#FB7185; border-radius:7px;
}

/* ---- pricing (two-column blue panel with a floating white card) ---------- */
.price-panel {
  position:relative; overflow:hidden; color:#fff;
  display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(32px,5vw,60px); align-items:center;
  background:linear-gradient(150deg, var(--brand) 0%, #0064B6 55%, #00457E 100%);
  border-radius:clamp(20px,3vw,30px); padding:clamp(34px,5vw,60px);
  box-shadow:0 30px 70px rgba(0,60,120,.22), 0 8px 22px rgba(0,40,90,.14);
}
.price-panel::after { /* faint logo watermark, like the other brand surfaces */
  content:""; position:absolute; right:-70px; top:-70px; width:360px; height:360px; opacity:.10;
  background:center/contain no-repeat url("../assets/brand/slots-picker-white.svg");
  transform:rotate(-8deg); pointer-events:none;
}
.price-panel-copy { position:relative; z-index:1; }
.price-panel .h-sec { color:#fff; max-width:16ch; }
.price-panel-sub { color:rgba(255,255,255,.96); font-size:17px; margin-top:16px; max-width:44ch; line-height:1.55; }
.price-list { list-style:none; margin:26px 0 0; padding:0; display:grid; gap:13px; }
.price-list li { display:grid; grid-template-columns:auto 1fr; gap:12px; align-items:start; font-size:15.5px; color:#fff; }
.price-list svg { width:18px; height:18px; color:#fff; flex:none; margin-top:2px; }

.price-card {
  position:relative; z-index:1; background:#fff; border-radius:16px; padding:30px 28px; color:var(--ink);
  box-shadow:0 24px 50px rgba(0,28,66,.30), 0 4px 12px rgba(0,28,66,.18);
}
.price-card-name { font-size:15px; font-weight:700; color:var(--ink-2); margin-bottom:12px; }
.price-amount { display:flex; align-items:baseline; gap:6px; margin:0 0 2px; }
.price-amount .num { font-size:clamp(42px,5vw,54px); font-weight:800; letter-spacing:-.03em; color:var(--ink-2); line-height:1; }
.price-amount .per { font-size:17px; color:var(--muted); font-weight:500; }
.price-sub { font-size:13.5px; color:var(--muted); margin-top:6px; }
.price-card .btn { width:100%; margin-top:20px; }
.price-foot { font-size:12.5px; color:var(--faint); text-align:center; margin-top:14px; }

/* ---- FAQ ----------------------------------------------------------------- */
#faq .h-sec { margin-inline:auto; text-align:center; }
.faq { max-width:780px; margin:44px auto 0; }
.faq details {
  border:1px solid var(--line); border-radius:var(--radius-md); background:#fff;
  margin-bottom:12px; overflow:hidden; transition:box-shadow .2s, border-color .2s;
}
.faq details[open] { box-shadow:var(--shadow-sm); border-color:var(--line-2); }
.faq summary {
  list-style:none; cursor:pointer; padding:20px 22px; font-size:17px; font-weight:600; color:var(--ink-2);
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.faq summary::-webkit-details-marker { display:none; }
.faq summary .chev { width:20px; height:20px; color:var(--muted); flex:none; transition:transform .22s; }
.faq details[open] summary .chev { transform:rotate(180deg); }
.faq .answer { padding:0 22px 22px; color:var(--muted); font-size:15.5px; line-height:1.65; max-width:64ch; }
.faq .answer a { color:var(--accent); font-weight:600; text-decoration:underline; text-underline-offset:2px; }
.faq .answer a:hover { color:var(--accent-press); }

/* ---- closing CTA --------------------------------------------------------- */
.closing { text-align:center; }
.closing .h-sec { margin:0 auto; max-width:22ch; }
.closing .lead { margin:18px auto 0; }
.closing .hero-actions { justify-content:center; }

/* ---- footer -------------------------------------------------------------- */
.foot { background:var(--ink-2); color:#C8C6C4; padding:54px 0 40px; }
.foot-inner { display:flex; flex-wrap:wrap; gap:24px; align-items:center; justify-content:space-between; }
.foot .brand-mark { color:#fff; }
.foot-links { display:flex; gap:22px; flex-wrap:wrap; }
.foot-links a { color:#C8C6C4; font-size:14.5px; transition:color .15s; }
.foot-links a:hover { color:#fff; }
.foot-note { width:100%; margin-top:28px; padding-top:22px; border-top:1px solid rgba(255,255,255,.12); display:flex; flex-wrap:wrap; gap:10px 18px; justify-content:space-between; font-size:13.5px; color:#8A8886; }
.foot-note .privacy-line { display:inline-flex; align-items:center; gap:8px; }
.foot-note svg { width:15px; height:15px; }

/* ---- referrals (soft-accent "bonus" band between pricing and FAQ) -------- */
.referrals { background:var(--accent-soft); border-block:1px solid color-mix(in srgb, var(--accent) 16%, var(--line)); padding-block:clamp(36px,4.5vw,56px); }
.ref-head { text-align:center; max-width:820px; margin:0 auto clamp(18px,2.5vw,28px); }
.ref-head .h-sec { max-width:none; }            /* let the heading sit on one line */
.ref-head .sec-sub { max-width:62ch; margin-inline:auto; }  /* ~two lines, centred */
.ref-card { max-width:720px; margin:0 auto; background:#fff; border:1px solid var(--line-2); border-radius:var(--radius-lg); box-shadow:var(--shadow-sm); overflow:hidden; }
.ref-card-head { text-align:center; font-size:15px; font-weight:700; color:var(--ink-2); padding:15px; border-bottom:1px solid var(--line); }
.ref-grid { display:grid; grid-template-columns:1fr 1fr; }
.ref-col { text-align:center; padding:clamp(24px,3vw,34px) 26px; }
.ref-col + .ref-col { border-left:1px solid var(--line); }
.ref-ic { width:46px; height:46px; margin:0 auto 12px; border-radius:12px; display:grid; place-items:center; background:var(--accent-soft); color:var(--accent); }
.ref-ic svg { width:24px; height:24px; }
.ref-give { font-size:12.5px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; color:var(--muted); }
.ref-val { font-size:clamp(26px,3.4vw,34px); font-weight:800; letter-spacing:-.02em; color:var(--ink-2); margin:3px 0 9px; }
.ref-note { font-size:14.5px; color:var(--muted); line-height:1.55; margin:0 auto; max-width:30ch; }

/* ---- legal pages (privacy / terms) -------------------------------------- */
.legal-nav { border-bottom:1px solid var(--line); }
.legal-nav .wrap { display:flex; align-items:center; height:64px; }
.legal { max-width:1140px; margin:0 auto; padding:clamp(36px,5vw,64px) 24px clamp(48px,7vw,88px); }
.legal h1 { font-size:clamp(28px,4vw,40px); font-weight:700; letter-spacing:-.022em; color:var(--ink-2); margin:0 0 6px; }
.legal-updated { color:var(--faint); font-size:14px; margin:0 0 26px; }
.legal h2 { font-size:19px; font-weight:650; letter-spacing:-.01em; color:var(--ink-2); margin:32px 0 10px; }
.legal p, .legal li { font-size:15.5px; line-height:1.65; color:var(--muted); }
.legal ul { padding-left:20px; margin:10px 0; display:grid; gap:7px; }
.legal a { color:var(--accent); text-decoration:underline; text-underline-offset:2px; }
.legal a:hover { color:var(--accent-press); }
.legal strong { color:var(--ink-2); font-weight:650; }
.legal .note { background:var(--accent-soft); border:1px solid color-mix(in srgb, var(--accent) 14%, var(--line)); border-radius:var(--radius-md); padding:14px 16px; margin:18px 0 4px; font-size:14.5px; }

/* ---- responsive ---------------------------------------------------------- */
@media (max-width:920px) {
  .hero-grid { grid-template-columns:1fr; }
  .demo-stage { order:2; }
  .hero h1, .hero .lead { max-width:none; }
  .split { grid-template-columns:1fr; gap:8px; }
  .cards-3 { grid-template-columns:1fr; }
  .problem-split { grid-template-columns:1fr; gap:28px; }
  .fr-inner { grid-template-columns:1fr; gap:26px; }
  .feature-row.alt .fr-copy, .feature-row.alt .fr-viz { order:0; } /* copy first when stacked */
  .price-panel { grid-template-columns:1fr; gap:28px; }
  .price-panel .h-sec { max-width:none; }
  .privacy-grid { grid-template-columns:1fr; gap:32px; }
  .privacy .h-sec { max-width:none; }
  .booking-head { grid-template-columns:1fr; gap:14px; }
  .founder-card { grid-template-columns:1fr; text-align:center; justify-items:center; }
  .founder .sign { text-align:center; }
}

@media (max-width:680px) {
  body { font-size:15.5px; }
  .nav-links, .nav-cta .btn-ghost { display:none; }
  .nav-toggle {
    display:inline-grid; place-items:center; width:42px; height:42px; border:1px solid var(--line-2);
    background:#fff; border-radius:var(--radius-md); cursor:pointer; color:var(--ink-2);
  }
  .nav-toggle svg { width:22px; height:22px; }
  /* mobile dropdown menu */
  .mobile-menu { display:none; padding:8px 0 16px; border-top:1px solid var(--line); }
  .mobile-menu.open { display:block; }
  .mobile-menu a { display:block; padding:13px 4px; font-size:16px; font-weight:500; color:var(--ink-2); }
  .mobile-menu .btn { width:100%; margin-top:8px; }
  .hero-actions .btn, .closing .hero-actions .btn { width:100%; }
  .demo-frame iframe { height:720px; }
  .vs { grid-template-columns:1fr; }
  .privacy-cols { grid-template-columns:1fr; }
  .ref-grid { grid-template-columns:1fr; }
  .ref-col + .ref-col { border-left:none; border-top:1px solid var(--line); }
}

/* ---- waitlist dialog ----------------------------------------------------- */
.wl-dialog {
  border:none; padding:0; border-radius:var(--radius-lg); width:min(440px, calc(100vw - 32px));
  background:var(--surface); color:var(--ink); box-shadow:var(--shadow-lg);
}
.wl-dialog::backdrop { background:rgba(16,24,40,.45); backdrop-filter:blur(2px); }
.wl-form { position:relative; display:flex; flex-direction:column; gap:14px; padding:30px 28px 24px; }
.wl-close {
  position:absolute; top:12px; right:12px; width:34px; height:34px; display:grid; place-items:center;
  border:none; background:transparent; border-radius:var(--radius-md); cursor:pointer;
  font-size:24px; line-height:1; color:var(--muted); transition:background .15s, color .15s;
}
.wl-close:hover { background:var(--chrome); color:var(--ink-2); }
.wl-title { margin:0; font-size:22px; font-weight:700; letter-spacing:-.02em; color:var(--ink-2); }
.wl-sub { margin:0 0 4px; font-size:15px; color:var(--muted); line-height:1.5; }
.wl-field { display:flex; flex-direction:column; gap:6px; }
.wl-label { font-size:13.5px; font-weight:600; color:var(--ink-2); }
.wl-field input {
  font-family:var(--font); font-size:15.5px; color:var(--ink); padding:12px 14px;
  border:1px solid var(--line-2); border-radius:var(--radius-md); background:#fff; transition:border-color .15s, box-shadow .15s;
}
.wl-field input:focus { outline:none; border-color:var(--accent); box-shadow:0 0 0 3px var(--accent-soft); }
.wl-choice { border:none; margin:0; padding:0; display:flex; flex-direction:column; gap:8px; }
.wl-choice legend { padding:0; margin-bottom:2px; }
.wl-radio {
  display:flex; align-items:center; gap:10px; font-size:14.5px; color:var(--ink); cursor:pointer;
  padding:10px 13px; border:1px solid var(--line-2); border-radius:var(--radius-md); transition:border-color .15s, background .15s;
}
.wl-radio:has(input:checked) { border-color:var(--accent); background:var(--accent-soft); }
.wl-radio input { width:16px; height:16px; accent-color:var(--accent); flex:0 0 auto; cursor:pointer; }
/* honeypot: kept in the DOM + accessibility tree-out, but invisible and off-tab for humans */
.wl-hp { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.wl-check { display:flex; gap:10px; align-items:flex-start; font-size:14.5px; color:var(--ink); line-height:1.45; cursor:pointer; }
.wl-check input { margin-top:2px; width:16px; height:16px; accent-color:var(--accent); flex:0 0 auto; cursor:pointer; }
.wl-opt { color:var(--faint); font-size:12.5px; }
.wl-turnstile { min-height:65px; }
.wl-submit { width:100%; margin-top:2px; }
.wl-submit:disabled { opacity:.6; cursor:default; }
.wl-msg { margin:0; font-size:14px; min-height:1px; }
.wl-msg.err { color:#A4262C; }
.wl-msg.ok { color:var(--ok); font-weight:600; }
.wl-fine { margin:2px 0 0; font-size:12px; color:var(--faint); line-height:1.5; }
.wl-fine a { color:var(--muted); text-decoration:underline; }
