/* ============================================
   AXEO DESIGN SYSTEM — axeo.vision
   Ported from Theme.swift (iOS app)
   Premium dark-theme, glass morphism
   ============================================ */

:root {
  /* Surfaces */
  --bg:   #08090C;
  --bg2:  #12141A;
  --bg3:  #1C1F28;

  /* Cards */
  --card:  #1C1F28;
  --card2: #12141A;

  /* Borders */
  --border:       #2A2E3A;
  --border-alpha: rgba(42, 46, 58, 0.6);

  /* Accent — Optic Cyan */
  --accent:  #00FFD5;
  --accent2: #009B8A;
  --teal:    #00FFD5;

  /* Retinal Orange */
  --retinal:      #FF4500;
  --retinal-deep: #E03D00;

  /* Functional */
  --gold:    #E09B3D;
  --data:    #3B82F6;
  --success: #22C55E;
  --error:   #EF4444;
  --warning: #E09B3D;

  /* Text */
  --text:  #EAECF0;
  --text2: #8A90A4;
  --text3: #4A5068;

  /* Glass */
  --glass:           rgba(255, 255, 255, 0.06);
  --glass-border:    rgba(255, 255, 255, 0.12);
  --glass-highlight: rgba(255, 255, 255, 0.08);

  /* Gradients */
  --gradient-accent: linear-gradient(135deg, #00FFD5, #009B8A);
  --gradient-gold:   linear-gradient(135deg, #E09B3D, #FF4500);
  --gradient-teal:   linear-gradient(to right, #00FFD5, #FF4500);

  /* Typography */
  --font:      -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'SF Mono', ui-monospace, 'Cascadia Code', monospace;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.4);

  /* Radii */
  --radius:    20px;
  --radius-sm: 14px;
  --radius-xs: 10px;
}

/* ── Reset ───────────────────────────────── */

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

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img { max-width: 100%; height: auto; display: block; }

/* ── Typography ──────────────────────────── */

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { color: var(--text2); font-size: 1rem; }

.text-gradient {
  background: var(--gradient-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.overline {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3);
}

/* ── Container ───────────────────────────── */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header p {
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Glass Card ──────────────────────────── */

.glass-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius);
  border: 0.5px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, var(--glass-highlight), transparent);
  pointer-events: none;
  border-radius: var(--radius) var(--radius) 0 0;
}

.glass-card-sm { border-radius: var(--radius-sm); }
.glass-card-sm::before { border-radius: var(--radius-sm) var(--radius-sm) 0 0; }

/* ── Buttons ─────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
  text-decoration: none;
  padding: 16px 32px;
}

.btn:active { transform: scale(0.97); opacity: 0.9; }

.btn-primary {
  background: var(--gradient-gold);
  color: var(--bg);
  box-shadow: 0 6px 24px rgba(224, 155, 61, 0.35);
}
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(224, 155, 61, 0.5);
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent2);
}
.btn-secondary:hover {
  background: rgba(0, 255, 213, 0.08);
  opacity: 1;
}

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

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(224, 155, 61, 0.4);
}

/* ── Ambient Background ──────────────────── */

.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--bg);
  overflow: hidden;
}

.ambient-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
}

.orb-1 {
  width: 400px; height: 400px;
  background: rgba(0, 255, 213, 0.06);
  top: -100px; left: -100px;
  animation: float-1 10s ease-in-out infinite alternate;
}

.orb-2 {
  width: 350px; height: 350px;
  background: rgba(255, 69, 0, 0.05);
  bottom: -80px; right: -80px;
  animation: float-2 12s ease-in-out infinite alternate;
}

.orb-3 {
  width: 280px; height: 280px;
  background: rgba(224, 155, 61, 0.04);
  top: 40%; right: 10%;
  animation: float-3 9s ease-in-out infinite alternate;
}

@keyframes float-1 { 0% { transform: translate(0, 0); } 100% { transform: translate(60px, 40px); } }
@keyframes float-2 { 0% { transform: translate(0, 0); } 100% { transform: translate(-50px, -30px); } }
@keyframes float-3 { 0% { transform: translate(0, 0); } 100% { transform: translate(-30px, 50px); } }

/* ── Navigation ──────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(8, 9, 12, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 0.5px solid var(--border-alpha);
  transition: background 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  -webkit-text-fill-color: initial;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text2);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); opacity: 1; }

.nav-lang {
  position: relative;
}

.nav-lang-btn {
  background: var(--glass);
  border: 0.5px solid var(--glass-border);
  border-radius: 8px;
  padding: 6px 12px;
  color: var(--text2);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg3);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 8px;
  min-width: 140px;
  display: none;
  box-shadow: var(--shadow-lg);
}

.nav-lang:hover .nav-lang-dropdown,
.nav-lang.open .nav-lang-dropdown,
.nav-lang-dropdown:hover { display: block; }

.nav-lang-dropdown a {
  display: block;
  padding: 8px 12px;
  color: var(--text2);
  font-size: 0.85rem;
  border-radius: 6px;
  transition: background 0.15s;
}

.nav-lang-dropdown a:hover {
  background: var(--glass);
  color: var(--text);
  opacity: 1;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg2);
    border-bottom: 0.5px solid var(--border);
    padding: 24px;
    gap: 16px;
  }
}

/* ── Hero ────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--glass);
  border: 0.5px solid var(--glass-border);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 20px;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
}

.hero h1 {
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* iPhone frame with real screenshot */
.hero-phone-frame {
  width: 280px;
  height: 572px;
  background: #000;
  border-radius: 44px;
  border: 4px solid #2A2E3A;
  box-shadow:
    var(--shadow-lg),
    0 0 80px rgba(0, 255, 213, 0.08),
    inset 0 0 0 2px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  padding: 12px;
}

.hero-phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #000;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.hero-phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 32px;
  display: block;
}

/* Floating glow behind the phone */
.hero-mockup::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 255, 213, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: float-1 6s ease-in-out infinite alternate;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-phone-frame { width: 220px; height: 450px; border-radius: 36px; }
  .hero-phone-screen { border-radius: 26px; }
}

/* ── Features ────────────────────────────── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 24px;
}

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text3);
}

@media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }

/* ── Vision Test Banner ──────────────────── */

.test-banner {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, rgba(0,255,213,0.06), rgba(255,69,0,0.04));
}

.test-banner-text h2 { margin-bottom: 8px; }

.test-banner-icons {
  display: flex;
  gap: 16px;
  font-size: 3rem;
  opacity: 0.15;
}

@media (max-width: 640px) {
  .test-banner { flex-direction: column; text-align: center; padding: 24px; }
  .test-banner-icons { display: none; }
}

/* ── Pricing ─────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
}

.plan-card {
  padding: 20px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  border: 1.5px solid transparent;
}

.plan-card:hover { border-color: var(--border); }

.plan-card.selected {
  border-color: rgba(224, 155, 61, 0.4);
  background: rgba(224, 155, 61, 0.06);
}

.plan-card.hero-plan {
  grid-column: 1 / -1;
}

.plan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-badge {
  font-size: 0.6rem;
  font-weight: 800;
  color: #fff;
  background: var(--retinal);
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.plan-price {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--text);
}

.plan-card.selected .plan-price { color: var(--gold); }

.plan-detail {
  font-size: 0.8rem;
  color: var(--text3);
}

.plan-trial {
  font-size: 0.8rem;
  color: var(--success);
  margin-top: 4px;
}

.pricing-cta {
  margin-top: 24px;
  text-align: center;
}

.pricing-legal {
  text-align: center;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--text3);
}

/* ── Testimonials ────────────────────────── */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  padding: 24px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text2);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.5;
}

.testimonial-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text3);
}

@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ── Footer ──────────────────────────────── */

.footer {
  border-top: 0.5px solid var(--border);
  padding: 60px 0 40px;
  background: var(--bg2);
}

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

.footer-brand .nav-logo { margin-bottom: 12px; display: inline-block; }
.footer-brand p { font-size: 0.85rem; color: var(--text3); max-width: 260px; }

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text3);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--text2);
  font-size: 0.875rem;
  padding: 4px 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 0.5px solid var(--border);
  font-size: 0.75rem;
  color: var(--text3);
}

.footer-disclaimer {
  font-size: 0.7rem;
  color: var(--text3);
  max-width: 800px;
  margin: 24px auto 0;
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── FAQ / Accordion ─────────────────────── */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 0.5px solid var(--border);
}

.faq-item summary {
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--text3);
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-item p {
  padding: 0 0 20px;
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.6;
}

/* ── Contact Form ────────────────────────── */

.contact-form {
  max-width: 560px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text3);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 0.5px solid var(--glass-border);
  border-radius: var(--radius-xs);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent2);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text3);
}

.form-error {
  font-size: 0.75rem;
  color: var(--error);
  margin-top: 4px;
}

.flash-success {
  padding: 14px 20px;
  background: rgba(34, 197, 94, 0.1);
  border: 0.5px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-sm);
  color: var(--success);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.flash-error {
  padding: 14px 20px;
  background: rgba(239, 68, 68, 0.1);
  border: 0.5px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-sm);
  color: var(--error);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* ── Legal Pages ─────────────────────────── */

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.legal-content h1 {
  margin-bottom: 8px;
}

.legal-content .effective-date {
  color: var(--text3);
  font-size: 0.85rem;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.2rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-content p,
.legal-content li {
  font-size: 0.9rem;
  color: var(--text2);
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

/* ── Vision Test Pages ───────────────────── */

.test-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
}

.test-container {
  max-width: 560px;
  width: 100%;
  padding: 32px;
  text-align: center;
}

.test-instruction {
  font-size: 0.85rem;
  color: var(--text3);
  margin-bottom: 24px;
  padding: 12px 16px;
  background: rgba(0, 255, 213, 0.05);
  border: 0.5px solid rgba(0, 255, 213, 0.15);
  border-radius: var(--radius-xs);
}

.test-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.test-progress-label {
  font-size: 0.8rem;
  color: var(--text3);
  font-weight: 600;
}

.test-progress-bar {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-left: 16px;
  overflow: hidden;
}

.test-progress-fill {
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.test-letters {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.3em;
  margin: 40px 0;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.test-plate {
  margin: 32px auto;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
}

.test-input-group {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
}

.test-input {
  width: 200px;
  padding: 14px 16px;
  background: var(--glass);
  border: 0.5px solid var(--glass-border);
  border-radius: var(--radius-xs);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  outline: none;
  letter-spacing: 0.1em;
}

.test-input:focus { border-color: var(--accent2); }

.test-acuity {
  font-size: 0.85rem;
  color: var(--text3);
  margin-top: 8px;
}

/* ── Results Page ────────────────────────── */

.result-container {
  max-width: 480px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  text-align: center;
}

.result-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 20px;
}

.result-icon.pass {
  background: rgba(34, 197, 94, 0.12);
  border: 2px solid rgba(34, 197, 94, 0.3);
}

.result-icon.fail {
  background: rgba(224, 155, 61, 0.12);
  border: 2px solid rgba(224, 155, 61, 0.3);
}

.result-status {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.result-status.pass { color: var(--success); }
.result-status.fail { color: var(--warning); }

.result-detail {
  padding: 20px;
  margin: 24px 0;
}

.result-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 0.9rem;
}

.result-detail-label { color: var(--text2); }
.result-detail-value { color: var(--text); font-weight: 600; font-family: var(--font-mono); }

.result-cta {
  margin-top: 32px;
}

.result-disclaimer {
  font-size: 0.75rem;
  color: var(--text3);
  margin-top: 24px;
  padding: 12px;
  background: rgba(224, 155, 61, 0.05);
  border: 0.5px solid rgba(224, 155, 61, 0.15);
  border-radius: var(--radius-xs);
}

.result-secondary {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text3);
}

/* ── App Store Badge ─────────────────────── */

.app-store-badge {
  height: 48px;
  transition: opacity 0.2s;
}
.app-store-badge:hover { opacity: 0.8; }

/* ── Animations ──────────────────────────── */

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

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ── Utilities ───────────────────────────── */

.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
