/* ScanForTwo Landing Page — high-converting, modern */

:root {
  --bg-white: #fbfcfd;
  --bg-cream: #f3f7f6;
  --bg-soft: #eef6f4;
  --text-primary: #142433;
  --text-secondary: #4d5f72;
  --text-muted: #7d8f9f;
  --accent-blue: #3d8ab0;
  --accent-blue-dark: #2f6f90;
  --accent-teal: #3d9b8a;
  --accent-teal-deep: #2f7d6f;
  --accent-teal-light: #e6f5f1;
  --safe-green: #2f9e6b;
  --safe-green-bg: #e6f6ee;
  --safe-green-border: #b5e4cc;
  --caution-yellow: #d9a12a;
  --caution-yellow-bg: #fdf6e4;
  --avoid-red: #d45b5b;
  --avoid-red-bg: #fceeee;
  --border-soft: rgba(20, 36, 51, 0.08);
  --shadow-sm: 0 2px 10px rgba(20, 36, 51, 0.05);
  --shadow-md: 0 12px 40px rgba(20, 36, 51, 0.1);
  --shadow-lg: 0 24px 60px rgba(20, 36, 51, 0.14);
  --shadow-glow: 0 12px 40px rgba(61, 155, 138, 0.25);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 200;
  background: var(--text-primary);
  color: white;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
}

.skip-link:focus {
  top: 16px;
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.35rem, 5.2vw, 3.5rem);
}

h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.65rem);
}

h3 {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-teal);
  margin-bottom: 14px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.85);
}

.section-header {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  margin-top: 16px;
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.section-header em {
  font-style: italic;
  color: var(--text-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 3px solid rgba(61, 155, 138, 0.45);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
  color: white;
  box-shadow: 0 8px 24px rgba(61, 155, 138, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(61, 155, 138, 0.42);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-primary);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  border-color: rgba(61, 155, 138, 0.35);
  background: white;
}

.btn-cta-light {
  background: white;
  color: var(--accent-teal-deep);
  box-shadow: 0 10px 30px rgba(20, 36, 51, 0.18);
}

.btn-cta-light:hover {
  box-shadow: 0 14px 36px rgba(20, 36, 51, 0.22);
  background: #f8fffd;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 1.0625rem;
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.25s var(--ease-out);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(251, 252, 253, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.site-header.scrolled {
  border-bottom-color: var(--border-soft);
  box-shadow: 0 4px 24px rgba(20, 36, 51, 0.04);
  background: rgba(251, 252, 253, 0.94);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
  z-index: 110;
}

.logo-mark {
  width: 36px;
  height: 36px;
  color: var(--accent-teal);
  flex-shrink: 0;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-light .logo-text {
  color: white;
}

.logo-light .logo-mark {
  color: var(--accent-teal-light);
}

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

.header-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius-full);
  transition: color 0.2s, background 0.2s;
}

.header-nav a:hover {
  color: var(--accent-teal-deep);
  background: var(--accent-teal-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 110;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 12px;
  border-radius: 12px;
  transition: background 0.2s;
}

.menu-toggle:hover {
  background: var(--bg-soft);
}

.menu-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] .menu-bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

@media (min-width: 900px) {
  .header-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

@media (max-width: 899px) {
  .header-nav {
    position: fixed;
    inset: 0;
    top: var(--header-h);
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 24px;
    background: rgba(251, 252, 253, 0.98);
    backdrop-filter: blur(20px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
    border-top: 1px solid var(--border-soft);
  }

  .header-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .header-nav a {
    font-size: 1.125rem;
    padding: 16px 18px;
    border-radius: var(--radius-md);
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 56px 0 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(61, 155, 138, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(61, 138, 176, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-white) 0%, var(--accent-teal-light) 100%);
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

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

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px 40px;
  }

  .hero {
    padding: 72px 0 96px;
  }
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(61, 155, 138, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-teal-deep);
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--safe-green);
  box-shadow: 0 0 0 4px rgba(47, 158, 107, 0.18);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(47, 158, 107, 0.18); }
  50% { box-shadow: 0 0 0 7px rgba(47, 158, 107, 0.08); }
}

.hero-sub {
  margin-top: 20px;
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.verdict-inline {
  display: inline-block;
  font-weight: 700;
  font-size: 0.9em;
  padding: 1px 8px;
  border-radius: 6px;
  vertical-align: baseline;
}

.verdict-inline.safe {
  color: var(--safe-green);
  background: var(--safe-green-bg);
}

.verdict-inline.caution {
  color: #a67a12;
  background: var(--caution-yellow-bg);
}

.verdict-inline.avoid {
  color: var(--avoid-red);
  background: var(--avoid-red-bg);
}

.hero-cta-group {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.store-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  min-width: 148px;
}

.store-badge svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.store-badge small {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.store-badge:hover {
  border-color: rgba(61, 155, 138, 0.4);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.store-badges-light {
  margin-top: 4px;
}

.store-badges-light .store-badge-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: white;
  min-width: auto;
}

.store-badges-light .store-badge-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.store-badges-light .store-badge-light span {
  display: block;
}

.hero-proof {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(20, 36, 51, 0.06);
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.hero-proof .stars {
  color: #e0a82e;
  letter-spacing: 1px;
  font-size: 0.75rem;
}

.hero-proof svg {
  width: 16px;
  height: 16px;
  color: var(--accent-teal);
}

.hero-trust-line {
  margin-top: 16px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.hero-trust-line em {
  font-style: italic;
  color: var(--text-secondary);
}

/* Phone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 32px 0 16px;
  min-height: 520px;
}

.hero-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(61, 155, 138, 0.28) 0%, transparent 68%);
  border-radius: 50%;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: blur(8px);
}

.phone-mockup {
  position: relative;
  z-index: 1;
  width: min(290px, 86vw);
}

.phone-frame {
  background: linear-gradient(160deg, #1c2c3b 0%, #0f1a24 100%);
  border-radius: 40px;
  padding: 11px;
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: #0a1219;
  border-radius: 20px;
  z-index: 3;
}

.phone-screen {
  background: #edf2f1;
  border-radius: 30px;
  overflow: hidden;
  min-height: 520px;
  position: relative;
}

/* Hero phone mock — ingredient search UI (not barcode) */
.phone-screen-app {
  background: linear-gradient(180deg, #fbfcfd 0%, #eef6f4 100%);
  padding: 44px 14px 18px;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.mock-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mock-app-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.scan-ui-stage {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent-teal);
  background: rgba(61, 155, 138, 0.12);
  border: 1px solid rgba(61, 155, 138, 0.28);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.mock-app-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent-teal);
  margin: 0 0 8px;
}

.mock-search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1.5px solid rgba(61, 155, 138, 0.35);
  box-shadow: 0 4px 16px rgba(20, 36, 51, 0.06);
  border-radius: 14px;
  padding: 11px 12px;
  margin-bottom: 14px;
}

.mock-search-icon {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.mock-search-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mock-search-cursor {
  width: 1.5px;
  height: 1rem;
  background: var(--accent-teal);
  border-radius: 1px;
  animation: blink 1.1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.mock-verdict {
  margin: 0 !important;
  flex: 1;
}

.mock-app-hint {
  margin: 14px 4px 0;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

.scan-mini-search {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  margin: 10px 10px 0;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
}

.scan-mini-query {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
}

.scan-mini-query::before {
  content: '⌕ ';
  color: var(--text-muted);
  font-weight: 500;
}

.verdict-badge-avoid {
  background: var(--avoid-red-bg);
  color: var(--avoid-red);
}

.verdict-avoid {
  border-left: 4px solid var(--avoid-red);
}

/* Floating cards */
.float-card {
  position: absolute;
  z-index: 2;
  display: none;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  border: 1px solid var(--border-soft);
  animation: float 5s ease-in-out infinite;
}

.float-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.float-dot.safe { background: var(--safe-green); }
.float-dot.caution { background: var(--caution-yellow); }
.float-dot.avoid { background: var(--avoid-red); }

.float-card-1 {
  top: 18%;
  left: 0;
  animation-delay: 0s;
}

.float-card-2 {
  bottom: 16%;
  right: 0;
  animation-delay: 1.2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (min-width: 980px) {
  .float-card {
    display: inline-flex;
  }
}

/* Verdict Card */
.verdict-card {
  margin: 14px;
  padding: 18px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  animation: slideUp 0.7s var(--ease-out) 0.25s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.verdict-card.compact {
  margin: 8px;
  padding: 12px;
}

.verdict-safe {
  border-left: 4px solid var(--safe-green);
}

.verdict-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--safe-green-bg);
  color: var(--safe-green);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.verdict-badge svg {
  width: 14px;
  height: 14px;
}

.verdict-badge.small {
  font-size: 0.6875rem;
  padding: 3px 8px;
  margin-bottom: 6px;
}

.verdict-badge.small svg {
  width: 10px;
  height: 10px;
}

.verdict-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.verdict-card.compact .verdict-title {
  font-size: 0.8125rem;
  margin-bottom: 0;
}

.verdict-detail {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.verdict-sources {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.source-dot {
  width: 4px;
  height: 4px;
  background: var(--text-muted);
  border-radius: 50%;
}

/* Trust strip */
.trust-strip {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: white;
  padding: 28px 0;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.stat-divider {
  display: none;
}

@media (min-width: 768px) {
  .trust-strip-inner {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 8px;
  }

  .stat-divider {
    display: block;
    width: 1px;
    height: 40px;
    background: var(--border-soft);
  }

  .stat strong {
    font-size: 1.35rem;
  }
}

/* Problem Section */
.problem {
  padding: 96px 0;
  background: var(--bg-white);
}

.split-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .split-visual {
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
  }
}

.split-panel {
  text-align: center;
}

.split-label {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.split-label-bad {
  background: var(--avoid-red-bg);
  color: var(--avoid-red);
}

.split-label-good {
  background: var(--safe-green-bg);
  color: var(--safe-green);
}

.split-divider {
  display: none;
}

.split-divider-pill {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
}

.split-divider-pill svg {
  width: 22px;
  height: 22px;
}

@media (min-width: 768px) {
  .split-divider {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.mini-phone {
  width: 190px;
  margin: 0 auto;
  background: linear-gradient(160deg, #1c2c3b 0%, #0f1a24 100%);
  border-radius: 26px;
  padding: 9px;
  box-shadow: var(--shadow-md);
}

.mini-phone .phone-screen {
  min-height: 290px;
  border-radius: 20px;
  padding: 12px;
  position: relative;
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-bar-mock {
  background: #e4e9ed;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.6875rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
  text-align: left;
}

.search-result {
  background: white;
  padding: 8px 10px;
  border-radius: 8px;
  text-align: left;
  border-left: 3px solid #ddd;
}

.search-result-conflict {
  border-left-color: var(--caution-yellow);
}

.result-title {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text-primary);
}

.result-snippet {
  display: block;
  font-size: 0.5625rem;
  color: var(--text-muted);
}

.mood-chip {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 8px;
  border-radius: 10px;
  text-align: center;
}

.mood-anxious {
  background: var(--avoid-red-bg);
  color: var(--avoid-red);
}

.mood-calm {
  background: var(--safe-green-bg);
  color: var(--safe-green);
}

.scan-mini {
  display: flex;
  justify-content: center;
  padding: 28px 0 14px;
  background: linear-gradient(180deg, #243848 0%, #162533 100%);
  border-radius: 10px;
  margin-bottom: 8px;
}

.split-caption {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* How It Works */
.how-it-works {
  padding: 96px 0;
  background: var(--bg-cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.step-card {
  background: white;
  padding: 32px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  text-align: left;
  position: relative;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.2s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(61, 155, 138, 0.2);
}

.step-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  color: var(--accent-teal);
  background: var(--accent-teal-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.step-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.step-card h3 {
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.verdict-legend {
  display: flex;
  justify-content: center;
  gap: 12px 28px;
  flex-wrap: wrap;
  padding: 16px 24px;
  background: white;
  border-radius: var(--radius-full);
  width: fit-content;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend-safe .legend-dot { background: var(--safe-green); }
.legend-caution .legend-dot { background: var(--caution-yellow); }
.legend-avoid .legend-dot { background: var(--avoid-red); }

/* Use cases */
.use-cases {
  padding: 96px 0;
  background: var(--bg-white);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .use-cases-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.use-case-card {
  padding: 28px 24px;
  background: var(--bg-cream);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  transition: background 0.2s, border-color 0.2s, transform 0.25s var(--ease-out);
}

.use-case-card:hover {
  background: white;
  border-color: rgba(61, 155, 138, 0.28);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.use-case-emoji {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 14px;
}

.use-case-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.use-case-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* UVP */
.uvp {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-white) 100%);
}

.uvp-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .uvp-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .uvp-card-wide {
    grid-column: span 1;
  }
}

@media (min-width: 980px) {
  .uvp-bento {
    grid-template-columns: repeat(6, 1fr);
  }

  .uvp-card-wide {
    grid-column: span 3;
  }

  .uvp-card:not(.uvp-card-wide) {
    grid-column: span 3;
  }
}

.uvp-card {
  padding: 32px 28px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.25s var(--ease-out);
}

.uvp-card:hover {
  border-color: var(--safe-green-border);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.uvp-icon {
  width: 44px;
  height: 44px;
  color: var(--accent-blue);
  margin-bottom: 18px;
  background: rgba(61, 138, 176, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.uvp-icon svg {
  width: 100%;
  height: 100%;
}

.uvp-card h3 {
  margin-bottom: 10px;
  font-size: 1.125rem;
}

.uvp-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Trust */
.trust {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--accent-teal-light) 0%, var(--bg-white) 70%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .testimonial-card.featured {
    grid-column: span 1;
  }
}

.testimonial-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testimonial-card.featured {
  border-color: rgba(61, 155, 138, 0.3);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(61, 155, 138, 0.08);
}

.testimonial-stars {
  color: #e0a82e;
  letter-spacing: 2px;
  font-size: 0.875rem;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-size: 0.975rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
  color: white;
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar.advisor {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #6b8fbd 100%);
}

.avatar.avatar-alt {
  background: linear-gradient(135deg, #7bb8a8 0%, var(--accent-teal) 100%);
}

.testimonial-card cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.testimonial-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.data-sources {
  text-align: center;
  padding: 40px 28px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
}

.data-sources-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.source-logos {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.source-logo {
  padding: 12px 26px;
  background: var(--bg-cream);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text-primary);
}

.data-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.55;
}

/* FAQ */
.faq {
  padding: 96px 0;
  background: var(--bg-white);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
}

@media (min-width: 900px) {
  .faq-inner {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    max-width: 1160px;
    align-items: start;
  }

  .faq .section-header {
    margin-bottom: 0;
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-cream);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}

.faq-item[open] {
  background: white;
  border-color: rgba(61, 155, 138, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 20px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  position: relative;
  line-height: 1.4;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s var(--ease-out);
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-item p {
  padding: 0 20px 20px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* Final CTA */
.final-cta {
  padding: 88px 0;
  background:
    radial-gradient(ellipse 70% 80% at 90% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, var(--accent-blue-dark) 0%, var(--accent-teal) 55%, #4aaf9a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

@media (min-width: 768px) {
  .final-cta-inner {
    grid-template-columns: 1.45fr 0.9fr;
  }
}

.final-cta h2 {
  color: white;
  margin-bottom: 16px;
}

.final-cta-content p {
  font-size: 1.0625rem;
  opacity: 0.92;
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 520px;
}

.final-cta .btn-cta-light {
  margin-bottom: 12px;
}

.cta-micro {
  font-size: 0.8125rem !important;
  opacity: 0.75 !important;
  margin-bottom: 20px !important;
}

.final-cta-visual {
  display: flex;
  justify-content: center;
}

.verdict-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.verdict-pill {
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.0625rem;
  text-align: center;
  box-shadow: 0 12px 32px rgba(20, 36, 51, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 180px;
}

.pill-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

.verdict-pill-safe {
  background: var(--safe-green);
  color: white;
  transform: rotate(-2.5deg);
}

.verdict-pill-caution {
  background: var(--caution-yellow);
  color: var(--text-primary);
  transform: rotate(1.5deg);
  margin-left: 28px;
}

.verdict-pill-caution .pill-check {
  background: rgba(20, 36, 51, 0.12);
}

.verdict-pill-avoid {
  background: var(--avoid-red);
  color: white;
  transform: rotate(-1deg);
  margin-left: 12px;
}

/* Footer */
.site-footer {
  padding: 52px 0 36px;
  background: var(--text-primary);
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  display: grid;
  gap: 28px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.875rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: 8px 20px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: var(--accent-teal-light);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 6px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 8px;
}

.footer-legal a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
  padding: 2px 0;
}

.footer-legal a:hover {
  color: var(--accent-teal-light);
}

.footer-legal-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.footer-disclaimer {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 16px;
  margin-top: 4px;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(251, 252, 253, 0.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -8px 32px rgba(20, 36, 51, 0.08);
  transform: translateY(110%);
  transition: transform 0.35s var(--ease-out);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta[hidden] {
  display: block;
  visibility: hidden;
  pointer-events: none;
}

.sticky-cta.is-visible[hidden] {
  visibility: visible;
  pointer-events: auto;
}

.sticky-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sticky-cta-copy strong {
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.sticky-cta-copy span {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none !important;
  }
}

/* Pad bottom when sticky is active */
body.has-sticky-cta {
  padding-bottom: 80px;
}

@media (min-width: 900px) {
  body.has-sticky-cta {
    padding-bottom: 0;
  }
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .phone-screen {
    min-height: 480px;
  }
}
