/* ═══════════════════════════════════════════════════════════════
   Kinship landing - design tokens ported from the iOS app
   (Kinship/DesignSystem/Theme.swift). Warm off-white canvas, calm
   teal brand, sunrise accents, SF-Rounded-style friendly type.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Brand */
  --brand:       #189A8B;
  --brand-deep:  #0E6E68;
  --brand-soft:  #E5F6F3;
  --brand-2:     #3FBFC6;          /* calm-gradient end stop */

  /* Warm accents (sunrise) */
  --accent:      #FF8A5B;
  --amber:       #F6B24B;
  --lilac:       #7C6BF0;
  --success:     #2FAE6A;

  /* Surfaces */
  --canvas:      #FBF8F4;
  --surface:     #FFFFFF;
  --input:       #F4EFE8;
  --border:      #ECE5DB;
  --divider:     #F0EAE1;

  /* Dark (footer / phone) */
  --ink:         #0F1417;
  --ink-2:       #181F23;
  --ink-3:       #232C31;

  /* Text */
  --text:        #22262E;
  --text-2:      #6B7280;
  --text-3:      #9AA0A8;

  /* Radii (Theme.Radius) */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Type - ui-rounded = real SF Rounded on Apple devices */
  --font: ui-rounded, "Nunito", -apple-system, "Segoe UI", sans-serif;

  /* Elevation */
  --shadow-sm: 0 4px 14px rgba(34, 38, 46, 0.05);
  --shadow-md: 0 12px 32px rgba(34, 38, 46, 0.08);
  --shadow-lg: 0 24px 60px rgba(34, 38, 46, 0.12);
  --shadow-brand: 0 16px 40px rgba(24, 154, 139, 0.28);

  --grad-calm: linear-gradient(135deg, #189A8B, #3FBFC6);
  --grad-sunrise: linear-gradient(135deg, #FF8A5B, #F6B24B);
}

/* ─── Reset-ish ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--canvas);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; }

/* ─── Type scale ─── */
h1 { font-size: clamp(2.5rem, 5.4vw, 3.9rem); font-weight: 900; line-height: 1.06; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.015em; }
h3 { font-size: 1.25rem; font-weight: 800; }
.muted { color: var(--text-3); }
.lede { font-size: 1.15rem; color: var(--text-2); max-width: 34rem; }

/* ─── Pills (section tags) ─── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px; border-radius: var(--r-pill);
}
.pill-brand { background: var(--brand-soft); color: var(--brand-deep); }
.pill-soft  { background: var(--input); color: var(--text-2); }
.pill-glass { background: rgba(255,255,255,0.18); color: #fff; }

/* ─── Buttons (PrimaryButtonStyle port) ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: 1rem; font-weight: 800;
  border: none; cursor: pointer; border-radius: var(--r-md);
  padding: 0 26px; height: 54px; white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--grad-calm); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { filter: brightness(1.06); }
.btn-light { background: #fff; color: var(--brand-deep); box-shadow: 0 10px 28px rgba(0,0,0,0.18); }
.btn-light:hover { filter: brightness(0.97); }
.btn-sm { height: 42px; padding: 0 18px; font-size: 0.92rem; }

/* ─── Nav ─── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 244, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--divider);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { font-weight: 700; font-size: 0.95rem; color: var(--text-2); transition: color 0.15s; }
.nav-links a:hover { color: var(--brand-deep); }

/* ─── Hero ─── */
.hero { padding: 72px 0 40px; position: relative; }
.hero::before {
  /* soft sunrise glow behind the phone */
  content: ""; position: absolute; right: -10%; top: 4%;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(246,178,75,0.14), rgba(24,154,139,0.10) 45%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 48px; align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }

.waitlist-form { display: flex; gap: 10px; width: 100%; max-width: 460px; }
.waitlist-form input[type="email"] {
  flex: 1; min-width: 0; height: 54px; padding: 0 18px;
  font-family: var(--font); font-size: 1rem; font-weight: 600;
  color: var(--text); background: var(--surface);
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  outline: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.waitlist-form input[type="email"]::placeholder { color: var(--text-3); }
.waitlist-form input[type="email"]:focus {
  border-color: var(--brand); box-shadow: 0 0 0 4px rgba(24,154,139,0.12);
}
.hp { display: none !important; }
.form-note { font-size: 0.88rem; color: var(--text-2); }
.form-note strong { color: var(--brand-deep); }
.form-note.is-success { color: var(--brand-deep); font-weight: 700; }
.form-note.is-error { color: #E5533D; font-weight: 700; }

/* ─── Phone mockup ─── */
.hero-visual { position: relative; display: flex; justify-content: center; padding: 28px 0; }
.phone {
  width: 300px; border-radius: 54px; padding: 8px;
  background: #0b0e10;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255,255,255,0.05), inset 0 0 3px 1px rgba(255,255,255,0.12);
  position: relative; z-index: 2;
  transform: rotate(1.5deg);
}
/* side buttons: volume rocker (left) + power (right) */
.phone::before {
  content: ""; position: absolute; left: -2px; top: 132px; width: 2.5px; height: 40px;
  background: #0b0e10; border-radius: 2px 0 0 2px; box-shadow: 0 52px 0 #0b0e10;
}
.phone::after {
  content: ""; position: absolute; right: -2px; top: 150px; width: 2.5px; height: 66px;
  background: #0b0e10; border-radius: 0 2px 2px 0;
}
.phone-screen {
  background: var(--canvas); border-radius: 46px; overflow: hidden;
  display: flex; flex-direction: column; position: relative;
  aspect-ratio: 300 / 650;
}
.dynamic-island {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 82px; height: 24px; background: #000; border-radius: 999px; z-index: 6;
}
.status-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 24px 3px; font-size: 12.5px; font-weight: 700; color: var(--text);
  flex: none;
}
.sb-time { letter-spacing: -0.3px; }
.sb-icons { display: flex; align-items: center; gap: 5px; }
.sb-icons svg { display: block; }
.screen-body {
  flex: 1 1 auto; min-height: 0; overflow: hidden;
  display: flex; flex-direction: column; gap: 12px;
  padding: 4px 14px 12px;
}
/* iOS 26 style: a floating, rounded tab bar inset from the screen edges, with a
   pill highlight behind the whole active tab (icon + label). Mirrors the app. */
.tab-bar {
  flex: none; display: flex; justify-content: space-around; align-items: center;
  margin: 2px 10px 9px; padding: 4px 5px;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(236,229,219,0.55);
  border-radius: 26px;
  box-shadow: 0 8px 20px rgba(17,24,28,0.11);
}
.tab {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  color: var(--text); padding: 3px 8px; border-radius: 13px;
}
.tab-ico { display: flex; align-items: center; justify-content: center; }
.tab svg { width: 19px; height: 19px; display: block; }
.tab i { font-style: normal; font-size: 7.5px; font-weight: 700; letter-spacing: -0.2px; }
.tab.active { background: rgba(17,24,28,0.09); color: var(--brand); }
.mock-topbar { display: flex; align-items: center; justify-content: space-between; padding: 8px 6px 2px; }
.mock-topbar img { height: 27px; width: auto; }
.mock-topbar-icons { display: flex; align-items: center; gap: 13px; }
.mock-topbar-icons svg { width: 19px; height: 19px; display: block; }
.mock-topbar-icons .bell { position: relative; display: flex; }
.mock-topbar-icons .dot {
  position: absolute; top: -1px; right: -1px; width: 7px; height: 7px;
  background: var(--lilac); border-radius: 50%; display: block;
}
.mini-avatar {
  width: 25px; height: 25px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800;
}

.streak-card {
  background: var(--grad-calm); border-radius: var(--r-lg);
  padding: 18px 16px; color: #fff; box-shadow: var(--shadow-brand);
}
.streak-toprow { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.streak-label { font-size: 0.72rem; font-weight: 700; opacity: 0.9; letter-spacing: 0.02em; max-width: 55%; }
.streak-hero { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-top: 4px; }
.streak-count { display: flex; align-items: baseline; gap: 7px; }
.streak-count span { font-size: 2.85rem; font-weight: 900; line-height: 1; font-variant-numeric: tabular-nums; }
.streak-count small { font-size: 1rem; font-weight: 700; opacity: 0.9; }
.streak-clock { font-size: 0.92rem; font-weight: 800; opacity: 0.95; font-variant-numeric: tabular-nums; }
.gavein-row { display: flex; justify-content: flex-end; margin-top: 12px; }
.chip-count {
  background: #fff; color: var(--brand-deep); border-radius: 50%;
  min-width: 15px; height: 15px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 900; padding: 0 3px;
}
.ruler { margin-top: 10px; background: rgba(255,255,255,0.10); border-radius: 14px; padding: 10px 13px; }
.ruler-labels { display: flex; justify-content: space-between; font-size: 0.62rem; font-weight: 700; opacity: 0.92; }
.ruler-track { position: relative; height: 10px; margin: 9px 1px; }
.ruler-track::before {
  content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 3px;
  transform: translateY(-50%); background: rgba(255,255,255,0.28); border-radius: 99px;
}
.ruler-fill {
  position: absolute; top: 50%; left: 0; width: 11%; height: 3px;
  transform: translateY(-50%); background: var(--grad-sunrise); border-radius: 99px;
}
.ruler-dots { position: absolute; inset: 0; display: flex; justify-content: space-between; align-items: center; }
.ruler-dots .dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.38); }
.ruler-dots .dot.done { background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,0.25); }
.ruler-sub { display: flex; justify-content: space-between; font-size: 0.6rem; font-weight: 600; opacity: 0.88; margin-top: 2px; }
.ruler-sub strong { font-weight: 800; }
.glass-chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.68rem; font-weight: 800; padding: 6px 10px;
  background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.32);
  border-radius: var(--r-pill); white-space: nowrap;
}

.mock-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 13px 14px; box-shadow: var(--shadow-sm);
}
.mock-card-title { font-size: 0.68rem; font-weight: 800; color: var(--brand-deep); text-transform: uppercase; letter-spacing: 0.05em; }
.boost-quote { font-size: 0.86rem; font-weight: 700; margin-top: 4px; }
.post-head { display: flex; align-items: center; gap: 9px; margin-bottom: 7px; }
.post-head strong { display: block; font-size: 0.8rem; line-height: 1.2; }
.post-head span:not(.avatar) { font-size: 0.68rem; color: var(--brand); font-weight: 700; }
.avatar {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: var(--brand-soft); color: var(--brand-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.8rem;
}
.post-card p { font-size: 0.8rem; color: var(--text-2); }
.post-actions { font-size: 0.72rem; margin-top: 8px; color: var(--text-2); font-weight: 700; }

/* Floating chips */
.float-chip {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 9px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 10px 13px;
  box-shadow: 0 12px 30px -12px rgba(20,30,40,0.28), 0 2px 8px rgba(20,30,40,0.06);
  animation: floaty 7s ease-in-out infinite;
}
.float-chip strong { display: block; font-size: 0.82rem; line-height: 1.25; }
.float-chip span:not(.coin):not(.chip-icon) { font-size: 0.74rem; color: var(--text-2); font-weight: 600; }
.chip-icon { font-size: 1.3rem; }
.coin {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  background: var(--grad-sunrise);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; box-shadow: 0 6px 14px rgba(246,178,75,0.4);
}
.chip-milestone { top: 5%; right: -3%; animation-delay: .2s; }
.chip-savings   { bottom: 27%; left: -7%; animation-delay: 1.6s; }
.chip-notif     { bottom: 5%; right: -4%; animation-delay: 3s; max-width: 205px; }
@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -6px; }
}

/* ── New app design: Plus badge · longest-streak · slider knob · carousel dots ·
      hard-moment card · community feed · Kin+ tab ── */
.mock-brand { display: flex; align-items: center; gap: 7px; }
.plus-badge {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 0.6rem; font-weight: 800; color: #fff;
  background: var(--amber, #F6B24B); padding: 3px 8px; border-radius: 99px;
}
.streak-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 10px; }
.longest { display: flex; align-items: center; gap: 7px; color: #fff; }
.lg-flame { font-size: 0.95rem; }
.lg-text { display: flex; flex-direction: column; line-height: 1.1; }
.lg-text small { font-size: 0.58rem; font-weight: 700; opacity: 0.85; }
.lg-text strong { font-size: 0.9rem; font-weight: 900; }
.ruler-fill { width: 23.5%; }
.ruler-marker {
  position: absolute; top: 50%; left: 23.5%; z-index: 2;
  width: 15px; height: 15px; border-radius: 50%; background: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 6px rgba(0,0,0,0.28), 0 0 10px rgba(246,178,75,0.9), 0 0 0 4px rgba(255,255,255,0.22);
}
/* The progress fill + marker sweep in each time the streak slide becomes active. */
.hero-slide.is-active .ruler-fill { animation: rulerFill 1.1s cubic-bezier(.34,1.08,.4,1) .15s both; }
.hero-slide.is-active .ruler-marker { animation: rulerMark 1.1s cubic-bezier(.34,1.08,.4,1) .15s both; }
@keyframes rulerFill { from { width: 0; } to { width: 23.5%; } }
@keyframes rulerMark { from { left: 0; } to { left: 23.5%; } }
@media (prefers-reduced-motion: reduce) {
  .ruler-fill, .ruler-marker,
  .hero-slide.is-active .ruler-fill, .hero-slide.is-active .ruler-marker,
  .hero-slide.is-active .sv-col, .hero-slide.is-active .cv-arc { animation: none; }
  .hero-track { transition: none; }
}

/* ─── Hero carousel - auto-advancing app cards ─────────────────── */
.hero-carousel {
  /* Bounded so the card is never too short (clips rigid content like the
     calendar grid / craving ring) on small phones, nor too tall on big ones. */
  flex: none; height: clamp(244px, 47%, 262px); overflow: hidden; border-radius: var(--r-lg);
  box-shadow: var(--shadow-brand);
}
.hero-track { height: 100%; display: flex; transition: transform 0.5s cubic-bezier(.4,0,.2,1); }
.hero-slide { flex: 0 0 100%; min-width: 0; display: flex; }
.hero-card {
  flex: 1; min-height: 0; background: var(--grad-calm); color: #fff;
  padding: 13px 15px 12px; display: flex; flex-direction: column;
}
.hero-lbl { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.9); }

/* Savings slide */
.sv-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.sv-hero { display: flex; align-items: baseline; gap: 7px; margin-top: 6px; }
.sv-hero strong { font-size: 2.7rem; font-weight: 900; line-height: 1; }
.sv-hero small { font-size: 1rem; font-weight: 700; opacity: 0.9; }
.sv-bars { display: flex; gap: 7px; align-items: flex-end; flex: 1; margin-top: 12px; min-height: 0; }
.sv-bar { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; height: 100%; }
.sv-amt { font-size: 0.6rem; font-weight: 800; }
.sv-amt.dim { opacity: 0.6; }
.sv-track { flex: 1; width: 100%; display: flex; align-items: flex-end; justify-content: center; min-height: 0; }
.sv-col { width: 17px; height: var(--h); border-radius: 99px; border: 2px solid var(--amber); background: transparent; }
.sv-col.real { background: var(--grad-sunrise); border: none; }
.sv-mo { font-size: 0.58rem; font-weight: 700; opacity: 0.85; }
.sv-mo.dim { opacity: 0.55; }
.hero-slide.is-active .sv-col { animation: svGrow 0.7s cubic-bezier(.34,1.1,.4,1) both; }
@keyframes svGrow { from { height: 0; } to { height: var(--h); } }

/* Calendar slide */
.cal-top { display: flex; align-items: center; justify-content: space-between; }
.cal-title { font-size: 0.95rem; font-weight: 800; }
.cal-week { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; margin-top: 6px; }
.cal-week span { text-align: center; font-size: 0.52rem; font-weight: 700; opacity: 0.55; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-top: 2px; }
.cal-day {
  height: 18px; display: flex; align-items: center; justify-content: center;
  font-size: 0.53rem; font-weight: 700; opacity: 0.9; border-radius: 5px;
  background: rgba(255,255,255,0.12);
}
.cal-day.blank { background: transparent; }
.cal-day.sober { background: var(--grad-sunrise); color: #fff; opacity: 1; }
.cal-day.today { box-shadow: inset 0 0 0 2px #fff; }
.cal-streak { display: flex; align-items: center; gap: 9px; margin-top: auto; padding-top: 8px; }
.cal-flame {
  font-size: 0.85rem; width: 26px; height: 26px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.16); border-radius: 50%;
}
.cal-streak-text { display: flex; flex-direction: column; line-height: 1.12; }
.cal-streak-text strong { font-size: 0.82rem; font-weight: 900; }
.cal-streak-text small { font-size: 0.58rem; font-weight: 600; opacity: 0.78; }

/* Cravings slide */
.cv-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.cv-list {
  width: 26px; height: 26px; flex: none; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.28); border-radius: 50%;
}
.cv-body { display: flex; align-items: center; gap: 16px; flex: 1; min-height: 0; margin-top: 4px; }
.cv-ring { position: relative; width: 102px; height: 102px; flex: none; }
.cv-svg { width: 100%; height: 100%; }
.cv-track { fill: none; stroke: rgba(255,255,255,0.18); stroke-width: 11; }
.cv-arc {
  fill: none; stroke: var(--amber); stroke-width: 11; stroke-linecap: round;
  stroke-dasharray: 93 100;
  transform: rotate(-90deg); transform-origin: 60px 60px;
  filter: drop-shadow(0 0 4px rgba(246,178,75,0.75));
}
.hero-slide.is-active .cv-arc { animation: cvFill 0.95s ease-out both; }
@keyframes cvFill { from { stroke-dasharray: 0 100; } to { stroke-dasharray: 93 100; } }
.cv-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.cv-center strong { font-size: 1.4rem; font-weight: 900; line-height: 1; }
.cv-center small { font-size: 0.56rem; font-weight: 600; opacity: 0.85; margin-top: 2px; }
.cv-stats { display: flex; flex-direction: column; gap: 14px; }
.cv-stat { display: grid; grid-template-columns: auto auto; grid-template-rows: auto auto; column-gap: 8px; align-items: center; }
.cv-ic { grid-row: 1 / 3; }
.cv-val { font-size: 1.4rem; font-weight: 900; line-height: 1; }
.cv-lbl { grid-column: 2; font-size: 0.6rem; font-weight: 600; opacity: 0.85; }
.cv-log { align-self: flex-start; margin-top: auto; }
.carousel-dots { display: flex; justify-content: center; gap: 5px; margin: -2px 0 0; }
.cd { width: 6px; height: 6px; border-radius: 99px; background: var(--border); }
.cd.active { width: 15px; background: var(--brand); }

.hardmoment-card { display: flex; align-items: center; gap: 11px; }
.hm-icon {
  flex: none; width: 33px; height: 33px; border-radius: 50%;
  background: var(--brand-soft); display: flex; align-items: center; justify-content: center;
}
.hm-text { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.hm-text strong { font-size: 0.82rem; font-weight: 800; color: var(--text); }
.hm-text span { font-size: 0.68rem; color: var(--text-2); font-weight: 500; line-height: 1.3; }
.hm-chev { flex: none; }

.feed-label { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3, #9AA0A8); margin: 2px 2px -4px; }

.ig-head { display: flex; align-items: center; gap: 9px; }
.ig-avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; flex: none; }
.ig-meta { flex: 1; display: flex; flex-direction: column; line-height: 1.15; }
.ig-name { font-size: 0.8rem; font-weight: 800; color: var(--text); display: flex; align-items: center; gap: 6px; }
.ex-badge {
  font-size: 0.5rem; font-weight: 900; letter-spacing: 0.04em; color: #fff;
  background: var(--amber, #F6B24B); padding: 2px 5px; border-radius: 99px;
}
.ig-day { font-size: 0.66rem; font-weight: 700; color: var(--text-2); }
.ig-more { color: var(--text-3, #9AA0A8); font-size: 0.8rem; letter-spacing: 1px; }
.ig-actions { display: flex; align-items: center; gap: 13px; margin: 10px 0 6px; }
.ig-actions svg { width: 19px; height: 19px; display: block; }
.ig-space { flex: 1; }
.ig-likes { font-size: 0.74rem; font-weight: 800; color: var(--text); }
.ig-text { font-size: 0.76rem; color: var(--text); line-height: 1.35; margin-top: 2px; }
.ig-time { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-3, #9AA0A8); margin-top: 6px; }

.tab-k img { width: 19px; height: 19px; display: block; object-fit: contain; }

/* ─── Sections ─── */
.section { padding: 84px 0; }
.section-tight { padding: 0 0 84px; }
.section-head { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; margin-bottom: 44px; }

/* ─── Bento grid (personal toolkit - 2x2, no holes) ─── */
.bento { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-wide { grid-column: span 2; }
.card p { color: var(--text-2); font-size: 0.97rem; }
.card-vignette {
  border-radius: var(--r-md); min-height: 150px; margin-bottom: 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 18px; overflow: hidden; position: relative;
}

/* vignettes */
.vignette-streak { background: var(--grad-calm); flex-direction: row; flex-wrap: wrap; gap: 20px 26px; }
.mini-clock { text-align: center; color: #fff; }
.mini-days { font-size: 3rem; font-weight: 900; line-height: 1; }
.mini-days-label { font-weight: 700; opacity: 0.9; font-size: 0.85rem; display: block; }
.mini-medals { display: flex; gap: 8px; }
.mini-medals span {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: 1.5px solid rgba(255,255,255,0.45);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}

.vignette-breathe { background: var(--brand-soft); }
.breath-ring {
  width: 108px; height: 108px; border-radius: 50%;
  border: 3px solid var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; color: var(--brand-deep);
  animation: breathe 6s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(0.88); box-shadow: 0 0 0 0 rgba(24,154,139,0.25); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 18px rgba(24,154,139,0); }
}

.vignette-kin { background: linear-gradient(135deg, #F3F1FE, #E9E5FD); align-items: stretch; justify-content: center; }
.kin-bubble {
  font-size: 0.82rem; font-weight: 600; padding: 9px 13px;
  border-radius: 16px; max-width: 85%;
}
.kin-them { background: #fff; color: var(--text); align-self: flex-start; border-bottom-left-radius: 5px; }
.kin-kin { background: var(--lilac); color: #fff; align-self: flex-end; border-bottom-right-radius: 5px; }

.vignette-community { background: var(--input); align-items: stretch; }
.mini-post {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 10px 13px;
}
.mini-post-lines { flex: 1; min-width: 0; }
.mini-post-lines strong { display: block; font-size: 0.8rem; }
.mini-post-lines span { font-size: 0.76rem; color: var(--text-2); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.av-1 { background: #FDEBE2; color: #C05621; }
.av-2 { background: #EDE9FD; color: #5A4BC4; }
.cheer { font-size: 1rem; }

.vignette-events { background: #FFF4EC; }
.mini-event {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 12px 16px; width: 100%;
}
.event-emoji { font-size: 1.5rem; }
.mini-event strong { display: block; font-size: 0.88rem; }
.mini-event span { font-size: 0.76rem; color: var(--text-2); font-weight: 600; }
.sober-tag {
  font-size: 0.74rem; font-weight: 800; color: var(--brand-deep);
  background: var(--brand-soft); padding: 6px 12px; border-radius: var(--r-pill);
}

.vignette-savings { background: var(--brand-soft); }
.savings-bars { display: flex; align-items: flex-end; gap: 9px; height: 76px; }
.savings-bars i {
  width: 22px; height: var(--h); border-radius: 7px 7px 3px 3px;
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
}
.savings-amount { font-size: 0.82rem; font-weight: 800; color: var(--brand-deep); }

/* ─── Showcase sections (big features: community · groups · events) ─── */
.showcase {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px); align-items: center;
}
.showcase-copy { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.showcase-copy > p { color: var(--text-2); font-size: 1.05rem; max-width: 32rem; }
.showcase.reverse .showcase-visual { order: 2; }   /* alternate sides on desktop */

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-top: 4px; }
.feature-list li { display: flex; gap: 11px; align-items: center; font-weight: 600; color: var(--text); font-size: 0.98rem; }
.check {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand-soft); color: var(--brand-deep);
  font-size: 0.72rem; font-weight: 900;
  display: inline-flex; align-items: center; justify-content: center;
}

.mock-panel {
  border-radius: var(--r-lg); padding: clamp(18px, 2.5vw, 28px);
  display: flex; flex-direction: column; gap: 12px;
}
.feed-panel   { background: var(--input); }
.groups-panel { background: var(--brand-soft); }
.events-panel { background: #FFF4EC; }

/* group card */
.group-card {
  display: flex; align-items: center; gap: 13px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 13px 15px; box-shadow: var(--shadow-sm);
}
.group-emoji {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--input); display: flex; align-items: center; justify-content: center; font-size: 1.35rem;
}
.group-meta { flex: 1; min-width: 0; }
.group-meta strong { display: block; font-size: 0.95rem; }
.group-meta span { font-size: 0.8rem; color: var(--text-2); }
.group-badge { flex: none; font-size: 0.66rem; font-weight: 800; padding: 4px 10px; border-radius: var(--r-pill); }
.badge-public  { background: var(--brand-soft); color: var(--brand-deep); }
.badge-private { background: var(--input); color: var(--text-2); }

/* event card (showcase) */
.event-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 14px 16px;
  display: flex; flex-direction: column; gap: 5px; box-shadow: var(--shadow-sm);
}
.event-top { display: flex; align-items: center; justify-content: space-between; }
.event-card strong { font-size: 0.98rem; }
.event-when { font-size: 0.82rem; color: var(--text-2); font-weight: 600; }
.event-badge { font-size: 0.66rem; font-weight: 800; padding: 4px 10px; border-radius: var(--r-pill); background: var(--brand-soft); color: var(--brand-deep); }
.event-badge.badge-online { background: #EDE9FD; color: #5A4BC4; }
.event-card .sober-tag { align-self: flex-start; margin-top: 3px; }

/* ─── Privacy card ─── */
.privacy-card {
  background: linear-gradient(140deg, var(--brand-deep), #14555589 45%, var(--brand-deep)), var(--brand-deep);
  background: linear-gradient(140deg, #0E6E68, #0B5B58 55%, #10746B);
  border-radius: 28px; padding: clamp(32px, 5vw, 64px);
  color: #fff; display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  box-shadow: var(--shadow-brand);
}
.privacy-copy { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.privacy-copy p { opacity: 0.86; max-width: 26rem; }
.privacy-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.privacy-list li {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md); padding: 15px 18px;
}
.privacy-list li > span { font-size: 1.25rem; line-height: 1.3; }
.privacy-list strong { display: block; margin-bottom: 2px; }
.privacy-list div { font-size: 0.9rem; opacity: 0.92; }

/* ─── CTA card ─── */
.cta-card {
  background: var(--grad-calm);
  border-radius: 28px; padding: clamp(40px, 6vw, 72px);
  text-align: center; color: #fff;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  box-shadow: var(--shadow-brand);
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: ""; position: absolute; top: -40%; right: -10%;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.22), transparent 65%);
}
.cta-card > * { position: relative; }
.cta-card p { max-width: 34rem; opacity: 0.95; font-size: 1.08rem; }
.waitlist-form-center { justify-content: center; }
.waitlist-form-center input[type="email"] { border-color: transparent; }
.cta-note { font-size: 0.85rem; opacity: 0.85; }
.cta-note.is-success { opacity: 1; font-weight: 800; }
.cta-note.is-error { opacity: 1; font-weight: 800; }

/* ─── FAQ ─── */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 0 22px;
  transition: box-shadow 0.2s ease;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 800; font-size: 1.02rem; padding: 19px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-x { position: relative; width: 18px; height: 18px; flex: none; }
.faq-x::before, .faq-x::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--brand); border-radius: 2px; transition: transform 0.25s ease;
}
.faq-x::before { width: 14px; height: 2.5px; }
.faq-x::after { width: 2.5px; height: 14px; }
details[open] .faq-x::after { transform: rotate(90deg); }
.faq details p { color: var(--text-2); padding: 0 0 20px; font-size: 0.97rem; max-width: 60ch; }

/* ─── Crisis strip ─── */
.crisis-strip {
  display: flex; align-items: center; gap: 14px;
  background: #FFF7E8; border: 1px solid #F3E3C2;
  border-radius: var(--r-md); padding: 18px 22px;
}
.crisis-icon { font-size: 1.4rem; }
.crisis-strip p { font-size: 0.97rem; color: #6B5A33; }
.crisis-strip a { color: #A16A07; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

/* ─── Footer ─── */
.footer {
  background: var(--ink); color: #E8ECEA;
  margin: 0 16px 16px; border-radius: 28px;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 5vw, 64px) 28px;
}
.footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 2fr; gap: 48px;
}
.footer-brand img { height: 42px; width: auto; margin-bottom: 16px; }
.logo-invert { filter: brightness(0) invert(1); }
.footer-brand p { color: #9AA6AC; font-weight: 600; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-cols h4 {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: #9AA6AC; margin-bottom: 14px;
}
.footer-cols a { display: block; padding: 5px 0; font-weight: 600; font-size: 0.94rem; color: #D5DBD9; transition: color 0.15s; }
.footer-cols a:hover { color: #3FD0BE; }
.footer-base {
  max-width: 1080px; margin: 40px auto 0; padding-top: 22px;
  border-top: 1px solid #242D32;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.85rem; color: #6B7680;
}

/* ─── Reveal on scroll ─── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-chip, .breath-ring { animation: none; }
  html { scroll-behavior: auto; }
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero { padding-top: 48px; }
  .hero-visual { padding: 40px 0 12px; }
  /* keep the floating chips inside the viewport once the hero stacks */
  .chip-milestone { right: 2%; }
  .chip-savings { left: 2%; }
  .chip-notif { right: 2%; }
  /* 2-col tablet: all cards single-width - 6 cards fill 3 rows exactly, no holes */
  .bento { grid-template-columns: 1fr 1fr; }
  .card-wide { grid-column: span 1; }
  .privacy-card { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .nav-links { display: none; }
}
@media (max-width: 820px) {
  .showcase { grid-template-columns: 1fr; gap: 26px; }
  .showcase.reverse .showcase-visual { order: 0; }   /* visual always on top when stacked */
}
@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr; }
  .card-wide { grid-column: span 1; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form .btn { width: 100%; }
  .chip-milestone { right: -1%; top: 2%; }
  .chip-savings { left: -2%; bottom: 30%; }
  .chip-notif { right: -2%; max-width: 215px; }
  .footer { margin: 0 10px 10px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-base { flex-direction: column; }
}

/* ─── Founding-member announcement banner ─────────────────────────
   Sits above the sticky nav, scrolls away with the page. Dismissible;
   the choice is remembered in localStorage (see main.js + <head>). */
.founder-banner {
  position: relative;
  display: flex; align-items: stretch;
  background: var(--grad-calm);
  color: #fff;
  max-height: 90px; overflow: hidden;
  transition: max-height 0.42s ease, opacity 0.3s ease;
}
.founder-banner::before {                 /* faint top sheen for depth */
  content: ""; position: absolute; inset: 0 0 auto 0; height: 55%;
  background: linear-gradient(rgba(255,255,255,0.16), transparent);
  pointer-events: none;
}
.founder-banner.is-closing { max-height: 0; opacity: 0; }
.banner-dismissed .founder-banner { display: none !important; }

.founder-banner-link {
  flex: 1; min-width: 0;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 5px 12px;
  padding: 11px 54px;                      /* symmetric pad clears the close button, keeps text centred */
  font-size: 0.92rem; font-weight: 700; text-align: center; line-height: 1.35;
  transition: filter 0.15s ease;
}
.founder-banner-link:hover { filter: brightness(1.05); }
.founder-banner-spark { font-size: 1.02rem; margin-right: 6px; }
.founder-banner-text strong { font-weight: 900; }
.founder-banner-cta {
  font-weight: 900; white-space: nowrap;
  border-bottom: 2px solid rgba(255,255,255,0.55); padding-bottom: 1px;
}
.founder-banner-close {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--r-pill);
  background: transparent; border: none; cursor: pointer;
  color: rgba(255,255,255,0.82);
  transition: background 0.15s ease, color 0.15s ease;
}
.founder-banner-close:hover { background: rgba(255,255,255,0.18); color: #fff; }
.founder-banner-close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

@media (max-width: 600px) {
  .founder-banner-link { padding: 10px 46px; font-size: 0.8rem; gap: 4px 8px; }
  .founder-banner-cta { display: none; }   /* trim to the core line; whole bar still taps through */
}
@media (prefers-reduced-motion: reduce) {
  .founder-banner { transition: none; }
}

/* ─── App Store badge ─────────────────────────────────────────── */
.appstore-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #000; color: #fff; border-radius: 12px;
  padding: 9px 17px 9px 14px;
  transition: transform 0.15s ease, filter 0.2s ease, box-shadow 0.2s ease;
}
.appstore-badge:hover { filter: brightness(1.18); box-shadow: 0 10px 24px rgba(0,0,0,0.18); }
.appstore-badge:active { transform: scale(0.98); }
.appstore-badge-logo { width: 30px; height: 30px; flex: none; }
.appstore-badge-text { display: flex; flex-direction: column; line-height: 1; text-align: left; }
/* Drop the small "Download on the" line so the Apple mark + "App Store" reads
   bigger and clearer. The anchor's aria-label keeps the full text for a11y. */
.appstore-badge-text small { display: none; }
.appstore-badge-text strong { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; }
.appstore-badge-sm { padding: 8px 15px 8px 12px; border-radius: 10px; gap: 8px; }
.appstore-badge-sm .appstore-badge-logo { width: 23px; height: 23px; }
.appstore-badge-sm .appstore-badge-text strong { font-size: 1.08rem; }

/* ─── Hero CTA ─── */
.hero-cta { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.hero-cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-cta-secondary {
  font-weight: 800; font-size: 0.98rem; color: var(--brand-deep);
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap 0.18s ease, color 0.15s ease;
}
.hero-cta-secondary:hover { color: var(--brand); gap: 9px; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-trust li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 700; color: var(--text-2); }
.hero-trust .check { width: 20px; height: 20px; font-size: 0.64rem; }

/* ─── Outline button ─── */
.btn-outline {
  background: transparent; color: var(--brand-deep);
  box-shadow: inset 0 0 0 1.5px var(--border);
}
.btn-outline:hover { box-shadow: inset 0 0 0 1.5px var(--brand); background: var(--brand-soft); filter: none; }

/* ─── Plans / pricing ─────────────────────────────────────────── */
.section-head-center { align-items: center; text-align: center; }
.section-sub { color: var(--text-2); font-size: 1.06rem; max-width: 42rem; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 30px 26px;
  display: flex; flex-direction: column; gap: 7px; box-shadow: var(--shadow-sm);
}
.plan-featured {
  border-color: transparent; background: var(--grad-calm); color: #fff;
  box-shadow: var(--shadow-brand); transform: translateY(-8px);
}
.plan h3 { font-size: 1.18rem; }
.plan-price { font-size: 1.85rem; font-weight: 900; line-height: 1.08; margin-top: 2px; }
.plan-price span { display: block; font-size: 0.8rem; font-weight: 700; opacity: 0.7; margin-top: 3px; }
.plan-featured .plan-price span { opacity: 0.9; }
.plan-desc { font-size: 0.92rem; color: var(--text-2); font-weight: 600; }
.plan-featured .plan-desc { color: rgba(255,255,255,0.9); }
.plan-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 12px 0 22px; }
.plan-list li { position: relative; padding-left: 25px; font-size: 0.92rem; font-weight: 600; color: var(--text); }
.plan-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand); font-weight: 900; }
.plan-featured .plan-list li { color: #fff; }
.plan-featured .plan-list li::before { color: #fff; }
.plan .btn { margin-top: auto; width: 100%; }
.plan-featured .btn-primary { background: #fff; color: var(--brand-deep); box-shadow: 0 10px 26px rgba(0,0,0,0.2); }
.plan-flag {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--grad-sunrise); color: #5A2E00;
  font-size: 0.82rem; font-weight: 900; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 7px 18px; border-radius: var(--r-pill); white-space: nowrap;
  box-shadow: 0 6px 16px rgba(246,178,75,0.42);
}
.plan-flag-alt { background: var(--input); color: var(--text-2); box-shadow: none; }
.plans-foot { text-align: center; margin: 30px auto 0; color: var(--text-2); font-size: 0.92rem; max-width: 46rem; }

@media (max-width: 860px) {
  .plans { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .plan-featured { transform: none; }
}

/* ─── Free vs Plus comparison table ───────────────────────────── */
.compare { margin-top: 60px; }
.compare-head { text-align: center; max-width: 44rem; margin: 0 auto 26px; }
.compare-head h3 { font-size: 1.5rem; margin-bottom: 8px; }
.compare-head p { color: var(--text-2); font-size: 1rem; }
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r-lg); }
.compare-table {
  width: 100%; border-collapse: collapse;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; }
.compare-table thead th { font-size: 0.98rem; font-weight: 800; border-bottom: 1px solid var(--border); vertical-align: bottom; }
.compare-table .ct-col { width: 110px; text-align: center; }
.compare-table thead .ct-plus { color: var(--brand-deep); }
.compare-table .ct-plus { background: var(--brand-soft); }
.ct-plus-tag {
  display: block; margin-top: 5px;
  font-size: 0.72rem; font-weight: 900; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--brand-deep); background: #fff;
  padding: 4px 9px; border-radius: var(--r-pill);
}
.compare-table tbody tr { border-top: 1px solid var(--divider); }
.compare-table tbody td:first-child { font-weight: 600; font-size: 0.95rem; color: var(--text); }
.ct-group td {
  background: var(--input); font-size: 0.7rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-2);
  padding: 9px 18px;
}
.compare-table .yes { color: var(--brand); font-weight: 900; font-size: 1.1rem; }
.compare-table .no { color: var(--text-3); font-weight: 700; }

@media (max-width: 560px) {
  .compare-table th, .compare-table td { padding: 12px 10px; }
  .compare-table tbody td:first-child { font-size: 0.84rem; }
  .compare-table .ct-col { width: 62px; }
  .compare-head h3 { font-size: 1.3rem; }
}
