/* ============================================================
   KnowYourPlant — Landing Page Styles
   Mobile-first, modern, conversion-focused
   ============================================================ */

/* Fonts are loaded via Google Fonts <link> in the HTML:
   - General Sans (display)         — brand headings, hero, buttons
   - Instrument Serif Italic (accent) — editorial italic emphasis
   - Inter (body)                    — paragraphs, UI, small text
   - JetBrains Mono (mono)           — numbers, eyebrow labels
*/

:root {
  /* brand — green evolved */
  --accent: #15944f;
  --accent-deep: #0f6d3a;
  --accent-bright: #2fb96a;
  --accent-glow: rgba(21, 148, 79, 0.14);
  --accent-glow-2: rgba(21, 148, 79, 0.28);

  /* surface */
  --bg: #f3f9f1;
  --bg-deep: #ebf4e8;
  --ink: #0f2a1c;
  --ink-2: rgba(15, 42, 28, 0.72);
  --ink-3: rgba(15, 42, 28, 0.52);
  --ink-4: rgba(15, 42, 28, 0.14);
  --ink-5: rgba(15, 42, 28, 0.08);
  --surface: rgba(255, 255, 255, 0.7);
  --surface-2: rgba(255, 255, 255, 0.92);
  --border: rgba(15, 42, 28, 0.1);

  /* type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-display: "General Sans", "Inter", -apple-system, system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* rhythm */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 999px;

  /* spacing scale (mobile default) */
  --s-section: 72px;
  --s-gap: 16px;

  /* shadows */
  --sh-sm: 0 2px 8px rgba(10, 35, 23, 0.04);
  --sh-md: 0 14px 32px rgba(10, 35, 23, 0.08), 0 2px 6px rgba(10, 35, 23, 0.04);
  --sh-lg: 0 28px 64px rgba(10, 35, 23, 0.16), 0 6px 14px rgba(10, 35, 23, 0.06);
  --sh-glow: 0 20px 50px rgba(21, 148, 79, 0.28);

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-density="compact"] {
  --s-section: 56px;
  --s-gap: 12px;
}

[data-theme="dark"] {
  --bg: #0b1a12;
  --bg-deep: #071009;
  --ink: #e8f3ea;
  --ink-2: rgba(232, 243, 234, 0.72);
  --ink-3: rgba(232, 243, 234, 0.5);
  --ink-4: rgba(232, 243, 234, 0.14);
  --ink-5: rgba(232, 243, 234, 0.08);
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(232, 243, 234, 0.1);
  --accent-glow: rgba(47, 185, 106, 0.18);
  --accent-glow-2: rgba(47, 185, 106, 0.32);
}

@media (min-width: 720px) {
  :root {
    --s-section: 120px;
    --s-gap: 24px;
  }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

img, svg { max-width: 100%; display: block; }
.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga";
  user-select: none;
  flex-shrink: 0;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 720px) {
  .wrap { padding: 0 32px; }
}

section { padding: var(--s-section) 0; position: relative; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: 0; line-height: 1.05; font-family: var(--font-display); }
.display {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 580;
  letter-spacing: 0;
  line-height: 0.98;
}
.h1 { font-family: var(--font-display); font-size: 34px; font-weight: 580; letter-spacing: 0; line-height: 1.02; }
.h2 { font-family: var(--font-display); font-size: 26px; font-weight: 600; letter-spacing: 0; line-height: 1.1; }
.h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: 0; line-height: 1.25; }
.lede { font-size: 17px; line-height: 1.5; color: var(--ink-2); }
@media (min-width: 720px) {
  .display { font-size: 68px; }
  .h1 { font-size: 46px; }
  .h2 { font-size: 32px; }
  .h3 { font-size: 22px; }
  .lede { font-size: 20px; }
}
@media (min-width: 1040px) {
  .display { font-size: 84px; }
  .h1 { font-size: 56px; }
  .h2 { font-size: 38px; }
}
.body { font-size: 16px; line-height: 1.6; color: var(--ink-2); }
.small { font-size: 13.5px; line-height: 1.5; color: var(--ink-2); }
.mono { font-family: var(--font-mono); font-feature-settings: "ss02"; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 550;
  font-size: 15.5px;
  letter-spacing: 0;
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
  user-select: none;
}
.btn.primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: var(--sh-md);
}
.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--sh-lg);
}
.btn.accent {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--sh-glow);
}
.btn.accent:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn.ghost {
  background: var(--surface);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--border);
}
.btn.ghost:hover { background: var(--surface-2); }
.btn.sm { padding: 9px 14px; font-size: 14px; }
.btn.lg { padding: 16px 26px; font-size: 16px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 12px;
  z-index: 50;
  margin: 16px auto 0;
  padding: 0 16px;
  max-width: 1200px;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 16px;
  border-radius: var(--radius-full);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 0 0 1px var(--border), var(--sh-md);
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600; letter-spacing: 0; font-size: 16px;
}
.nav-brand .mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: transparent; color: #fff;
  display: grid; place-items: center;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--border);
}
.nav-brand .mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-links {
  display: none;
  gap: 2px; margin-left: 14px; flex: 1;
}
.nav-links a {
  padding: 8px 12px;
  border-radius: var(--radius-full);
  color: var(--ink-2);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: auto; }
@media (min-width: 860px) {
  .nav-links { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 56px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 720px) {
  .hero { padding-top: 100px; padding-bottom: 100px; }
}
.hero-bg {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.hero-bg::before {
  content: "";
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 1100px; height: 900px;
  background: radial-gradient(ellipse at center, var(--accent-glow-2) 0%, transparent 60%);
  filter: blur(40px);
  opacity: 0.7;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 940px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 40px; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: var(--radius-full);
  background: var(--surface-2);
  box-shadow: 0 0 0 1px var(--border), var(--sh-sm);
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-badge .dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  color: #fff; font-size: 10px;
}
.hero h1 {
  margin-bottom: 20px;
}
.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 40%, var(--accent-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  letter-spacing: 0;
}
.hero .lede { max-width: 480px; margin: 0 0 28px; }
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 18px;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 14px 22px;
  color: var(--ink-2); font-size: 13.5px;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta svg { width: 14px; height: 14px; color: var(--accent); }
.hero-meta .material-symbols-rounded {
  width: 14px !important;
  height: 14px !important;
  font-size: 14px !important;
  color: var(--accent);
}

.hero-visual {
  position: relative;
  display: flex; justify-content: center;
  min-height: 580px;
}
@media (max-width: 939px) {
  .hero-visual { min-height: 600px; margin-top: 20px; }
}

/* ---------- Before / after comparison ---------- */
.comparison-section {
  padding-top: 20px;
  padding-bottom: var(--s-section);
}
.comparison-head {
  margin-bottom: 28px;
}
.comparison-visual {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface-2);
  box-shadow: 0 0 0 1px var(--border), var(--sh-md);
}
.comparison-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 719px) {
  .comparison-section { padding-top: 8px; }
  .comparison-head { margin-bottom: 20px; }
  .comparison-visual { border-radius: var(--radius-lg); }
}

/* ---------- Trust strip ---------- */
.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  background: var(--surface);
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
  text-align: center;
}
@media (min-width: 720px) {
  .trust-inner { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-num { font-size: 26px; font-weight: 600; letter-spacing: 0; }
@media (min-width: 720px) { .trust-num { font-size: 36px; } }
.trust-num em { font-style: normal; color: var(--accent); }
.trust-label { font-size: 12.5px; color: var(--ink-2); letter-spacing: 0; }

/* ---------- Features grid ---------- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head .eyebrow { justify-content: center; margin-bottom: 16px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { margin: 0 auto; max-width: 540px; }

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) {
  .features { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (min-width: 1000px) {
  .features { grid-template-columns: repeat(4, 1fr); }
  .features .feat-card { grid-column: span 2; }
}
.feat-card {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius-xl);
  background: var(--surface-2);
  box-shadow: 0 0 0 1px var(--border), var(--sh-sm);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--border), var(--sh-md);
}
.feat-icon {
  width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--accent-glow);
  color: var(--accent);
  margin-bottom: 18px;
}
.feat-icon svg { width: 22px; height: 22px; }
.feat-icon .material-symbols-rounded {
  width: 22px !important;
  height: 22px !important;
  font-size: 22px !important;
}
.feat-card h3 { margin-bottom: 8px; }
.feat-card p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.5; }
.feat-viz {
  margin-top: 22px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 200px;
  background: var(--bg-deep);
  position: relative;
}
.identify-viz {
  min-height: 0;
  aspect-ratio: 1586 / 992;
  background: var(--bg-deep);
}
.identify-viz img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.doctor-viz {
  min-height: 200px;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f4faf4 100%);
}
.doctor-viz-head {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
}
.doctor-viz-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--accent-glow);
  color: var(--accent);
}
.doctor-viz-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--accent);
}
.doctor-viz-title {
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink);
}
.doctor-viz-meter {
  height: 10px;
  margin: 20px 0 18px;
  border-radius: var(--radius-full);
  background: var(--ink-5);
  overflow: hidden;
}
.doctor-viz-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent) 0%, #b8ba54 100%);
}
.doctor-viz-actions {
  display: grid;
  gap: 8px;
}
.doctor-viz-actions div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 10px;
  background: var(--surface-2);
  box-shadow: 0 0 0 1px var(--border);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.doctor-viz-actions .material-symbols-rounded {
  flex: 0 0 auto;
  color: var(--accent);
}
.pet-safe-viz {
  min-height: 200px;
  padding: 18px;
  background: var(--bg-deep);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.pet-safe-tile {
  min-width: 0;
  display: grid;
  grid-template-columns: 22px 1fr;
  grid-template-areas:
    "status name"
    "status label";
  column-gap: 8px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: var(--surface-2);
  box-shadow: 0 0 0 1px var(--border);
}
.pet-safe-status {
  grid-area: status;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.pet-safe-tile[data-safe="true"] .pet-safe-status {
  background: #2fb96a22;
  color: #15944f;
}
.pet-safe-tile[data-safe="false"] .pet-safe-status {
  background: #b6333322;
  color: #b63333;
}
.pet-safe-name {
  grid-area: name;
  min-width: 0;
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.pet-safe-label {
  grid-area: label;
  margin-top: 2px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink-3);
}
@media (max-width: 420px) {
  .pet-safe-viz { grid-template-columns: 1fr; }
}

/* ---------- Reminders section ---------- */
.reminders {
  background: linear-gradient(180deg, transparent, var(--bg-deep) 40%, transparent);
}
.reminders-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 940px) {
  .reminders-layout { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.reminders-list { display: flex; flex-direction: column; gap: 14px; }
.reminder-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  box-shadow: 0 0 0 1px var(--border);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.reminder-card[data-active="true"] {
  box-shadow: 0 0 0 2px var(--accent), var(--sh-md);
  transform: translateX(4px);
}
.reminder-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 20px;
}
.reminder-icon .material-symbols-rounded {
  width: 22px !important;
  height: 22px !important;
  font-size: 22px !important;
}
.reminder-card[data-active="true"] .reminder-icon {
  background: var(--accent);
  color: #fff;
}
.reminder-card h4 { font-size: 15.5px; font-weight: 600; margin: 0 0 2px; }
.reminder-card p { font-size: 13.5px; color: var(--ink-2); margin: 0; }
.reminder-chev {
  color: var(--ink-3);
  transition: color 0.2s, transform 0.2s;
}
.reminder-card[data-active="true"] .reminder-chev { color: var(--accent); transform: translateX(2px); }

.reminder-preview {
  position: relative;
  display: flex; justify-content: center;
  min-height: 520px;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  counter-reset: step;
}
@media (min-width: 720px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.step {
  position: relative;
  padding: 32px 24px 28px;
  border-radius: var(--radius-xl);
  background: var(--surface-2);
  box-shadow: 0 0 0 1px var(--border);
}
.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 16px;
}
.step-icon {
  width: 56px; height: 56px; border-radius: 18px;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 20px;
  box-shadow: var(--sh-glow);
}
.step-icon svg { width: 26px; height: 26px; }
.step-icon .material-symbols-rounded {
  width: 26px !important;
  height: 26px !important;
  font-size: 26px !important;
}
.step h3 { margin-bottom: 8px; }
.step p { margin: 0; color: var(--ink-2); font-size: 14.5px; }

/* ---------- Testimonials ---------- */
.quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .quotes { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .quotes > :nth-child(4) { display: none; }
}
.quote {
  padding: 26px 24px;
  border-radius: var(--radius-xl);
  background: var(--surface-2);
  box-shadow: 0 0 0 1px var(--border);
  display: flex; flex-direction: column; gap: 16px;
}
.quote-stars { display: flex; gap: 2px; color: var(--accent); }
.quote-stars .material-symbols-rounded {
  width: 15px !important;
  height: 15px !important;
  font-size: 15px !important;
}
.quote p { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--ink); }
.quote-by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 600; font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}
.quote-by strong { font-size: 14px; font-weight: 600; display: block; }
.quote-by span { font-size: 12.5px; color: var(--ink-3); }

/* ---------- Pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .pricing { grid-template-columns: 1fr 1fr; }
}
.price-card {
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  background: var(--surface-2);
  box-shadow: 0 0 0 1px var(--border);
  display: flex; flex-direction: column;
}
.price-card.highlighted {
  background: var(--ink);
  color: var(--bg);
  box-shadow: var(--sh-lg), 0 0 0 1px var(--ink);
  position: relative;
}
.price-card.highlighted::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0;
  background: var(--accent);
  color: #fff;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}
.price-name { font-size: 14px; font-weight: 600; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0; margin-bottom: 12px; }
.price-card.highlighted .price-name { color: rgba(255, 255, 255, 0.7); }
.price-amt { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
.price-amt strong { font-size: 44px; font-weight: 600; letter-spacing: 0; }
.price-amt span { color: var(--ink-2); font-size: 15px; }
.price-card.highlighted .price-amt span { color: rgba(255, 255, 255, 0.7); }
.price-tagline { color: var(--ink-2); font-size: 14px; margin: 0 0 24px; }
.price-card.highlighted .price-tagline { color: rgba(255, 255, 255, 0.72); }
.price-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.price-list svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); width: 16px; height: 16px; }
.price-card.highlighted .price-list svg { color: var(--accent-bright); }
.price-list .material-symbols-rounded {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
  width: 16px !important;
  height: 16px !important;
  font-size: 16px !important;
}
.price-card.highlighted .price-list .material-symbols-rounded { color: var(--accent-bright); }
.price-card .btn { margin-top: auto; width: 100%; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  font-weight: 550;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink-5);
  display: grid; place-items: center;
  color: var(--ink-2);
  transition: transform 0.25s var(--ease), background 0.2s;
  font-size: 18px;
  line-height: 1;
}
.faq-item[open] .faq-plus { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-item p {
  margin: 14px 0 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
  max-width: 640px;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  padding: 56px 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #0f2a1c 0%, #1d4d33 50%, #15944f 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 720px) {
  .cta-banner { padding: 80px 40px; border-radius: 36px; }
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 80%, rgba(47, 185, 106, 0.5) 0%, transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 40%);
  z-index: -1;
}
.cta-banner h2 {
  font-size: 30px;
  margin-bottom: 16px;
  letter-spacing: 0;
  font-weight: 580;
}
.cta-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.5;
}
.cta-banner .btn.accent { box-shadow: 0 10px 40px rgba(47, 185, 106, 0.5); }
.cta-banner .cta-meta { color: rgba(255, 255, 255, 0.6); font-size: 13px; margin-top: 16px; }

/* ---------- Footer ---------- */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
}
.footer-brand { max-width: 320px; }
.footer-brand p { color: var(--ink-2); font-size: 14px; margin-top: 12px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14.5px; color: var(--ink-2); transition: color 0.15s; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-3);
}
.footer-care {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-care .material-symbols-rounded {
  color: var(--accent);
  flex: 0 0 auto;
}

/* ---------- Problem card ---------- */
.problem {
  padding: 40px 28px;
  border-radius: var(--radius-xl);
  background: var(--ink);
  color: var(--bg);
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media (min-width: 720px) {
  .problem { padding: 72px 56px; }
}
.problem::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 60%; height: 180%;
  background: radial-gradient(ellipse, var(--accent-glow-2), transparent 60%);
  opacity: 0.3;
  pointer-events: none;
}
.problem .eyebrow { color: var(--accent-bright); }
.problem .eyebrow::before { background: var(--accent-bright); box-shadow: 0 0 0 4px rgba(47,185,106,0.2); }
.problem h2 { font-size: 26px; letter-spacing: 0; margin: 14px 0 22px; max-width: 640px; }
.problem p { color: rgba(255, 255, 255, 0.78); font-size: 15.5px; line-height: 1.6; max-width: 640px; margin: 0 0 14px; }
@media (min-width: 720px) {
  .cta-banner h2 { font-size: 42px; }
  .cta-banner p { font-size: 18px; }
  .problem h2 { font-size: 34px; }
  .problem p { font-size: 17px; }
}
@media (min-width: 1040px) {
  .cta-banner h2 { font-size: 52px; }
  .problem h2 { font-size: 40px; }
}
.problem p.last { color: rgba(232, 243, 234, 0.92); }

/* ---------- Tweaks panel ---------- */
.tweaks {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 100;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--surface-2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 0 1px var(--border), var(--sh-lg);
  width: 280px;
  max-width: calc(100vw - 40px);
  display: none;
  font-size: 13px;
}
.tweaks.open { display: block; }
.tweaks h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--ink-3);
  margin: 0 0 12px;
  font-weight: 600;
}
.tweak-row { margin-bottom: 14px; }
.tweak-row:last-child { margin-bottom: 0; }
.tweak-label { font-size: 12px; color: var(--ink-2); margin-bottom: 6px; }
.tweak-colors { display: flex; gap: 8px; }
.tweak-color {
  width: 28px; height: 28px; border-radius: 50%;
  border: none; cursor: pointer;
  position: relative;
  transition: transform 0.15s;
}
.tweak-color:hover { transform: scale(1.1); }
.tweak-color[data-selected="true"]::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px currentColor;
}
.tweak-segmented { display: flex; gap: 0; background: var(--ink-5); border-radius: 10px; padding: 3px; }
.tweak-segmented button {
  flex: 1;
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  transition: all 0.15s;
}
.tweak-segmented button[data-selected="true"] {
  background: var(--surface-2);
  color: var(--ink);
  box-shadow: var(--sh-sm);
}

/* ---------- Phone mockup ---------- */
.phone {
  width: 300px;
  max-width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 44px;
  background: linear-gradient(155deg, #1a1a1a, #000);
  padding: 14px;
  box-shadow:
    0 0 0 2px #0a0a0a,
    0 50px 100px -20px rgba(10, 30, 18, 0.4),
    0 30px 60px -30px rgba(10, 30, 18, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
  flex-shrink: 0;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: #000;
  border-radius: 14px;
  z-index: 10;
}

/* status bar inside phone */
.sb {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px 8px;
  font-size: 13.5px; font-weight: 600;
  color: var(--ink);
  position: relative;
  z-index: 5;
}
.sb-right { display: flex; align-items: center; gap: 5px; }

/* generic floating */
@keyframes float {
  0%, 100% { transform: translate(var(--fx, 0), var(--fy, 0)); }
  50% { transform: translate(var(--fx, 0), calc(var(--fy, 0) - 8px)); }
}
.floaty { animation: float 5s ease-in-out infinite; }

/* reveal animation — content always visible; .visible plays a subtle entrance */
@keyframes revealIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
[data-reveal].visible {
  animation: revealIn 0.7s var(--ease) both;
}

/* ---------- Utilities ---------- */
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.flex { display: flex; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.mb-0 { margin-bottom: 0 !important; }
.hide-mobile { display: none; }
@media (min-width: 720px) { .hide-mobile { display: initial; } }
.hide-desktop { display: initial; }
@media (min-width: 720px) { .hide-desktop { display: none; } }
