/* Vynn — Sajid Minimalist Redesign (Light Mode) */

:root {
  /* Colors - Sajid "Peak/Valley" System */
  --bg: #FAFAF9;
  --surface: #FFFFFF;
  --surface-2: #F4F4F5;
  
  --text-main: #18181B;
  --text-secondary: #52525B;
  --text-muted: #A1A1AA;
  
  --primary: #18181B;
  --primary-fg: #FFFFFF;
  
  --accent: #00bfa6;
  --border: #E4E4E7;
  
  /* Spacing Tokens (8pt grid) */
  --space-xs: 4px;
  --space-s: 8px;
  --space-m: 16px;
  --space-l: 24px;
  --space-xl: 48px;
  --space-xxl: 96px;
  
  --max-width: 1120px;
  --header-height: 72px;
  
  /* Radii - Continuous Corners */
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 24px;
  --radius-pill: 9999px;

  /* Sajid 3-Layer Shadow System */
  --shadow-card: 
    0 0 0 1px rgba(0,0,0,0.03),
    0 2px 8px rgba(0,0,0,0.04),
    0 12px 24px rgba(0,0,0,0.03);
    
  --shadow-hover: 
    0 0 0 1px rgba(0,0,0,0.03),
    0 8px 16px rgba(0,0,0,0.06),
    0 24px 48px rgba(0,0,0,0.04);

  --focus: 0 0 0 3px rgba(24, 24, 27, 0.15);
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; padding: 0; }

body {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: var(--space-l);
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  margin-bottom: var(--space-m);
}

h3 {
  font-size: 20px;
  margin-bottom: var(--space-s);
}

p {
  margin: 0 0 var(--space-m);
  color: var(--text-secondary);
}

p.lead {
  font-size: 20px;
  line-height: 1.5;
  max-width: 600px;
  margin-bottom: var(--space-xl);
}

a {
  color: var(--text-main);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover { opacity: 0.7; }

a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 10px;
}

.muted { color: var(--text-muted); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--text-main);
  color: var(--surface);
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 999;
}
.skip-link:focus { left: 12px; }

/* Layout */
.container {
  width: min(var(--max-width), 100% - 40px);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 28px 0;
}

.section.alt {
  background-color: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  height: var(--header-height);
  background: rgba(250, 250, 249, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.03);
  z-index: 100;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-s);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
}

.brand-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: block;
}

.brand-name { font-size: 18px; }

.nav {
  display: none;
  gap: 12px;
  align-items: center;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav a:hover { color: var(--text-main); }

.nav .nav-cta {
  color: var(--primary-fg);
  background: var(--primary);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  gap: 8px;
  font-family: inherit;
  text-decoration: none;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-fg);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--text-main);
}

.btn-secondary:hover {
  background-color: var(--surface);
  border-color: #D4D4D8;
}

.btn-small {
  padding: 8px 14px;
  font-size: 13px;
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn-note {
  font-weight: 600;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--surface-2);
  padding: 3px 8px;
  border-radius: 999px;
}

/* Hero Section */
.hero {
  padding: 64px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-microcopy {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--text-secondary);
  margin: 0 0 10px;
  font-size: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 10px;
  border-radius: 20px;
  background: var(--accent);
  display: inline-block;
}

.accent {
  color: var(--accent);
}

.subhead {
  margin: 0 0 18px;
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 58ch;
}

.payoff-line {
  margin: 0 0 8px;
  color: var(--text-main);
  font-size: 18px;
  font-weight: 600;
}

.proof-line {
  margin: 0 0 10px;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 600;
}

.trust-line {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 14px;
}

.hero-next-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.35;
}

.hero-next-steps li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-next-steps li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: var(--space-l) 0;
}

.pill {
  font-size: 13px;
  padding: 6px 12px;
  background: var(--surface-2);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-weight: 500;
  border: 1px solid var(--border);
}

/* Phone Mockup */
.hero-visual {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.phone {
  width: min(360px, 92vw);
  border-radius: 44px;
  border: 3px solid #1e232b;
  background: #0f1115;
  padding: 8px;
  box-shadow: 0 26px 50px rgba(15, 17, 21, 0.25);
  overflow: hidden;
}

.phone-calm {
  width: min(360px, 100%);
  border-radius: 30px;
  border: 1px solid var(--border);
  background: #f5f7fb;
  padding: 10px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.app-shell-calm {
  border-radius: 22px;
  border: 1px solid #dbe2ed;
  background: #eef3fb;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.mock-screen {
  margin: 0;
  padding: 12px;
  border: 1px solid #d9e0ea;
  border-radius: 14px;
  background: #ffffff;
}

.mock-screen h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.mock-screen p {
  margin: 0 0 4px;
  font-size: 13px;
  color: #445066;
}

.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.mock-screen strong {
  color: #1f2937;
}

.mock-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d6dde9;
  border-radius: 999px;
  background: #f2f6fc;
  color: #334155;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}

.mock-chip-success {
  border-color: #b8e6de;
  background: #e8f7f3;
  color: #0f766e;
}

.mock-label {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #64748b;
}

.progress-track {
  margin-top: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d6deea;
  overflow: hidden;
}

.progress-fill {
  display: block;
  height: 100%;
  width: 65%;
  background: #0f9a8f;
}

.mock-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.mock-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  font-size: 13px;
}

.mock-list li span {
  color: #253246;
}

.mock-list li span b {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #253246;
}

.mock-list li span em {
  display: block;
  margin-top: 1px;
  font-style: normal;
  font-size: 11px;
  color: #64748b;
}

.mock-list li strong {
  font-size: 12px;
  color: #0f766e;
  background: #e6f5f3;
  border-radius: 999px;
  padding: 2px 8px;
}

.trend-row {
  margin-top: 8px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}

.trend-row span {
  font-size: 12px;
  color: #475569;
}

.trend-row i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #1f2937;
}

.mock-estimate {
  margin-bottom: 8px;
  font-size: 12px;
  color: #334155;
}

.app-shell {
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(175deg, #d7dbe3 0%, #c6ccd6 40%, #b9c0cb 100%);
  padding: 14px 14px 16px;
  overflow: hidden;
}

.app-status-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

.status-left {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0f172a;
  font-weight: 700;
  font-size: 13px;
}

.status-mute {
  width: 10px;
  height: 10px;
  position: relative;
  display: inline-block;
}

.status-mute::before,
.status-mute::after {
  content: "";
  position: absolute;
  background: #0f172a;
}

.status-mute::before {
  width: 10px;
  height: 2px;
  left: 0;
  top: 4px;
}

.status-mute::after {
  width: 2px;
  height: 10px;
  left: 4px;
  top: 0;
  transform: rotate(45deg);
}

.status-notch {
  width: 116px;
  height: 28px;
  border-radius: 18px;
  background: #0a0c10;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-right {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 6px;
}

.status-signal {
  width: 16px;
  height: 12px;
  position: relative;
  display: inline-block;
}

.status-signal::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3px;
  height: 3px;
  border-radius: 1px;
  background: #0f172a;
  box-shadow:
    4px -2px 0 #0f172a,
    8px -4px 0 #0f172a,
    12px -6px 0 #0f172a;
}

.status-wifi {
  width: 14px;
  height: 10px;
  border: 2px solid #0f172a;
  border-color: #0f172a transparent transparent transparent;
  border-radius: 50% 50% 0 0;
  transform: translateY(2px);
}

.status-battery {
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.18);
  color: #0f172a;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
}

.app-top-summary {
  margin: 16px 0 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.menu-lines {
  width: 20px;
  height: 16px;
  display: inline-block;
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
  height: 3px;
  border-radius: 3px;
  background: #14233a;
}

.menu-lines::before {
  width: 20px;
  top: 3px;
}

.menu-lines::after {
  width: 12px;
  top: 10px;
}

.summary-total {
  text-align: center;
}

.summary-total span,
.summary-score span {
  display: block;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: #51657b;
  font-weight: 700;
}

.summary-total strong {
  font-size: 46px;
  line-height: 1;
  color: #132238;
  letter-spacing: -0.04em;
}

.summary-score strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  width: 56px;
  height: 40px;
  border-radius: 12px;
  background: #0f9a8f;
  color: #d9fff9;
  font-size: 20px;
}

.nutrition-sheet {
  border-radius: 22px;
  background: #f7f8fa;
  border: 1px solid rgba(66, 74, 88, 0.12);
  box-shadow: 0 10px 22px rgba(23, 30, 42, 0.12);
  padding: 16px 14px 12px;
}

.nutrition-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.nutrition-head h3 {
  margin: 0;
  font-size: 20px;
  color: #1b2432;
}

.nutrition-head p {
  margin: 2px 0 0;
  color: #5e6e81;
}

.nutrition-score strong {
  color: #1d2a40;
}

.nutrition-score span {
  color: #78899d;
}

.close-chip {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #e2e7ef;
  color: #1b2432;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.macro-tip {
  margin: 8px 0 8px auto;
  width: fit-content;
  background: #17191f;
  color: #f4f5f7;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
}

.macro-bar {
  display: flex;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: #d2d9e4;
}

.macro-protein {
  width: 50%;
  background: #0fbfad;
}

.macro-fat {
  width: 42%;
  background: #e0c062;
}

.macro-carbs {
  width: 8%;
  background: #9aabc1;
}

.macro-legend {
  margin: 8px 0 12px;
  display: flex;
  justify-content: space-around;
  gap: 8px;
  color: #586a7d;
  font-size: 11px;
  font-weight: 600;
}

.macro-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  display: inline-block;
}

.dot.protein { background: #0fbfad; }
.dot.fat { background: #e0c062; }
.dot.carbs { background: #9aabc1; }

.nutrition-card {
  margin-top: 10px;
  border: 1px solid #dde2ea;
  border-radius: 16px;
  background: #f8f9fb;
  padding: 12px;
}

.nutrition-card h4 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #182334;
}

.nutrition-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.nutrition-card li {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 8px;
  align-items: center;
  font-size: 12px;
}

.nutrition-card li span:first-child {
  color: #1f2937;
}

.meter {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: #d7ddea;
  overflow: hidden;
}

.fill {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.fill.protein { background: #0fbfad; }
.fill.moderate { background: #e0c062; }
.fill.high { background: #d45463; }

.w-xxs { width: 3%; }
.w-xs { width: 5%; }
.w-sm { width: 12%; }
.w-md { width: 22%; }
.w-full { width: 100%; }

.nutrition-card strong {
  font-size: 10px;
  font-weight: 700;
  text-align: right;
}

.nutrition-card strong.moderate { color: #d3ae46; }
.nutrition-card strong.low { color: #58a77f; }
.nutrition-card strong.high { color: #cc4f62; }
.nutrition-card strong.excellent { color: #0fbfad; }
.nutrition-card strong.good { color: #d3ae46; }

.nutrition-note {
  margin: 12px 0 0;
  text-align: center;
  font-size: 11px;
  color: #7e8da2;
}

.nutrition-sheet .nutrition-card:last-of-type {
  margin-bottom: 0;
}

.visual-caption {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.proof-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.proof-item {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
}

.outcome-strip h2 {
  margin: 0 0 10px;
}

.outcome-strip .lead {
  margin: 0;
}

.steps-cta {
  margin-top: 18px;
}

/* Waitlist Form */
.waitlist-inline {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-m);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  margin-top: var(--space-l);
  max-width: 480px;
}

.h3 { margin: 0 0 8px; font-size: 18px; }

.lead { color: var(--text-secondary); font-size: 18px; margin-top: 8px; }

.form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}

input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text-main);
  font-size: 16px;
  transition: border 0.2s;
}

input[type="email"]:focus {
  outline: none;
  border-color: var(--text-main);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

input::placeholder { color: var(--text-muted); }

button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.fineprint {
  font-size: 13px;
  color: var(--text-muted);
  margin: 8px 0 0;
}

.form-status {
  min-height: 20px;
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.form-status[data-state="error"] {
  color: #b42318;
}

.form-status[data-state="success"] {
  color: #0f766e;
}

.form-status[data-state="info"] {
  color: var(--text-secondary);
}

.waitlist-fallback {
  margin-top: 8px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.fallback-title {
  margin: 0 0 10px;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 700;
}

.fallback-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fallback-copy-label {
  margin-top: 10px;
}

.fallback-preview {
  margin: 8px 0 0;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--surface);
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-secondary);
  white-space: pre-wrap;
  word-break: break-word;
}

.waitlist-fallback code {
  font-size: 12px;
  color: var(--text-main);
}

.transparency {
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.transparency h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.transparency-list {
  margin: 0;
  padding-left: 18px;
}

.transparency-list li {
  margin: 0 0 6px;
  color: var(--text-secondary);
  font-size: 14px;
}

.transparency-list li:last-child {
  margin: 0;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}

.card {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.03);
}

.card h3 { margin: 0 0 8px; }
.card p { margin: 0; color: var(--text-secondary); }

.card .btn {
  margin-top: 14px;
}

/* Steps */
.steps {
  margin: 18px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
}

.steps li {
  padding: 16px;
  border-radius: var(--radius-m);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.steps h3 { margin: 0 0 6px; }
.steps p { margin: 0; color: var(--text-secondary); }

.section h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.3px;
}
.section p { margin-bottom: 0; }

.preview-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.preview-copy .lead {
  margin-bottom: 18px;
}

.plus-line {
  margin-top: 14px;
  color: var(--text-secondary);
}

.feature-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.feature-pill {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
}

.grid-cta {
  margin-top: 18px;
}

.plans-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.plan-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

#plans h2 {
  font-size: clamp(22px, 2.4vw, 30px);
}

.plan-card h3 {
  margin: 0 0 8px;
}

.plan-card p {
  margin: 0;
  color: var(--text-secondary);
}

.plan-card .btn {
  margin-top: 12px;
}

.plan-card.popular {
  border-color: rgba(0, 191, 166, 0.5);
  box-shadow: inset 0 0 0 1px rgba(0, 191, 166, 0.2), var(--shadow-card);
}

.plan-kicker {
  margin: 0 0 8px;
  color: #0f9a8f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plans-link {
  margin: 16px 0 0;
}

.plan-platform {
  background: #f8f8f9;
  opacity: 0.9;
}

/* Apps */
.apps {
  display: grid;
  gap: 16px;
  align-items: start;
}

.apps-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 440px;
}

.apps-primary {
  width: fit-content;
}

.store-soon {
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 14px 16px;
  background: var(--surface-2);
}

.store-soon-title {
  margin: 0 0 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}

.store-soon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.store-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #D4D4D8;
  border-radius: 999px;
  padding: 7px 10px;
  background: #f3f3f5;
  color: #71717a;
  font-size: 13px;
  font-weight: 600;
}

.chip-note {
  font-size: 11px;
  font-weight: 700;
  color: #a1a1aa;
}

.final-cta .cta-panel h2 {
  margin: 0 0 8px;
}

.final-cta .cta-panel p {
  margin: 0 0 16px;
}

/* FAQ */
.faq {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

details {
  border-radius: var(--radius-m);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
}

summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  color: var(--text-main);
}
summary::-webkit-details-marker { display: none; }
details[open] summary { margin-bottom: 12px; }
details p {
  margin: 0;
  color: var(--text-secondary);
}

/* CTA Panel */
.cta-panel {
  padding: 20px;
  border-radius: var(--radius-m);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.cta-panel h3 { margin: 0 0 6px; }

/* Footer */
.site-footer {
  padding: 64px 0 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  gap: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
}
.footer-links a:hover { text-decoration: underline; }

.footer-meta { color: var(--text-muted); }
.footer-brand .brand-name { font-size: 16px; }

/* Legal pages */
.legal-content {
  padding: 40px 0 60px;
}
.legal-content h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 8px;
}
.legal-content .legal-date {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0 0 32px;
}
.legal-content h2 {
  font-size: 22px;
  margin: 32px 0 12px;
  letter-spacing: -0.2px;
}
.legal-content p {
  color: var(--text-secondary);
  margin: 0 0 16px;
  max-width: 72ch;
  line-height: 1.6;
}
.legal-content ul {
  color: var(--text-secondary);
  margin: 0 0 16px;
  padding-left: 20px;
  line-height: 1.7;
}
.legal-content a {
  color: var(--accent);
}

/* Responsive */
@media (min-width: 860px) {
  .nav { display: inline-flex; }
  .hero { padding: 72px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .proof-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .form { grid-template-columns: 1fr auto; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .preview-layout { grid-template-columns: 0.9fr 1.1fr; gap: 44px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: repeat(3, 1fr); }
  .apps { grid-template-columns: 1.1fr 0.9fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; align-items: start; }
}

@media (max-width: 600px) {
  .container {
    width: min(var(--max-width), 100% - 24px);
  }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 12px; }
  .section {
    padding: 52px 0;
  }
  .hero {
    padding: 48px 0 40px;
  }
  .phone-calm {
    width: 100%;
    max-width: 100%;
  }
  .trend-row {
    grid-template-columns: 78px 1fr;
  }
}
