/* FidelisFinds — shared styles
   Visual system mirrors the GoGoGallery iOS app:
   warm off-white surfaces, calm aqua accent, SF Pro stack, restrained shadows.
*/

:root {
  /* surfaces */
  --bg: #FAFAF7;
  --bg-elevated: #FFFFFF;
  --surface: #F2F1ED;
  --surface-soft: #F7F6F2;

  /* lines */
  --hairline: rgba(20, 22, 26, 0.08);
  --hairline-soft: rgba(20, 22, 26, 0.05);

  /* text */
  --text: #0E1118;
  --text-secondary: rgba(20, 22, 26, 0.62);
  --text-tertiary: rgba(20, 22, 26, 0.40);

  /* accents (aqua palette, same as app) */
  --accent: #0FB5A9;
  --accent-deep: #0A8F86;
  --accent-tint: #E2F4F2;
  --keep: #16A06E;
  --keep-tint: #E2F2EA;
  --danger: #E2503D;
  --warm-hi: #F4B860;

  /* shadows */
  --shadow: 0 1px 2px rgba(20, 22, 26, 0.04), 0 8px 24px rgba(20, 22, 26, 0.06);
  --shadow-soft: 0 1px 0 rgba(20, 22, 26, 0.04);
  --shadow-lift: 0 1px 2px rgba(20, 22, 26, 0.05), 0 16px 40px rgba(20, 22, 26, 0.08);

  /* type */
  --sf: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
        "Helvetica Neue", system-ui, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* layout */
  --max: 1180px;
  --gutter: 28px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sf);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a {
  color: var(--accent-deep);
  text-decoration: none;
  transition: color .15s ease;
}
a:hover { color: var(--text); }

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 {
  margin: 0 0 .4em;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-wrap: balance;
}

h1 { font-size: clamp(40px, 5.6vw, 64px); line-height: 1.04; letter-spacing: -0.035em; }
h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.1; letter-spacing: -0.028em; }
h3 { font-size: clamp(20px, 2vw, 24px); line-height: 1.2; letter-spacing: -0.018em; }
h4 { font-size: 17px; line-height: 1.3; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.lead {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 56ch;
}

.muted { color: var(--text-secondary); }
.tiny  { font-size: 13px; color: var(--text-tertiary); }

hr.rule {
  border: 0;
  height: 1px;
  background: var(--hairline);
  margin: 0;
}

/* ─── layout ──────────────────────────────────────────────────────────── */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding-block: clamp(56px, 8vw, 112px);
}

.section--tight { padding-block: clamp(40px, 5vw, 64px); }

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 880px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
}

/* ─── header / nav ────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--hairline-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.022em;
  color: var(--text);
}
.brand:hover { color: var(--text); }

.brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--text);
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--hairline);
  background: var(--bg-elevated);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 18px; height: 18px; }

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--hairline);
    padding: 8px 0;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 28px;
    font-size: 16px;
    color: var(--text);
    border-bottom: 1px solid var(--hairline-soft);
  }
  .nav-links li:last-child a { border-bottom: 0; }
}

/* ─── buttons ─────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 12px;
  font-family: var(--sf);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, color .15s ease;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover { background: #000; color: var(--bg); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--hairline);
}
.btn-ghost:hover { background: var(--surface-soft); color: var(--text); }

/* ─── small components ────────────────────────────────────────────────── */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-tint);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(15,181,169,0.18);
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-secondary); font-size: 15px; }

.feature {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature .ico {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--accent-tint);
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.feature .ico svg { width: 20px; height: 20px; }
.feature h4 { font-size: 16px; margin: 0; letter-spacing: -0.015em; }
.feature p  { font-size: 14px; color: var(--text-secondary); line-height: 1.45; margin: 0; }

/* ─── hero block ──────────────────────────────────────────────────────── */

.hero {
  padding-top: clamp(64px, 8vw, 112px);
  padding-bottom: clamp(40px, 5vw, 64px);
}

.hero h1 .accent { color: var(--accent-deep); }
.hero .lead { margin-top: 18px; }
.hero .cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ─── phone mockup (HTML/CSS) ─────────────────────────────────────────── */
/* iPhone 15-ish bezel; content area is 268×580 inside a 300×608 bezel */

.phone {
  --pw: 300px;
  --ph: 608px;
  --pad: 16px;
  width: var(--pw);
  height: var(--ph);
  border-radius: 44px;
  background: #1a1c20;
  padding: var(--pad);
  position: relative;
  box-shadow:
    0 0 0 2px #2c2e34 inset,
    0 30px 60px -20px rgba(20, 22, 26, 0.35),
    0 16px 30px -16px rgba(20, 22, 26, 0.18);
  flex: 0 0 auto;
}
.phone--sm { --pw: 240px; --ph: 486px; --pad: 13px; border-radius: 36px; }

.phone .screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: var(--bg);
  overflow: hidden;
  position: relative;
  font-family: var(--sf);
  color: var(--text);
}
.phone--sm .screen { border-radius: 24px; }

/* dynamic island */
.phone .island {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 26px;
  background: #0a0b0d;
  border-radius: 999px;
  z-index: 4;
}
.phone--sm .island { width: 76px; height: 22px; top: 7px; }

/* status bar (tiny) */
.phone .status {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  z-index: 3;
  pointer-events: none;
}
.phone .status .right { display: flex; gap: 5px; align-items: center; }
.phone .status .right svg { width: 14px; height: 9px; }
.phone--sm .status { padding: 11px 18px 0; font-size: 10px; }

/* screen scrolling region under status bar */
.phone .screen-body {
  position: absolute;
  inset: 44px 0 0;
  padding: 8px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.phone--sm .screen-body { inset: 36px 0 0; padding: 6px 14px 18px; gap: 10px; }

/* generic mini-blocks shared across screen variants */
.s-row { display: flex; align-items: center; justify-content: space-between; }

.s-logo {
  display: inline-flex; align-items: center; gap: 8px;
}
.s-logo .mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 10px rgba(15,181,169,0.4);
}
.s-logo .mark svg { width: 16px; height: 16px; }
.s-logo .name {
  font-size: 17px; font-weight: 700; letter-spacing: -0.02em;
}
.phone--sm .s-logo .name { font-size: 14px; }

.s-title {
  font-size: 22px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.1;
}
.phone--sm .s-title { font-size: 17px; }
.s-sub {
  font-size: 12px; color: var(--text-secondary); margin-top: 3px;
}
.phone--sm .s-sub { font-size: 11px; }

.s-card {
  background: var(--bg-elevated);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.phone--sm .s-card { padding: 11px; border-radius: 12px; }

.s-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.s-stat .v {
  font-size: 18px; font-weight: 700; letter-spacing: -0.03em; line-height: 1;
}
.s-stat .l {
  font-size: 9px; color: var(--text-secondary); font-weight: 500;
  letter-spacing: 0.02em; margin-top: 4px;
}

.s-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-tertiary);
  padding: 0 4px;
}

.s-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.s-tile {
  background: var(--bg-elevated);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 10px;
  min-height: 68px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
}
.s-tile.accent {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 16px rgba(15, 181, 169, 0.28);
}
.s-tile .ico {
  width: 24px; height: 24px; border-radius: 7px;
  background: var(--accent-tint);
  color: var(--accent-deep);
  display: inline-flex; align-items: center; justify-content: center;
}
.s-tile.accent .ico {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.s-tile .ico svg { width: 13px; height: 13px; }
.s-tile .t { font-size: 12px; font-weight: 600; letter-spacing: -0.015em; }
.s-tile .x { font-size: 10px; opacity: 0.78; margin-top: 1px; font-weight: 500; }
.s-tile .badge {
  position: absolute; top: 8px; right: 8px;
  background: var(--surface); color: var(--text-secondary);
  font-size: 8px; font-weight: 700; letter-spacing: 0.05em;
  padding: 2px 6px; border-radius: 999px;
}
.s-tile.accent .badge {
  background: rgba(255,255,255,0.22); color: #fff;
}

.s-priv {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; color: var(--text-tertiary); font-weight: 500;
  margin-top: 4px;
}
.s-priv svg { width: 11px; height: 11px; }

/* full-bleed photo screen variant (swipe) */
.phone .screen.bleed { background: #F4F2EC; }

.swipe-deck {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  padding: 56px 18px 84px;
  display: flex; flex-direction: column;
}
.swipe-top {
  position: absolute; top: 50px; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 14px;
  z-index: 4;
}
.glass-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 10px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  color: var(--text);
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 6px 16px rgba(0,0,0,0.08);
}
.glass-pill.accent { background: rgba(15,181,169,0.16); color: var(--accent-deep); }
.glass-pill .count { color: var(--accent); }
.glass-pill .sep { color: var(--text-tertiary); }
.glass-pill .of { color: var(--text-secondary); font-weight: 500; }

.swipe-progress {
  position: absolute; top: 84px; left: 18px; right: 18px;
  height: 3px;
  background: rgba(20,22,26,0.06);
  border-radius: 999px;
  overflow: hidden;
  z-index: 3;
}
.swipe-progress .bar {
  height: 100%; width: 42%;
  background: var(--accent);
  border-radius: 999px;
}

.swipe-cards {
  position: relative; flex: 1; margin-top: 36px;
}
.swipe-cards .c {
  position: absolute; inset: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
}
.swipe-cards .c.back2 {
  inset: 14px 24px 0;
  background: #E6E2D8;
  transform: scale(0.95);
  opacity: 0.7;
}
.swipe-cards .c.back1 {
  inset: 6px 10px 0;
  background: #d8d3c8;
  transform: scale(0.98);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}
.swipe-cards .c.front {
  transform: rotate(-3deg) translateX(-6px);
  box-shadow: 0 16px 40px rgba(20, 22, 26, 0.22);
}
.swipe-cards .c.front .photo {
  position: absolute; inset: 0;
  background-color: #2c2920;
  background-size: cover;
  background-position: center;
}

/* ─── full-size swipe overrides (when used in a non-sm phone) ────────── */
.phone:not(.phone--sm) .swipe-top { top: 52px; padding: 0 16px; }
.phone:not(.phone--sm) .swipe-top .glass-pill { padding: 6px 11px; font-size: 12px; gap: 4px; }
.phone:not(.phone--sm) .swipe-progress { top: 94px; left: 22px; right: 22px; height: 4px; }
.phone:not(.phone--sm) .swipe-deck { padding: 112px 22px 104px; }
.phone:not(.phone--sm) .swipe-cards { margin-top: 0; }
.phone:not(.phone--sm) .swipe-cards .c.front { border-radius: 26px; }

/* MARK badge — anchored to top-left on a 16px grid, no rotation for a
   clean intentional alignment */
.phone:not(.phone--sm) .swipe-mark {
  top: 16px; left: 16px;
  padding: 6px 11px;
  gap: 5px;
  font-size: 11px;
  letter-spacing: 0.1em;
  border-radius: 8px;
  transform: none;
}
.phone:not(.phone--sm) .swipe-mark svg { width: 12px; height: 12px; }

/* Meta strip — date top-left, chips top-right, time/location spans full
   bottom row. Grid keeps both rows on the 16px gutter and prevents the
   chips and time string from competing for the same horizontal space. */
.phone:not(.phone--sm) .swipe-meta {
  padding: 52px 16px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 10px;
  row-gap: 2px;
  align-items: end;
}
.phone:not(.phone--sm) .swipe-meta .d {
  grid-column: 1; grid-row: 1;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  white-space: nowrap;
}
.phone:not(.phone--sm) .swipe-meta .s {
  grid-column: 1 / -1; grid-row: 2;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: -0.005em;
  line-height: 1.2;
  white-space: nowrap;
}
.phone:not(.phone--sm) .swipe-meta .chips {
  grid-column: 2; grid-row: 1;
  display: flex;
  gap: 5px;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
}
.phone:not(.phone--sm) .swipe-meta .chip {
  font-size: 10px;
  padding: 3px 8px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  border-radius: 999px;
  white-space: nowrap;
}

.phone:not(.phone--sm) .swipe-actions { bottom: 28px; gap: 22px; }
.phone:not(.phone--sm) .swipe-action { width: 58px; height: 58px; }
.phone:not(.phone--sm) .swipe-action.sm { width: 44px; height: 44px; }
.phone:not(.phone--sm) .swipe-action svg { width: 22px; height: 22px; }

/* ─── real-photo helper (used inside phone mockups) ──────────────────── */
.rph {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.rph-grid {
  display: grid;
  gap: 5px;
}
.rph-grid > .rph {
  aspect-ratio: 1;
  border-radius: 7px;
  position: relative;
}
.rph-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.rph-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.rph-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.rph-grid > .rph.tall { aspect-ratio: 0.78; }
.rph-pick {
  box-shadow: 0 0 0 2px var(--accent) inset, 0 0 0 4px rgba(15,181,169,0.18) inset;
}
.rph-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20,22,26,0.35);
  border-radius: inherit;
}
.rph-mark-x {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--danger);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  z-index: 2;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.swipe-mark {
  position: absolute; top: 12px; left: 14px;
  background: rgba(226,80,61,0.92);
  color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  padding: 5px 9px; border-radius: 8px;
  transform: rotate(-8deg);
  display: inline-flex; align-items: center; gap: 4px;
  z-index: 2;
  box-shadow: 0 6px 14px rgba(226,80,61,0.28);
}
.swipe-mark svg { width: 10px; height: 10px; }
.swipe-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  color: #fff;
  display: flex; align-items: flex-end; justify-content: space-between;
  z-index: 2;
}
.swipe-meta .d { font-size: 12px; font-weight: 600; white-space: nowrap; }
.swipe-meta .s { font-size: 10px; opacity: 0.78; margin-top: 1px; white-space: nowrap; }
.swipe-meta .chips { display: flex; gap: 4px; flex-shrink: 0; }
.swipe-meta .chip {
  background: rgba(255,255,255,0.18); color: #fff;
  font-size: 9px; padding: 2px 6px; border-radius: 999px; font-weight: 600;
  white-space: nowrap;
}

.swipe-actions {
  position: absolute; bottom: 18px; left: 0; right: 0;
  display: flex; justify-content: center; align-items: center; gap: 18px;
  z-index: 4;
}
.swipe-action {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--bg-elevated);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.swipe-action.sm { width: 38px; height: 38px; }
.swipe-action svg { width: 18px; height: 18px; }

/* device row & stack layouts */
.phone-row {
  display: flex; align-items: center; gap: 24px;
  justify-content: center;
}
.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 640px;
  perspective: 1200px;
}
.phone-stage .phone--behind {
  position: absolute;
  transform: translateX(-180px) translateY(28px) rotate(-5deg) scale(0.9);
  filter: drop-shadow(0 18px 28px rgba(20,22,26,0.12));
  opacity: 0.95;
}
.phone-stage .phone--behind-right {
  position: absolute;
  transform: translateX(180px) translateY(28px) rotate(5deg) scale(0.9);
  filter: drop-shadow(0 18px 28px rgba(20,22,26,0.12));
  opacity: 0.95;
}
.phone-stage .phone--front {
  position: relative;
  z-index: 2;
}

@media (max-width: 720px) {
  .phone-stage { min-height: 540px; }
  .phone-stage .phone--behind  { transform: translateX(-120px) translateY(20px) rotate(-5deg) scale(0.78); }
  .phone-stage .phone--behind-right { transform: translateX(120px) translateY(20px) rotate(5deg) scale(0.78); }
  .phone-row { flex-wrap: wrap; }
}

/* ─── footer ──────────────────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 40px 0 48px;
  margin-top: 40px;
  background: var(--surface-soft);
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-links {
  display: flex; gap: 22px; list-style: none; margin: 0; padding: 0;
  flex-wrap: wrap;
}
.footer-links a { color: var(--text-secondary); font-size: 14px; }
.footer-links a:hover { color: var(--text); }
.footer-meta { color: var(--text-tertiary); font-size: 13px; }

/* ─── prose pages (privacy, terms, about) ─────────────────────────────── */

.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) 0;
}
.prose h1 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 8px; }
.prose .meta { color: var(--text-tertiary); font-size: 13px; margin-bottom: 32px; }
.prose h2 { font-size: 22px; margin-top: 40px; margin-bottom: 10px; letter-spacing: -0.02em; }
.prose h3 { font-size: 17px; margin-top: 28px; margin-bottom: 6px; }
.prose p, .prose li {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}
.prose ul { padding-left: 22px; margin: 0 0 1em; }
.prose li { margin-bottom: 6px; }
.prose .callout {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--accent-tint);
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 15px;
  color: var(--accent-deep);
}

/* ─── contact page ────────────────────────────────────────────────────── */

.contact-card {
  background: var(--bg-elevated);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  max-width: 560px;
  margin: 0 auto;
}
.contact-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline-soft);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row .ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent-tint);
  color: var(--accent-deep);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.contact-row .ico svg { width: 18px; height: 18px; }
.contact-row .label {
  font-size: 12px; color: var(--text-tertiary);
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 4px;
}
.contact-row .value { font-size: 16px; color: var(--text); font-weight: 500; }
.contact-row .value a { color: var(--text); }
.contact-row .value a:hover { color: var(--accent-deep); }

/* ─── coming-soon plate ───────────────────────────────────────────────── */

.coming-plate {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  max-width: 360px;
}
.coming-plate .badge {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--text); color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 11px; letter-spacing: 0.04em;
  text-align: center; line-height: 1.1;
  flex: 0 0 auto;
}
.coming-plate .meta .t {
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
}
.coming-plate .meta .s {
  font-size: 13px; color: var(--text-secondary);
}

/* ─── feature grid section ───────────────────────────────────────────── */

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 36px; flex-wrap: wrap;
}
.section-head h2 { margin: 0; }
.section-head .lead { margin: 0; max-width: 40ch; font-size: 16px; }

/* ─── product page extras ─────────────────────────────────────────────── */

.product-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
@media (max-width: 880px) {
  .product-hero { grid-template-columns: 1fr; }
}

.product-meta {
  display: flex; gap: 18px; margin-top: 28px; flex-wrap: wrap;
}
.product-meta .item .l {
  font-size: 11px; color: var(--text-tertiary);
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
}
.product-meta .item .v {
  font-size: 15px; color: var(--text); font-weight: 500; margin-top: 4px;
}

/* ─── interest form ───────────────────────────────────────────────────── */

.interest {
  display: flex;
  gap: 8px;
  align-items: stretch;
  max-width: 460px;
  margin-top: 16px;
}
.interest input {
  flex: 1;
  height: 46px;
  border: 1px solid var(--hairline);
  background: var(--bg-elevated);
  border-radius: 12px;
  padding: 0 14px;
  font-family: var(--sf);
  font-size: 15px;
  color: var(--text);
}
.interest input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(15,181,169,0.14);
}
.interest button {
  height: 46px;
  border: none;
  border-radius: 12px;
  padding: 0 18px;
  background: var(--text);
  color: var(--bg);
  font-family: var(--sf);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.interest button:hover { background: #000; }
.interest-note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-tertiary);
}

@media (max-width: 520px) {
  .interest { flex-direction: column; }
}

/* ─── ASCII separator (subtle visual punctuation) ─────────────────────── */

.tag-line {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
}
