:root {
  --bg: #f3efe3;
  --surface: #fffdf6;
  --surface-2: #ebe5d4;
  --ink: #1b2621;
  --muted: #58675f;
  --line: #dbd2bd;
  --accent: #2d5f45;
  --accent-ink: #ffffff;
  --accent-soft: #dbe9df;
  --water: #2f6f8f;
  --water-soft: #d9e9f0;
  --water-deep: #1d4a60;
  --trip-bg: #fbe8c4;
  --trip-line: #c2741a;
  --trip-ink: #6f3f07;
  --warn-bg: #fff3d4;
  --warn-line: #e0b03e;
  --rise: #2d6e4a;
  --rise-bg: #dcefe2;
  --fall: #a5431d;
  --fall-bg: #f8e0d4;
  --steady: #4d5b54;
  --steady-bg: #e6e3d8;
  --night: rgba(29, 74, 96, .16);
  --radius: 14px;
  --shadow: 0 1px 2px rgba(25, 40, 35, .06), 0 4px 16px rgba(25, 40, 35, .05);
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f1614;
    --surface: #17201d;
    --surface-2: #212c28;
    --ink: #e5ece8;
    --muted: #9aaea4;
    --line: #2c3934;
    --accent: #78c79b;
    --accent-ink: #0d1a12;
    --accent-soft: #1e3a2b;
    --water: #72b8d8;
    --water-soft: #15303c;
    --water-deep: #0b2230;
    --trip-bg: #3a2c13;
    --trip-line: #e3a44d;
    --trip-ink: #f5c983;
    --warn-bg: #342b12;
    --warn-line: #a88420;
    --rise: #8fd6a9;
    --rise-bg: #1d3a29;
    --fall: #ffab85;
    --fall-bg: #43261a;
    --steady: #c2cdc7;
    --steady-bg: #2a3431;
    --night: rgba(120, 180, 220, .12);
    --shadow: none;
  }
  .leaflet-tile-pane { filter: brightness(.82) contrast(1.05); }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.5 system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
a { color: var(--water); }
h1, h2, h3 { line-height: 1.2; margin: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; }
h2 { font-size: 1.25rem; letter-spacing: .005em; }
h3 { font-size: 1rem; }
.wrap { max-width: 1000px; margin: 0 auto; padding: 0 16px; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.hidden, [hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---- top bar + header -------------------------------------------------- */
.topbar { background: var(--accent); color: var(--accent-ink); border-bottom: 3px solid var(--water); }
.topbar .wrap { display: flex; align-items: center; gap: 8px; min-height: 46px; font-weight: 600; font-size: .95rem; }
.topbar a { color: inherit; text-decoration: none; }
.topbar-row { justify-content: space-between; }
.topbar-link { font-weight: 500; font-size: .9rem; opacity: .92; }
.brand-mark { font-size: 1.1rem; }

.spot-head { padding: 22px 0 6px; }
.spot-head h1 { font-size: clamp(1.6rem, 5.5vw, 2.3rem); overflow-wrap: anywhere; }
.coords { margin-top: 4px; font-variant-numeric: tabular-nums; }
.coords a { font-size: .875rem; margin-left: 4px; }
.facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 0; padding: 0; list-style: none; }
.facts:empty { display: none; }
.fact {
  background: var(--trip-bg); color: var(--trip-ink);
  border: 1px solid var(--trip-line);
  border-radius: 999px; padding: 5px 12px; font-size: .9rem;
}
.fact b { font-weight: 600; }
.fact .muted { color: inherit; opacity: .8; }
.privacy-line { margin: 10px 0 0; font-size: .9rem; color: var(--water); font-weight: 500; }
.lede-sm { margin: 8px 0 0; max-width: 62ch; color: var(--muted); font-size: 1.02rem; }

.banner {
  margin: 12px 0 0; padding: 10px 14px; border-radius: 10px;
  background: var(--warn-bg); border: 1px solid var(--warn-line); font-size: .92rem;
}

/* ---- cards ---------------------------------------------------------------- */
main { padding-bottom: 32px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 16px; margin-top: 16px;
}
@media (min-width: 640px) { .card { padding: 20px; } }
.card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }

/* ---- forecast ------------------------------------------------------------ */
.trip-note { margin: 0 0 12px; padding: 10px 12px; border-radius: 10px; background: var(--surface-2); font-size: .95rem; }
.trip-note.is-trip { background: var(--trip-bg); color: var(--trip-ink); }

.pressure-chart { margin: 0 0 14px; padding: 12px 12px 6px; border-radius: 12px; background: var(--water-soft); }
.pressure-chart-head { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
#pressure-svg { width: 100%; overflow: hidden; }
#pressure-svg svg { display: block; }
.pressure-chart .p-line { fill: none; stroke: var(--water); stroke-width: 2.5; stroke-linejoin: round; }
.pressure-chart .p-area { fill: var(--water); opacity: .12; }
.pressure-chart .grid { stroke: var(--line); stroke-width: 1; }
.pressure-chart .grid-h { stroke-dasharray: 2 4; }
.pressure-chart .axis { fill: var(--muted); font-size: 11px; font-variant-numeric: tabular-nums; }
.pressure-chart .unit { font-weight: 600; }
.pressure-chart .trip-band { fill: var(--trip-bg); opacity: .95; stroke: var(--trip-line); stroke-width: 1; }
.pressure-chart .now { stroke: var(--trip-line); stroke-width: 1.5; stroke-dasharray: 3 3; }

.days {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px;
  margin: 0; padding: 0; list-style: none;
}
@media (max-width: 420px) {
  .days { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .day { padding: 8px 9px 10px; }
  .day.on-trip { padding: 7px 8px 9px; }
  .day-emoji { font-size: 1.6rem; }
  .day-fact { flex-wrap: wrap; }
  .day-fact dd { text-align: left; }
  .trend { white-space: normal; }
}
.day { min-width: 0; }
.day {
  position: relative; border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 12px 12px; background: var(--surface); font-variant-numeric: tabular-nums;
  display: flex; flex-direction: column;
}
.day.on-trip { background: var(--trip-bg); border: 2px solid var(--trip-line); padding: 9px 11px 11px; }
.day-name { font-weight: 700; display: flex; flex-wrap: wrap; align-items: center; gap: 4px; }
.day-date { color: var(--muted); font-size: .85rem; }
.day.on-trip .day-date, .day.on-trip .day-f, .day.on-trip .day-temp .lo, .day.on-trip .muted, .day.on-trip .fact-sub { color: var(--trip-ink); }
.day-sym { display: flex; align-items: center; gap: 8px; margin: 6px 0 4px; min-height: 44px; }
.day-emoji { font-size: 2rem; line-height: 1; }
.day-text { font-size: .85rem; line-height: 1.25; }
.day-temp { font-size: 1.15rem; font-weight: 700; }
.day-temp .lo { font-weight: 500; color: var(--muted); }
.day-f { font-size: .8rem; color: var(--muted); }
.day-facts { margin: 8px 0 0; display: grid; gap: 2px; font-size: .85rem; }
.day-fact { display: flex; justify-content: space-between; gap: 6px; }
.day-fact dt { display: flex; gap: 4px; align-items: baseline; }
.day-fact dd { margin: 0; text-align: right; font-weight: 600; }
.fact-icon { width: 1.3em; display: inline-block; }
.fact-sub { font-weight: 400; color: var(--muted); display: block; font-size: .78rem; }
.day-pressure { margin-top: auto; padding-top: 8px; border-top: 1px dashed var(--line); margin-top: 10px; font-size: .88rem; }
.day.on-trip .day-pressure { border-top-color: var(--trip-line); }
.p-trends { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 5px; }
.trend {
  display: inline-flex; align-items: center; gap: 3px; white-space: nowrap;
  font-size: .76rem; font-weight: 700; padding: 2px 7px; border-radius: 999px;
}
.trend-label { font-weight: 500; opacity: .85; }
.trend-arrow { font-size: .95em; }
.trend-rising { background: var(--rise-bg); color: var(--rise); }
.trend-falling { background: var(--fall-bg); color: var(--fall); }
.trend-steady { background: var(--steady-bg); color: var(--steady); }

.tag {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 1px 6px; border-radius: 6px; vertical-align: 2px; white-space: nowrap;
}
.tag-trip { background: var(--trip-line); color: #fff; }
@media (prefers-color-scheme: dark) { .tag-trip { color: #231703; } }
.tag-partial { background: var(--surface-2); color: var(--muted); }
.skeleton { height: 220px; border-radius: 12px; background: var(--surface-2); animation: pulse 1.4s ease-in-out infinite; list-style: none; }
.skeleton-row { height: 120px; margin-bottom: 10px; }
@keyframes pulse { 50% { opacity: .55; } }
@media (prefers-reduced-motion: reduce) { .skeleton { animation: none; } }
.updated { margin-top: 12px; }

/* ---- sun, moon & solunar --------------------------------------------------- */
.astro-days { margin: 12px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.astro-day { border: 1px solid var(--line); border-radius: 12px; padding: 12px; font-variant-numeric: tabular-nums; }
.astro-day.on-trip { background: var(--trip-bg); border: 2px solid var(--trip-line); padding: 11px; }
.astro-day.detached { margin-top: 14px; }
.astro-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap; }
.astro-title { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.astro-moon { display: flex; align-items: center; gap: 6px; font-size: .92rem; }
.moon-emoji { font-size: 1.4rem; line-height: 1; }
.astro-facts { display: flex; flex-wrap: wrap; gap: 4px 18px; margin-top: 6px; font-size: .9rem; }
.timeline { margin-top: 10px; }
.timeline-svg { display: block; width: 100%; height: 30px; border-radius: 8px; background: var(--surface-2); }
.astro-day.on-trip .timeline-svg { background: rgba(255, 255, 255, .45); }
@media (prefers-color-scheme: dark) { .astro-day.on-trip .timeline-svg { background: rgba(0, 0, 0, .25); } }
.tl-night { fill: var(--night); }
.tl-major { fill: var(--water); }
.tl-minor { fill: var(--water); opacity: .45; }
.tl-tick { stroke: var(--line); stroke-width: 2; vector-effect: non-scaling-stroke; }
.timeline-labels { display: flex; justify-content: space-between; font-size: .7rem; color: var(--muted); margin-top: 2px; }
.astro-day.on-trip .timeline-labels { color: var(--trip-ink); }
.periods { margin: 8px 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 4px 12px; font-size: .9rem; }
.period { display: flex; gap: 8px; align-items: baseline; flex-wrap: wrap; }
.period-kind {
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 1px 6px; border-radius: 6px; background: var(--water); color: #fff; min-width: 3.9em; text-align: center;
}
@media (prefers-color-scheme: dark) { .period-kind { color: #06202c; } }
.period-minor .period-kind { background: var(--water-soft); color: var(--water); }
.period-time { font-weight: 600; }
.period-why { font-size: .82rem; }
.astro-day.on-trip .period-why { color: var(--trip-ink); }
.legend { display: flex; flex-wrap: wrap; gap: 6px 16px; margin: 12px 0 0; color: var(--muted); }
.legend-item { display: inline-flex; align-items: center; gap: 6px; }
.swatch { width: 18px; height: 10px; border-radius: 3px; display: inline-block; }
.swatch-major { background: var(--water); }
.swatch-minor { background: var(--water); opacity: .45; }
.swatch-night { background: var(--night); border: 1px solid var(--line); }
.disclaimer { margin: 10px 0 0; padding: 8px 12px; border-left: 3px solid var(--water); background: var(--water-soft); border-radius: 0 8px 8px 0; }

/* ---- map ------------------------------------------------------------------ */
.map-card { padding: 0 !important; overflow: hidden; }
.map-card .card-head { padding: 16px 16px 0; }
#map { height: min(58vh, 460px); min-height: 280px; background: var(--surface-2); }
.map-fallback { padding: 24px 16px; }
.leaflet-container { font: inherit; font-size: .85rem; }
.leaflet-control-layers-toggle { width: 44px !important; height: 44px !important; }
.leaflet-control-layers label { padding: 6px 4px; font-size: .95rem; }
.leaflet-bar a { width: 40px !important; height: 40px !important; line-height: 40px !important; font-size: 20px !important; }
.pin {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg); background: var(--water); border: 2px solid #fff; box-shadow: 0 2px 6px rgba(0,0,0,.35);
}
.pin span { transform: rotate(45deg); font-size: 16px; line-height: 1; }

/* ---- buttons, drop zone ------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 20px; border-radius: 12px; border: 1px solid transparent;
  font: inherit; font-weight: 600; cursor: pointer; text-decoration: none;
  background: var(--accent); color: var(--accent-ink);
}
.btn:focus-visible, select:focus-visible { outline: 3px solid var(--trip-line); outline-offset: 2px; }
.btn-ghost { background: transparent; color: var(--water); border-color: var(--line); }
.drop {
  border: 2px dashed var(--line); border-radius: 12px; padding: 18px 16px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 14px;
  text-align: center; transition: background .15s, border-color .15s;
}
.drop.dragging { border-color: var(--water); background: var(--water-soft); }
.drop-hint { flex-basis: auto; }
@media (max-width: 520px) { .drop .btn { width: 100%; } .drop-hint { order: 3; flex-basis: 100%; } }
.form-error { color: #b3261e; margin: 10px 0 0; }
@media (prefers-color-scheme: dark) { .form-error { color: #ffb4a9; } }

/* ---- insights -------------------------------------------------------------------- */
.empty h2 { margin-bottom: 4px; }
.filters { display: flex; flex-wrap: wrap; gap: 10px 16px; margin: 6px 0 0; }
.filters label { display: grid; gap: 4px; font-size: .82rem; font-weight: 600; color: var(--muted); flex: 1 1 200px; max-width: 320px; }
select {
  font: inherit; font-size: 1rem; color: var(--ink); background: var(--surface);
  border: 1px solid var(--line); border-radius: 10px; min-height: 44px; padding: 0 10px;
}
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
  margin: 14px 0 0; padding: 0; list-style: none; font-variant-numeric: tabular-nums;
}
@media (min-width: 700px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--surface-2); border-radius: 10px; padding: 10px 12px; }
.stat-label { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.stat-value { font-weight: 700; font-size: 1.45rem; font-family: Georgia, "Times New Roman", serif; }
.stat-sub { font-size: .8rem; color: var(--muted); }
.table-scroll { overflow-x: auto; margin-top: 10px; }
.biggest { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; font-size: .92rem; }
.biggest th, .biggest td { text-align: left; padding: 8px 10px 8px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.biggest thead th { font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.biggest tbody th { font-weight: 600; white-space: nowrap; }
.biggest td { white-space: nowrap; }
.biggest td.small { white-space: normal; min-width: 180px; }
.num { text-align: right !important; }
.charts { display: grid; gap: 0 16px; }
@media (min-width: 820px) { .charts { grid-template-columns: 1fr 1fr; } .chart-wide { grid-column: 1 / -1; } }
.chart-title { font-size: 1.05rem; margin-bottom: 8px; }
.chart-body { width: 100%; overflow: hidden; }
.chart-body svg { display: block; }
.chart-card .bar { fill: var(--water); }
.chart-card .bar-top { fill: var(--accent); }
.chart-card .bar-label { fill: var(--ink); font-size: 12.5px; }
.chart-card .bar-count { fill: var(--muted); font-size: 12px; font-weight: 600; font-variant-numeric: tabular-nums; }
.chart-card .axis { fill: var(--muted); font-size: 11px; }
.chart-card .grid { stroke: var(--line); }
.chart-note { margin: 6px 0 0; }

/* ---- missing coords ------------------------------------------------------- */
.steps { padding-left: 1.3em; }
.steps li { margin: 8px 0; }
kbd, code {
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace; font-size: .88em;
  background: var(--surface-2); border-radius: 6px; padding: 1px 5px;
}
.cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

/* ---- marketing landing page ----------------------------------------------- */
.landing .wrap { max-width: 1120px; }
.kicker { margin: 0; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--water); }
.display { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.2rem, 7vw, 3.5rem); line-height: 1.04; margin-top: 10px; letter-spacing: -.01em; }
.landing h2 { font-size: clamp(1.3rem, 3.4vw, 1.75rem); line-height: 1.15; }
.lede { font-size: 1.1rem; color: var(--muted); max-width: 52ch; margin: 16px 0 0; }
.lp-hero { display: grid; gap: 28px; align-items: center; padding: 32px 16px 16px; }
@media (min-width: 900px) { .lp-hero { grid-template-columns: 1fr 1.05fr; padding-top: 56px; } }
.lp-shot { display: block; width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(25, 40, 35, .12); }
.btn-buy { background: var(--trip-line); color: #fff; }
.btn-buy[aria-disabled="true"] { background: var(--surface-2); color: var(--muted); border-color: var(--line); cursor: default; }

.lp-art { position: relative; margin: 0; }
.scene { display: block; width: 100%; height: auto; aspect-ratio: 560 / 440; border-radius: 22px; border: 1px solid var(--line); box-shadow: 0 16px 40px rgba(25, 50, 60, .16); }
.sky-top { stop-color: #f7eed8; }
.sky-bottom { stop-color: #d6e7ea; }
.water-top { stop-color: #4b8ba8; }
.water-deep { stop-color: #173f52; }
.moon { fill: #fbf3dc; }
.moon-shadow { fill: #e9eee6; opacity: .92; }
.shore { fill: #2d5f45; }
.glint { stroke: rgba(255, 255, 255, .55); stroke-width: 2; stroke-linecap: round; }
.ray { fill: rgba(255, 255, 255, .06); }
.weed { fill: none; stroke: #3f7b58; stroke-width: 5; stroke-linecap: round; opacity: .8; }
.ripple { fill: none; stroke: rgba(255, 255, 255, .7); stroke-width: 2; }
.ripple-2 { stroke: rgba(255, 255, 255, .35); }
.line { fill: none; stroke: rgba(30, 30, 30, .55); stroke-width: 1.3; }
.bobber-top { fill: #d9472b; }
.bobber-bottom { fill: #fffdf6; }
.bobber-stem { fill: #fffdf6; }
.lure-body { fill: #e2a93b; }
.lure-lip { fill: rgba(255, 255, 255, .75); }
.lure-eye { fill: #1b2621; }
.lure-hook { fill: none; stroke: #c9d1d6; stroke-width: 1.6; }
.fish path { fill: #0f3040; opacity: .75; }
.fish-eye { fill: #7fb3c9; }
@media (prefers-color-scheme: dark) {
  .sky-top { stop-color: #0d1b24; }
  .sky-bottom { stop-color: #1c3440; }
  .moon { fill: #f4ecd2; }
  .moon-shadow { fill: #13232d; }
  .shore { fill: #10271c; }
  .water-top { stop-color: #1f4d62; }
  .water-deep { stop-color: #081a23; }
  .line { stroke: rgba(230, 230, 230, .45); }
  .fish path { fill: #031018; }
}
@media (prefers-reduced-motion: no-preference) {
  .bobber { animation: bob 3.2s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
  .ripple { animation: ripple 3.2s ease-out infinite; transform-box: fill-box; transform-origin: center; }
  .ripple-2 { animation-delay: .8s; }
  @keyframes bob { 50% { transform: translateY(3px); } }
  @keyframes ripple { 0% { opacity: 0; transform: scale(.7); } 30% { opacity: 1; } 100% { opacity: 0; transform: scale(1.15); } }
}
.mini-card {
  position: absolute; left: 4%; bottom: -18px; width: min(250px, 58%);
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 12px 30px rgba(20, 40, 50, .22); padding: 10px 12px; font-size: .82rem; display: grid; gap: 6px;
  font-variant-numeric: tabular-nums;
}
.mini-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.mini-head b { font-family: Georgia, "Times New Roman", serif; font-size: 1rem; }
@media (max-width: 420px) { .mini-card { width: 66%; font-size: .76rem; padding: 8px 10px; gap: 4px; } }

.lp-grid { display: grid; gap: 14px; padding: 48px 16px 8px; }
@media (min-width: 640px) { .lp-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .lp-grid { grid-template-columns: repeat(3, 1fr); } }
.lp-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.lp-card h2 { font-size: 1.28rem; margin-top: 12px; }
.lp-card p { margin: 8px 0 0; color: var(--muted); }
.lp-card p b { color: var(--ink); }
.lp-card-accent { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.lp-card-accent h2 { margin-top: 0; }
.lp-card-accent p { color: inherit; opacity: .92; }
.lp-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--water-soft); display: grid; place-items: center; }
.lp-icon svg { width: 34px; height: 34px; fill: var(--water); }
.lp-icon .stroke { fill: none; stroke: var(--water); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.lp-icon .thin { stroke-width: 2; opacity: .5; }
.lp-icon .dot { fill: var(--water-soft); }
.lp-icon .cut { fill: var(--water-soft); }
.lp-icon .soft { opacity: .5; }
.lp-icon .block { fill: var(--accent); }

.lp-demo { display: grid; gap: 16px; padding: 24px; margin-top: 32px; border-left: 5px solid var(--water); }
.lp-demo h2 { margin-top: 6px; }
.lp-demo p { max-width: 60ch; }
@media (min-width: 900px) { .lp-demo { grid-template-columns: 1.4fr 1fr; align-items: center; } .lp-demo-cta { justify-content: flex-end; } }
.lp-how, .lp-faq { padding-top: 40px; }
.lp-steps { font-size: 1.05rem; padding-left: 1.4em; margin: 14px 0; }
.lp-steps li { margin: 8px 0; }
.lp-faq details { border-bottom: 1px solid var(--line); padding: 4px 0; max-width: 760px; }
.lp-faq details:first-of-type { margin-top: 12px; border-top: 1px solid var(--line); }
.lp-faq summary { cursor: pointer; font-weight: 600; min-height: 44px; display: flex; align-items: center; }
.lp-faq details p { margin: 0 0 14px; color: var(--muted); max-width: 64ch; }
.lp-closing { padding: 40px 16px 8px; }
.lp-closing-card { text-align: center; padding: 32px 20px; }
.lp-closing-card .cta { justify-content: center; }

/* ---- footer --------------------------------------------------------------- */
footer { border-top: 1px solid var(--line); padding: 20px 0 40px; font-size: .85rem; color: var(--muted); }
footer p { margin: 6px 0; }
.nav-note { font-weight: 700; color: var(--ink); }
