/* ============================================
   Smart Dates — Design System
   Intentional dating, one curated pick a day
   ============================================ */

:root {
  /* Color palette */
  --coral: #E85D75;
  --coral-dark: #D14660;
  --coral-light: #F8B4C0;
  --cream: #FAF6F1;
  --cream-warm: #F5EDE3;
  --midnight: #0F1B2D;
  --slate: #4A5568;
  --slate-soft: #718096;
  --gold: #D4AF37;
  --pink-mist: #FBE6E9;
  --white: #FFFFFF;
  --shadow-soft: 0 4px 24px rgba(15, 27, 45, 0.06);
  --shadow-lift: 0 12px 36px rgba(232, 93, 117, 0.18);
  --shadow-deep: 0 20px 60px rgba(15, 27, 45, 0.12);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --container: 1180px;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--midnight);
  background: var(--cream);
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: var(--coral); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--coral-dark); }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; line-height: 1.15; color: var(--midnight); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); }
h4 { font-size: 1.15rem; }

p { color: var(--slate); }
.lead { font-size: 1.2rem; color: var(--slate); max-width: 620px; }

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

/* ============== NAV ============== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 27, 45, 0.05);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container); margin: 0 auto; padding: 18px 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-size: 1.55rem; font-weight: 700;
  color: var(--midnight); letter-spacing: -0.02em;
}
.brand-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.1rem;
  font-family: var(--font-sans);
}
.nav-links {
  display: flex; gap: 32px; align-items: center; list-style: none;
}
.nav-links a {
  color: var(--midnight); font-weight: 500; font-size: 0.95rem;
}
.nav-links a:hover { color: var(--coral); }
.nav-cta {
  display: flex; gap: 12px; align-items: center;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.95rem;
  border: none; cursor: pointer; transition: all 0.2s ease;
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--coral); color: white;
  box-shadow: var(--shadow-lift);
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); color: white; }
.btn-ghost {
  background: transparent; color: var(--midnight);
  border: 1.5px solid rgba(15, 27, 45, 0.15);
}
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); }
.btn-dark {
  background: var(--midnight); color: white;
}
.btn-dark:hover { background: #1a2940; color: white; transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }

/* ============== HERO ============== */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--pink-mist) 100%);
  position: relative; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; padding: 8px 16px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 600; color: var(--coral);
  letter-spacing: 0.5px; text-transform: uppercase;
  box-shadow: var(--shadow-soft); margin-bottom: 24px;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--coral); font-weight: 400; }
.hero .lead { font-size: 1.25rem; margin-bottom: 36px; color: var(--slate); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-meta { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-family: var(--font-serif); font-size: 1.75rem; color: var(--midnight); }
.hero-stat span { font-size: 0.85rem; color: var(--slate-soft); }

/* Mock daily pick card */
.pick-card {
  background: white; border-radius: var(--radius-xl);
  padding: 28px; box-shadow: var(--shadow-deep);
  max-width: 420px; margin: 0 auto;
  position: relative;
  transform: rotate(1.5deg);
}
.pick-card::before {
  content: 'Today'; position: absolute; top: -16px; right: 28px;
  background: var(--coral); color: white;
  padding: 6px 16px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1px;
}
.pick-photo {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; background: linear-gradient(135deg, #FFD3A5 0%, #FD9853 100%);
  margin-bottom: 18px;
  display: flex; align-items: flex-end; justify-content: flex-start; padding: 18px;
  color: white; font-family: var(--font-serif); font-size: 1.5rem;
  position: relative;
}
.pick-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
}
.pick-photo span { position: relative; z-index: 1; }
.pick-photo .pick-verified {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.95); color: var(--coral);
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 700;
  padding: 6px 10px; border-radius: 999px; z-index: 2;
}
.pick-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.pick-name { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 700; }
.pick-age { color: var(--slate-soft); }
.pick-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.tag {
  background: var(--pink-mist); color: var(--coral-dark);
  font-size: 0.78rem; font-weight: 600;
  padding: 5px 12px; border-radius: 999px;
}
.pick-prompt { background: var(--cream-warm); padding: 14px 16px; border-radius: var(--radius); margin-bottom: 18px; }
.pick-prompt-q { font-size: 0.78rem; color: var(--slate-soft); margin-bottom: 4px; font-weight: 600; }
.pick-prompt-a { font-family: var(--font-serif); font-size: 1.05rem; color: var(--midnight); font-style: italic; }
.pick-actions { display: flex; gap: 10px; }
.pick-actions .btn { flex: 1; }

/* ============== SECTIONS ============== */
.section { padding: 90px 0; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-eyebrow {
  font-size: 0.78rem; font-weight: 700; color: var(--coral);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}
.section h2 { margin-bottom: 18px; }
.section .lead { margin: 0 auto; }

/* How it works */
.howitworks { background: white; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step {
  text-align: center; padding: 36px 24px;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--pink-mist); color: var(--coral);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700;
  margin-bottom: 20px;
}
.step h3 { margin-bottom: 12px; }
.step p { color: var(--slate); font-size: 0.95rem; }

/* Features grid */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: white; padding: 36px 28px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft); transition: transform 0.3s, box-shadow 0.3s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.feature h3 { font-size: 1.3rem; margin-bottom: 12px; }
.feature p { font-size: 0.95rem; }

/* Testimonials */
.testimonials { background: linear-gradient(180deg, var(--cream) 0%, var(--pink-mist) 100%); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: white; padding: 32px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.testimonial-quote {
  font-family: var(--font-serif); font-size: 1.15rem; line-height: 1.55;
  color: var(--midnight); margin-bottom: 24px; font-style: italic;
}
.testimonial-meta { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--coral-light) 0%, var(--coral) 100%);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1rem;
}
.testimonial-name { font-weight: 600; color: var(--midnight); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--slate-soft); }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: white; padding: 80px 0; text-align: center;
}
.cta-banner h2 { color: white; margin-bottom: 18px; }
.cta-banner p { color: rgba(255,255,255,0.9); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-primary { background: white; color: var(--coral); }
.cta-banner .btn-primary:hover { background: var(--cream); color: var(--coral-dark); }

/* Footer */
.footer { background: var(--midnight); color: rgba(255,255,255,0.7); padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 50px; }
.footer-brand .brand { color: white; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; max-width: 320px; }
.footer h4 { color: white; font-family: var(--font-sans); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.footer a:hover { color: white; }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
}

/* ============== APP PAGES (today, chats, etc.) ============== */
.app-shell { min-height: calc(100vh - 80px); padding: 40px 0 80px; }
.app-header { margin-bottom: 32px; }
.app-header h1 { font-size: 2.25rem; margin-bottom: 6px; }
.app-header p { color: var(--slate); }

/* Today's daily pick — full-page version */
.today-stage {
  max-width: 580px; margin: 0 auto;
  background: white; border-radius: var(--radius-xl);
  padding: 32px; box-shadow: var(--shadow-deep);
}
.today-stage .pick-photo {
  aspect-ratio: 4/5; max-height: 540px;
}
.compat-bar {
  display: flex; align-items: center; gap: 12px; margin: 20px 0;
  padding: 14px; background: var(--cream-warm); border-radius: var(--radius);
}
.compat-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: conic-gradient(var(--coral) 0deg 306deg, #f0e0e3 306deg 360deg);
  display: flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
}
.compat-circle::before {
  content: ''; position: absolute; inset: 6px; background: var(--cream-warm); border-radius: 50%;
}
.compat-circle span { position: relative; z-index: 1; font-weight: 700; font-size: 0.95rem; color: var(--coral-dark); }
.compat-info h4 { font-size: 0.95rem; margin-bottom: 2px; }
.compat-info p { font-size: 0.85rem; color: var(--slate); }

.story-cards { margin-top: 24px; }
.story-card {
  background: var(--cream-warm); padding: 20px; border-radius: var(--radius);
  margin-bottom: 14px;
}
.story-card-q { font-size: 0.78rem; color: var(--slate-soft); margin-bottom: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.story-card-a { font-family: var(--font-serif); font-size: 1.1rem; color: var(--midnight); }

.daily-actions {
  position: sticky; bottom: 24px;
  display: flex; gap: 14px; margin-top: 32px;
  background: white; padding: 16px; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-deep);
}
.daily-actions .btn { flex: 1; padding: 18px; font-size: 1.05rem; }

/* Sparks balance pill */
.sparks-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #FFD580 0%, #FFA500 100%);
  color: white; padding: 8px 14px; border-radius: 999px;
  font-weight: 700; font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

/* Chat pages */
.chat-layout { display: grid; grid-template-columns: 320px 1fr; gap: 24px; height: 75vh; }
.chat-sidebar {
  background: white; border-radius: var(--radius-lg); padding: 18px;
  box-shadow: var(--shadow-soft); overflow-y: auto;
}
.chat-thread {
  background: white; border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
}
.chat-list-item {
  display: flex; gap: 12px; padding: 12px; border-radius: var(--radius); cursor: pointer;
  transition: background 0.2s;
}
.chat-list-item:hover, .chat-list-item.active { background: var(--pink-mist); }
.chat-list-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #FFD3A5 0%, #FD9853 100%);
  flex-shrink: 0;
}
.chat-list-info { flex: 1; min-width: 0; }
.chat-list-name { font-weight: 600; font-size: 0.95rem; }
.chat-list-preview { font-size: 0.85rem; color: var(--slate-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chat-list-time { font-size: 0.75rem; color: var(--slate-soft); }
.chat-window-timer {
  background: var(--pink-mist); color: var(--coral-dark);
  padding: 10px 14px; border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 600; text-align: center;
  margin-bottom: 16px;
}
.chat-messages {
  flex: 1; overflow-y: auto; padding: 8px 0;
}
.chat-msg { max-width: 70%; margin-bottom: 12px; padding: 12px 16px; border-radius: 18px; font-size: 0.95rem; line-height: 1.5; }
.chat-msg.them { background: var(--cream-warm); color: var(--midnight); border-bottom-left-radius: 4px; }
.chat-msg.me { background: var(--coral); color: white; margin-left: auto; border-bottom-right-radius: 4px; }
.chat-input {
  display: flex; gap: 8px; padding-top: 16px; border-top: 1px solid rgba(15,27,45,0.06);
}
.chat-input input {
  flex: 1; padding: 12px 16px; border: 1.5px solid rgba(15,27,45,0.1);
  border-radius: 999px; font-family: var(--font-sans); font-size: 0.95rem;
}
.chat-input input:focus { outline: none; border-color: var(--coral); }

/* Forms */
.form-card {
  max-width: 460px; margin: 0 auto; background: white;
  padding: 44px 40px; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-deep);
}
.form-card h2 { text-align: center; margin-bottom: 8px; }
.form-card p.sub { text-align: center; color: var(--slate); margin-bottom: 32px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; color: var(--midnight); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid rgba(15, 27, 45, 0.12);
  border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 1rem;
  background: var(--cream); transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--coral); background: white;
}
.divider {
  text-align: center; margin: 24px 0; color: var(--slate-soft);
  font-size: 0.85rem; position: relative;
}
.divider::before, .divider::after {
  content: ''; position: absolute; top: 50%; width: 35%;
  height: 1px; background: rgba(15,27,45,0.1);
}
.divider::before { left: 0; }
.divider::after { right: 0; }
.social-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 12px; margin-bottom: 10px;
  background: white; border: 1.5px solid rgba(15,27,45,0.12);
  border-radius: var(--radius); cursor: pointer;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.95rem;
  color: var(--midnight); transition: border-color 0.2s, transform 0.15s;
}
.social-btn:hover { border-color: var(--coral); transform: translateY(-1px); }

/* Pricing tiers */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; }
.tier {
  background: white; padding: 36px 32px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft); position: relative;
}
.tier.featured {
  background: linear-gradient(180deg, white 0%, var(--pink-mist) 100%);
  border: 2px solid var(--coral); transform: scale(1.03);
  box-shadow: var(--shadow-deep);
}
.tier-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--coral); color: white;
  padding: 6px 18px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.tier h3 { font-size: 1.5rem; margin-bottom: 6px; }
.tier-price { display: flex; align-items: baseline; gap: 4px; margin: 16px 0 24px; }
.tier-price strong { font-family: var(--font-serif); font-size: 2.75rem; color: var(--midnight); font-weight: 700; }
.tier-price span { color: var(--slate-soft); font-size: 0.95rem; }
.tier-features { list-style: none; margin: 24px 0; }
.tier-features li {
  padding: 8px 0 8px 28px; position: relative;
  font-size: 0.95rem; color: var(--slate);
}
.tier-features li::before {
  content: '✓'; position: absolute; left: 0; top: 8px;
  color: var(--coral); font-weight: 700;
}

/* Modal */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(15, 27, 45, 0.7);
  display: none; align-items: center; justify-content: center; z-index: 200;
  backdrop-filter: blur(4px);
}
.modal-backdrop.show { display: flex; animation: fadeIn 0.2s; }
.modal {
  background: white; border-radius: var(--radius-xl);
  padding: 48px 40px; max-width: 460px; width: 90%;
  text-align: center; animation: pop 0.3s;
}
.modal-icon {
  width: 84px; height: 84px; border-radius: 50%;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: white;
}
.modal h3 { font-size: 1.6rem; margin-bottom: 12px; }
.modal p { margin-bottom: 24px; color: var(--slate); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* Stepper */
.stepper { display: flex; justify-content: space-between; margin-bottom: 36px; max-width: 460px; margin-left: auto; margin-right: auto; }
.stepper-step { flex: 1; text-align: center; position: relative; }
.stepper-step::before {
  content: ''; position: absolute; top: 14px; left: -50%; width: 100%; height: 2px; background: rgba(15,27,45,0.1);
}
.stepper-step:first-child::before { display: none; }
.stepper-step.done::before { background: var(--coral); }
.stepper-dot {
  width: 30px; height: 30px; border-radius: 50%;
  background: white; border: 2px solid rgba(15,27,45,0.1);
  margin: 0 auto 8px; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: var(--slate-soft);
  position: relative; z-index: 1;
}
.stepper-step.active .stepper-dot { border-color: var(--coral); color: var(--coral); }
.stepper-step.done .stepper-dot { background: var(--coral); border-color: var(--coral); color: white; }
.stepper-label { font-size: 0.78rem; color: var(--slate-soft); font-weight: 600; }
.stepper-step.active .stepper-label { color: var(--midnight); }

/* Photo upload grid */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.photo-slot {
  aspect-ratio: 3/4; border-radius: var(--radius);
  background: var(--cream-warm);
  border: 2px dashed rgba(15,27,45,0.15);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
  font-size: 1.5rem; color: var(--slate-soft);
}
.photo-slot:hover { border-color: var(--coral); background: var(--pink-mist); color: var(--coral); }
.photo-slot.filled { background: linear-gradient(135deg, #FFD3A5 0%, #FD9853 100%); border-style: solid; border-color: var(--coral); color: white; font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; }

/* Beyond Today (premium gallery) */
.beyond-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.beyond-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-soft);
  transition: transform 0.25s;
}
.beyond-card:hover { transform: translateY(-4px); }
.beyond-photo {
  aspect-ratio: 1/1; background: linear-gradient(135deg, #FFD3A5 0%, #FD9853 100%);
  position: relative; display: flex; align-items: flex-end; padding: 14px; color: white;
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700;
}
.beyond-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%); }
.beyond-photo span { position: relative; z-index: 1; }
.beyond-meta { padding: 14px 16px; }
.beyond-meta p { font-size: 0.85rem; color: var(--slate); }

/* About / safety pages */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { margin-top: 40px; margin-bottom: 16px; }
.prose p { margin-bottom: 16px; line-height: 1.75; }
.prose ul { margin: 16px 0; padding-left: 24px; }
.prose li { margin-bottom: 10px; color: var(--slate); }

/* ============== RESPONSIVE ============== */
@media (max-width: 880px) {
  .hero { padding: 50px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .pick-card { transform: rotate(0); margin-top: 0; }
  .nav-links { display: none; }
  .steps, .features-grid, .testimonial-grid { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tiers { grid-template-columns: 1fr; max-width: 480px; }
  .tier.featured { transform: none; }
  .chat-layout { grid-template-columns: 1fr; height: auto; }
  .section { padding: 60px 0; }
}
@media (max-width: 520px) {
  .nav-cta .btn-ghost { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}
