/* ============================================================
   FishingTactix - v6 landing design system
   ============================================================
   Ported from the TradeKit v6 landing so the estate reads as one
   house. Hand-written CSS rather than Tailwind: the tokens, type
   scale, geometry and section rhythm ARE the brand, and keeping
   them in one plain stylesheet stops them being re-expressed in
   TradeKit's Tailwind v3 config and this app's v4 @theme and
   drifting apart.

   Shared with TradeKit: neutrals, type scale, tight radii,
   hairline section rules, sentence-case eyebrows, light all the
   way down (no dark slabs, no gradient hero, no gradient text).

   NOT shared: the CTA accent. TradeKit's orange is TradeKit's.
   FishingTactix keeps its own blue as the structural accent and
   takes teal for the CTA - distinct enough to carry, and already
   in this app's palette.

   CSP NOTE: firebase.json sets script-src WITHOUT 'unsafe-inline'
   on source "**", which includes this page. Styles may be inline,
   scripts may NOT. All behaviour lives in src/landing.js.

   This file is loaded ONLY by index.html (the landing page). The
   React app has its own stylesheet and is untouched.
   ============================================================ */

/* Deliberately single-theme. Light in every context - it does NOT
   follow the device theme, so a phone in dark mode still gets the
   light brand palette. The only dark pixels are the phone bezels,
   which are physical hardware. */
:root, :root[data-theme="dark"], :root[data-theme="light"] {
  color-scheme: light;
  --paper:#F1F4F8; --paper-2:#E7ECF3; --surface:#FFFFFF;
  --ink:#091829; --ink-2:#45586F; --ink-3:#7A8BA1;
  --line:rgba(9,24,41,.12); --line-soft:rgba(9,24,41,.06);
  --blue:#1D63EB; --blue-soft:#EEF3FE;
  --teal:#0D9488; --teal-soft:#ECFDF9;
  --good:#10B981; --warn:#B4530C; --bad:#B4310C;

  --sans: 'Inter', ui-sans-serif, system-ui, -apple-system, "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", "JetBrains Mono", Menlo, Consolas, "Liberation Mono", monospace;

  --shell: 1200px;
  --gut: clamp(20px, 4.5vw, 60px);
  --shadow:0 1px 2px rgba(9,24,41,.05), 0 14px 34px -14px rgba(9,24,41,.16);
  --shadow-xl:0 50px 100px -34px rgba(9,24,41,.42), 0 10px 26px -12px rgba(9,24,41,.2);
}

* { 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(--paper); color:var(--ink);
  font-family:var(--sans); font-size:17px; line-height:1.6;
  -webkit-font-smoothing:antialiased; font-variant-numeric:tabular-nums;
  overflow-x:hidden;
}
h1,h2,h3,h4,h5 { margin:0; font-weight:600; text-wrap:balance; letter-spacing:-.035em; line-height:1.02; }
p { margin:0; }
a { color:inherit; }
ul,ol { margin:0; padding:0; list-style:none; }
img { max-width:100%; display:block; }

.shell { max-width:var(--shell); margin-inline:auto; padding-inline:var(--gut); }
.pad { padding-block:clamp(60px,8.5vw,120px); }
.rule { border-top:1px solid var(--line); }

/* Monospace is reserved for data: figures, dates, table headers. */
.mono { font-family:var(--mono); font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--ink-3); font-weight:500; }

/* Section labels. Sentence case, brand blue, semibold - NOT a mono
   uppercase letter-spaced eyebrow with a middot keyword list. */
.eyebrow { display:inline-block; font-family:var(--sans); font-size:14px; font-weight:650; letter-spacing:-.005em; text-transform:none; color:var(--blue); }
.eyebrow.tl { color:var(--teal); }

/* ============================ BUTTONS ============================ */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:9px; min-height:56px; padding:0 30px; font:inherit; font-size:16.5px; font-weight:600; letter-spacing:-.01em; border-radius:4px; border:1px solid transparent; text-decoration:none; cursor:pointer; transition:transform .15s ease, background-color .15s ease, border-color .15s ease; }
.btn:active { transform:translateY(1px); }
.btn-primary { background:var(--teal); color:#fff; box-shadow:0 12px 30px -12px rgba(13,148,136,.75); }
.btn-primary:hover { background:#0B7F75; }
.btn-quiet { background:var(--surface); color:var(--ink); border-color:var(--line); }
.btn-quiet:hover { border-color:var(--ink); }
:where(a,button,summary,input,[tabindex]):focus-visible { outline:2px solid var(--teal); outline-offset:3px; border-radius:3px; }
.skip { position:absolute; left:-9999px; }
.skip:focus { left:16px; top:12px; position:fixed; z-index:200; }

/* ============================ NAV ============================ */
.nav { position:sticky; top:0; z-index:90; background:color-mix(in srgb, var(--paper) 86%, transparent); backdrop-filter:saturate(1.6) blur(14px); border-bottom:1px solid var(--line); }
.nav-in { display:flex; align-items:center; justify-content:space-between; gap:20px; height:68px; }
.brand { display:flex; align-items:center; gap:10px; text-decoration:none; font-weight:650; font-size:18.5px; letter-spacing:-.035em; }
.brand img { width:30px; height:30px; border-radius:5px; flex:none; }
.brand sup { font-size:.5em; top:-.65em; position:relative; font-weight:500; }
.nav-links { display:none; gap:30px; }
.nav-links a { text-decoration:none; font-size:15px; color:var(--ink-2); }
.nav-links a:hover { color:var(--ink); }
.nav-act { display:flex; align-items:center; gap:16px; }
.nav-act .btn { min-height:44px; padding:0 20px; font-size:15px; box-shadow:none; }
.nav-signin { display:none; text-decoration:none; font-size:15px; color:var(--ink-2); }
@media (min-width:920px) { .nav-links { display:flex; } .nav-signin { display:inline; } }

/* ============================ HERO ============================ */
.hero { position:relative; overflow:hidden; padding-top:clamp(46px,6vw,80px); padding-bottom:clamp(50px,7vw,92px); }
.hero::before { content:""; position:absolute; width:900px; height:700px; border-radius:50%; filter:blur(120px); top:-340px; left:50%; transform:translateX(-50%); background:radial-gradient(circle, rgba(29,99,235,.20) 0%, transparent 66%); pointer-events:none; }
.hero-in { position:relative; z-index:1; text-align:center; }
.hero h1 { font-size:clamp(42px,7.6vw,96px); letter-spacing:-.05em; line-height:.96; margin-top:22px; max-width:14em; margin-inline:auto; }
.hero h1 .lit { color:var(--blue); }
.hero-sub { margin-top:26px; max-width:35em; margin-inline:auto; font-size:clamp(17px,1.8vw,20.5px); line-height:1.55; color:var(--ink-2); }
.hero-cta { display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; justify-content:center; }
.hero-note { margin-top:18px; font-size:14.5px; color:var(--ink-3); }
.hero-store { margin-top:26px; display:flex; flex-wrap:wrap; gap:18px; align-items:center; justify-content:center; }
.hero-store img { height:46px; width:auto; }
.hero-store span { display:inline-flex; align-items:center; gap:9px; font-size:14px; color:var(--ink-2); }
.hero-store svg { color:var(--blue); flex:none; }

/* Hero status: a real release fact, not a keyword list. */
.hero-live { display:inline-flex; align-items:center; gap:10px; background:var(--surface); border:1px solid var(--line); border-radius:99px; padding:9px 18px 9px 14px; font-size:14.5px; color:var(--ink-2); box-shadow:var(--shadow); }
.hero-live b { color:var(--ink); font-weight:650; }
.hl-dot { width:7px; height:7px; border-radius:50%; background:var(--good); flex:none; }
@media (prefers-reduced-motion:no-preference) {
  .hl-dot { animation:blip 2.4s ease-in-out infinite; }
  @keyframes blip { 0%,100%{opacity:1} 50%{opacity:.3} }
}

/* ---- Screenshot stage. The drawn phone mockup that used to live here was
   replaced by a real capture of the app - see .shot above. ---- */
.stage { position:relative; margin-top:clamp(48px,6vw,76px); container-type:inline-size; max-width:330px; margin-inline:auto; }

@media (max-width:720px) { .stage { max-width:290px; } }

/* ---- Real screenshot in a device frame ----
   Preferred over the CSS-drawn mockup: a real capture of the app is more
   convincing and cannot drift out of date the way a hand-built facsimile
   does. The bezel is the only dark element on the page, and it is
   physical hardware.

   Expects a portrait phone capture (1080x2316 from a Samsung device, but
   any portrait ratio works - the frame follows the image).
   width/height MUST be set on the <img> to reserve space and avoid a
   layout shift while it loads. */
.shot { background:#0B1726; border-radius:26px; padding:7px; box-shadow:var(--shadow-xl); border:1px solid rgba(255,255,255,.1); max-width:330px; margin-inline:auto; }
.shot img { display:block; width:100%; height:auto; border-radius:20px; background:var(--paper); }
.shot-cap { margin-top:16px; font-size:13.5px; color:var(--ink-3); text-align:center; max-width:330px; margin-inline:auto; line-height:1.5; }

/* A crop lifted out of the app (no status bar, no nav bar) sits flat on the
   paper with a hairline instead of a bezel - it is not a whole device.
   max-width matters: these captures are tall portraits, and left to fill a
   grid column one would render ~820px high and tower over the text beside
   it. */
.shot-flat { border:1px solid var(--line); border-radius:8px; overflow:hidden; box-shadow:var(--shadow); background:var(--surface); max-width:400px; margin-inline:auto; }
.shot-flat img { display:block; width:100%; height:auto; }

/* Two or three captures side by side. */
.shots { display:grid; gap:clamp(18px,3vw,32px); margin-top:clamp(40px,5vw,60px); justify-items:center; }
@media (min-width:760px) { .shots.two { grid-template-columns:repeat(2,1fr); } }
@media (min-width:980px) { .shots.three { grid-template-columns:repeat(3,1fr); } }
.shots .shot { max-width:300px; }

/* ============================ TRUST ============================ */
.trust { display:flex; flex-wrap:wrap; gap:12px 34px; padding-block:22px; justify-content:center; }
.trust li { display:flex; align-items:center; gap:9px; font-size:14px; color:var(--ink-2); }
.trust svg { color:var(--blue); flex:none; }

/* ============================ SECTION HEADS ============================ */
.sec-hd { display:grid; gap:20px; }
@media (min-width:940px) { .sec-hd { grid-template-columns:1.15fr .85fr; align-items:end; gap:48px; } }
.sec-hd h2 { font-size:clamp(32px,5.2vw,62px); margin-top:18px; letter-spacing:-.045em; }
.sec-hd .lede { color:var(--ink-2); max-width:34em; font-size:17.5px; }
.sec-hd-c { text-align:center; max-width:44em; margin-inline:auto; }
.sec-hd-c h2 { font-size:clamp(32px,5.2vw,62px); margin-top:18px; letter-spacing:-.045em; }
.sec-hd-c .lede { color:var(--ink-2); font-size:17.5px; margin-top:20px; }

/* ============================ BITESYNC ============================ */
.bs-grid { display:grid; gap:clamp(36px,5vw,64px); align-items:center; margin-top:clamp(40px,5vw,60px); }
@media (min-width:1000px) { .bs-grid { grid-template-columns:.9fr 1.1fr; } }

.steps { display:grid; gap:18px; margin-top:30px; }
.step { display:flex; gap:16px; align-items:flex-start; }
.step-n { flex:none; width:30px; height:30px; border-radius:5px; display:grid; place-items:center; background:var(--blue-soft); color:var(--blue); font-family:var(--mono); font-size:12px; font-weight:600; }
.step p { font-size:15.5px; line-height:1.6; color:var(--ink-2); }
.step p b { color:var(--ink); font-weight:600; }
.caveat { margin-top:28px; font-size:13.5px; line-height:1.65; color:var(--ink-3); max-width:46em; }
.inline-go { display:inline-flex; align-items:center; gap:8px; margin-top:24px; font-size:16px; font-weight:600; color:var(--teal); text-decoration:none; }
.inline-go svg { transition:transform .18s ease; }
.inline-go:hover svg { transform:translateX(3px); }

/* ============================ DISCIPLINES ============================ */
.disc { margin-top:clamp(40px,5vw,58px); display:grid; gap:14px; }
@media (min-width:820px) { .disc { grid-template-columns:repeat(3,1fr); } }
.d { background:var(--surface); border:1px solid var(--line); border-radius:6px; padding:28px 26px 30px; box-shadow:var(--shadow); display:flex; flex-direction:column; gap:16px; }
.d-k { display:flex; align-items:center; gap:11px; }
.d-k i { width:9px; height:9px; border-radius:50%; flex:none; font-style:normal; }
.d.coarse .d-k i { background:var(--blue); }
.d.sea .d-k i { background:var(--teal); }
.d.fly .d-k i { background:var(--good); }
.d h3 { font-size:21px; letter-spacing:-.03em; }
.d ul { display:grid; gap:12px; }
.d li { display:flex; gap:10px; align-items:flex-start; font-size:14.5px; line-height:1.55; color:var(--ink-2); }
.d li b { color:var(--ink); font-weight:600; }
.d li svg { flex:none; margin-top:4px; }
.d.coarse li svg { color:var(--blue); }
.d.sea li svg { color:var(--teal); }
.d.fly li svg { color:var(--good); }

/* ============================ FEATURES ============================ */
.feats { margin-top:clamp(40px,5vw,58px); display:grid; gap:14px; }
@media (min-width:700px) { .feats { grid-template-columns:repeat(2,1fr); } }
@media (min-width:1060px) { .feats { grid-template-columns:repeat(3,1fr); } }
.feat { background:var(--surface); border:1px solid var(--line); border-radius:6px; padding:26px 24px 28px; display:flex; flex-direction:column; gap:10px; box-shadow:var(--shadow); transition:transform .2s ease, box-shadow .2s ease; }
.feat:hover { transform:translateY(-3px); box-shadow:0 1px 2px rgba(9,24,41,.05), 0 28px 50px -20px rgba(9,24,41,.26); }
@media (prefers-reduced-motion:reduce) { .feat:hover { transform:none; } }
.feat svg { color:var(--blue); flex:none; }
.feat h3 { font-size:19px; letter-spacing:-.03em; }
.feat p { font-size:14.5px; line-height:1.6; color:var(--ink-2); }
.feats-more { margin-top:28px; font-size:15.5px; color:var(--ink-2); text-align:center; max-width:58em; margin-inline:auto; line-height:1.6; }
.feats-more a { color:var(--teal); font-weight:600; text-decoration:none; }
.feats-more a:hover { text-decoration:underline; }

/* ============================ REGULATIONS ============================ */
/* Was a dark slab. Now a light data section: the table IS the
   authority signal, it does not need a black background. */
.reg-wrap { margin-top:clamp(38px,5vw,54px); overflow-x:auto; border:1px solid var(--line); border-radius:6px; background:var(--surface); box-shadow:var(--shadow); }
table { border-collapse:collapse; width:100%; min-width:720px; }
th, td { padding:14px 16px; text-align:left; border-bottom:1px solid var(--line-soft); font-size:14px; }
thead th { background:var(--surface); border-bottom:1px solid var(--line); padding-top:20px; padding-bottom:16px; font-family:var(--mono); font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-3); font-weight:500; }
tbody th { font-weight:600; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom:0; }
td.num { font-family:var(--mono); font-size:13px; }
td.note { font-size:12.5px; color:var(--ink-3); }
.st { display:inline-block; font-family:var(--mono); font-size:11px; letter-spacing:.14em; text-transform:uppercase; padding:4px 8px; border-radius:3px; white-space:nowrap; }
.st.rec { background:rgba(249,115,22,.15); color:var(--warn); }
.st.new { background:rgba(180,49,12,.12); color:var(--bad); }
.st.mon { background:var(--blue-soft); color:var(--blue); }
.reg-note { margin-top:16px; font-size:12.5px; line-height:1.65; color:var(--ink-3); max-width:70em; }

.cover { margin-top:clamp(34px,4vw,48px); display:grid; gap:22px; }
@media (min-width:900px) { .cover { grid-template-columns:1.3fr .7fr; align-items:start; gap:38px; } }
.cover p { font-size:15.5px; line-height:1.65; color:var(--ink-2); }
.cover p + p { margin-top:14px; }
.cover p b { color:var(--ink); font-weight:600; }
.cover-figs { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line); border:1px solid var(--line); border-radius:6px; overflow:hidden; box-shadow:var(--shadow); }
.cover-fig { background:var(--surface); padding:22px 18px; text-align:center; }
.cover-fig b { display:block; font-size:38px; font-weight:600; letter-spacing:-.05em; line-height:1; color:var(--blue); }
.cover-fig span { display:block; margin-top:8px; font-family:var(--mono); font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-3); }

/* ============================ PRICING ============================ */
.price-grid { margin-top:clamp(40px,5vw,58px); display:grid; gap:16px; max-width:900px; margin-inline:auto; }
@media (min-width:760px) { .price-grid { grid-template-columns:1fr 1fr; } }
.plan { background:var(--surface); border:1px solid var(--line); border-radius:8px; padding:30px 28px 32px; display:flex; flex-direction:column; gap:15px; box-shadow:var(--shadow); }
.plan.pro { border-color:color-mix(in srgb, var(--teal) 45%, var(--line)); background:var(--teal-soft); }
.plan-k { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.plan h3 { font-size:21px; letter-spacing:-.03em; }
.plan .tag { font-family:var(--mono); font-size:11px; letter-spacing:.13em; text-transform:uppercase; color:var(--teal); border:1px solid rgba(13,148,136,.45); padding:3px 8px; border-radius:3px; }
.plan .who { font-size:14px; color:var(--ink-3); }
.plan-fig { display:flex; align-items:baseline; gap:10px; }
.plan-fig b { font-size:clamp(46px,7vw,64px); font-weight:600; letter-spacing:-.055em; line-height:.9; }
.plan-fig span { font-family:var(--mono); font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-3); }
.plan ul { display:grid; gap:1px; background:var(--line); border:1px solid var(--line); border-radius:5px; overflow:hidden; }
.plan li { background:var(--surface); padding:12px 15px; display:flex; align-items:center; gap:11px; font-size:14.5px; color:var(--ink-2); }
.plan li svg { color:var(--good); flex:none; }
.plan .btn { margin-top:auto; }
.plan-note { font-size:13.5px; color:var(--ink-3); text-align:center; }

/* ============================ FAQ ============================ */
.faq { margin-top:clamp(34px,4vw,46px); border-top:1px solid var(--line); max-width:860px; margin-inline:auto; }
.faq details { border-bottom:1px solid var(--line); }
.faq summary { display:flex; align-items:center; justify-content:space-between; gap:22px; padding:24px 0; cursor:pointer; list-style:none; font-size:18px; font-weight:550; letter-spacing:-.025em; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:""; width:11px; height:11px; flex:none; border-right:1.5px solid var(--ink-3); border-bottom:1.5px solid var(--ink-3); transform:rotate(45deg) translate(-3px,-3px); transition:transform .2s ease; }
.faq details[open] summary::after { transform:rotate(-135deg) translate(-2px,-2px); }
@media (prefers-reduced-motion:reduce) { .faq summary::after { transition:none; } }
.faq-a { padding-bottom:26px; max-width:62em; color:var(--ink-2); font-size:15.5px; line-height:1.65; }
.faq-a a { color:var(--teal); font-weight:600; }

/* ============================ CLOSE ============================ */
/* A warm tint, not a dark slab, so the page stays light all the way
   down and the CTA still carries. */
.close { background:linear-gradient(180deg, var(--surface) 0%, var(--teal-soft) 100%); position:relative; overflow:hidden; text-align:center; border-top:1px solid var(--line); }
.close::before { content:""; position:absolute; width:760px; height:560px; border-radius:50%; filter:blur(110px); top:-210px; left:50%; transform:translateX(-50%); background:radial-gradient(circle, rgba(13,148,136,.18) 0%, transparent 68%); pointer-events:none; }
.close-in { position:relative; z-index:1; }
.close h2 { font-size:clamp(36px,6.4vw,80px); margin-top:22px; letter-spacing:-.05em; max-width:14em; margin-inline:auto; }
.close p { margin-top:24px; color:var(--ink-2); max-width:38em; margin-inline:auto; font-size:17.5px; }
.close-act { margin-top:36px; display:flex; flex-wrap:wrap; gap:14px; justify-content:center; }
.close-note { margin-top:18px; font-size:14.5px; color:var(--ink-3); }
.close-store { margin-top:28px; display:flex; justify-content:center; }
.close-store img { height:46px; width:auto; }

/* ============================ FOOTER ============================ */
.foot { background:var(--paper-2); color:var(--ink-2); border-top:1px solid var(--line); padding-block:48px 36px; }
.foot-in { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:20px; }
.foot .brand { font-size:16px; }
.foot-links { display:flex; flex-wrap:wrap; gap:20px; }
.foot-links a { color:var(--ink); text-decoration:none; font-size:14px; opacity:.9; }
.foot-links a:hover { opacity:1; text-decoration:underline; }
.foot-legal { margin-top:34px; padding-top:24px; border-top:1px solid var(--line); display:grid; gap:10px; font-size:12.5px; line-height:1.6; color:var(--ink-3); }

/* ============================ MOTION ============================ */
/* .in is the hook; landing.js adds .on. Anything not observed stays
   visible, so a JS failure never hides content. */
@media (prefers-reduced-motion:no-preference) {
  .in { opacity:0; transform:translateY(20px); }
  .in.on { opacity:1; transform:none; transition:opacity .6s cubic-bezier(0.22, 1, 0.36, 1), transform .6s cubic-bezier(0.22, 1, 0.36, 1); }
  .st1{transition-delay:.05s} .st2{transition-delay:.13s} .st3{transition-delay:.21s} .st4{transition-delay:.29s}
}

/* ---- Cookie consent -------------------------------------------------------
   FishingTactix serves Republic of Ireland anglers (region 'IE'), so a share of
   visitors are in the EEA and analytics cookies need consent BEFORE they load,
   not after. Nothing is measured until Allow is tapped.
   Light-only, like the rest of this page: a phone in dark mode still gets the
   light brand palette (KIH brand rule). */
#consent-banner { display:none; position:fixed; left:0; right:0; bottom:0; z-index:200; background:var(--surface); border-top:1px solid var(--line); box-shadow:0 -14px 34px -18px rgba(9,24,41,.28); padding:18px 20px calc(18px + env(safe-area-inset-bottom)); }
#consent-banner.is-open { display:block; }
.consent-inner { max-width:820px; margin:0 auto; display:flex; flex-wrap:wrap; align-items:center; gap:14px 20px; }
.consent-copy { flex:1 1 320px; min-width:0; }
.consent-copy h2 { margin:0 0 4px; font-size:15px; font-weight:600; letter-spacing:-.01em; color:var(--ink); }
.consent-copy p { margin:0; font-size:14px; line-height:1.55; color:var(--ink-2); }
.consent-actions { display:flex; gap:10px; flex:0 0 auto; }
.consent-actions .btn { min-height:48px; padding:0 22px; font-size:15px; box-shadow:none; }
@media (max-width:560px) {
  .consent-actions { width:100%; }
  .consent-actions .btn { flex:1; }
}

/* ============================ LEGAL PAGES ============================
   Privacy policy, terms of service, delete account.
   Readable prose inside the v6 canvas. The page structure mirrors the
   v6 legal references (bare sections, inline-styled cards and tables);
   these scoped rules provide the typography that structure implies -
   headings, paragraph rhythm, list markers and link colour. Scoped to
   .legal so the landing page is untouched. */
.legal h2 { font-size:22px; margin-top:44px; letter-spacing:-.02em; }
.legal section > h2:first-child { margin-top:0; }
.legal h3 { font-size:17px; margin-top:28px; letter-spacing:-.01em; }
.legal p { margin-top:12px; font-size:15.5px; line-height:1.65; color:var(--ink-2); }
.legal ul, .legal ol { list-style:disc; padding-left:22px; margin-top:12px; display:grid; gap:8px; font-size:15.5px; color:var(--ink-2); }
.legal ol { list-style:decimal; }
.legal li::marker { color:var(--ink-3); }
.legal a { color:var(--blue); text-decoration:underline; text-underline-offset:2px; }
.legal strong { color:var(--ink); }
