/* ============================================
   SHOULD I BREAK UP? - STYLES v3
   Aesthetic: y2k-meets-editorial. chaotic but
   intentional. maximalist typography energy.
   ============================================ */

:root {
  --bg: #0a0a0f;
  --bg-2: #111118;
  --bg-3: #1a1a24;
  --fg: #f0eeff;
  --fg-muted: #9b97b8;
  --fg-faint: #4a4666;
  --accent: #ff2d55;
  --accent-leave: #ff2d55;
  --accent-stay: #00e5a0;
  --accent-complicated: #ffb800;
  --accent-glow: rgba(255,45,85,0.18);
  --border: rgba(255,255,255,0.07);
  --border-bright: rgba(255,255,255,0.14);
  --card-bg: rgba(255,255,255,0.03);
  --card-bg-hover: rgba(255,255,255,0.06);
  --shadow: rgba(0,0,0,0.6);
  --font-display: 'Syne', sans-serif;
  --font-serif: 'Instrument Serif', serif;
  --font-mono: 'Space Mono', monospace;
  --tr: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --glow: 0 0 40px rgba(255,45,85,0.25);
}

[data-theme="light"] {
  --bg: #f5f3ff;
  --bg-2: #ede9ff;
  --bg-3: #e4defc;
  --fg: #0d0b1a;
  --fg-muted: #5a5275;
  --fg-faint: #a09ab8;
  --accent: #e8002d;
  --accent-leave: #e8002d;
  --accent-stay: #007a57;
  --accent-complicated: #b07800;
  --accent-glow: rgba(232,0,45,0.1);
  --border: rgba(0,0,0,0.08);
  --border-bright: rgba(0,0,0,0.15);
  --card-bg: rgba(255,255,255,0.7);
  --card-bg-hover: rgba(255,255,255,0.9);
  --shadow: rgba(0,0,0,0.12);
  --glow: 0 0 40px rgba(232,0,45,0.15);
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  padding-bottom: 72px;
  transition: background var(--tr), color var(--tr);
  /* subtle noise texture */
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}

.hidden { display: none !important; }

/* ---- AD BANNERS ---- */
.ad-banner {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  gap: 4px;
  position: relative;
}
.ad-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
  font-family: var(--font-mono);
}
.ad-placeholder {
  width: 100%;
  max-width: 320px;
  height: 50px;
  border: 1px dashed var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--fg-faint);
  border-radius: 3px;
  font-family: var(--font-mono);
}
.ad-top .ad-placeholder { max-width: 728px; height: 90px; }
.ad-middle .ad-placeholder { max-width: 468px; height: 60px; }
.ad-middle {
  margin: 24px 0 40px;
  border: 1px solid var(--border);
  border-radius: 6px;
}
.ad-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-top: 1px solid var(--border-bright);
  border-bottom: none;
  box-shadow: 0 -8px 40px var(--shadow);
}
.ad-close {
  position: absolute;
  top: 4px;
  right: 8px;
  background: none;
  border: 1px solid var(--border-bright);
  color: var(--fg-faint);
  font-size: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
}
.ad-close:hover { background: var(--border-bright); color: var(--fg); }

/* ---- LAYOUT ---- */
.site-wrapper { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* ---- HEADER ---- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 20px;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-should { color: var(--fg-muted); }
.logo-i { color: var(--accent); font-style: italic; }
.logo-break { color: var(--fg); }
.logo-up { color: var(--accent); }
.logo-dot { color: var(--fg-faint); }

/* ---- THEME TOGGLE ---- */
.theme-toggle {
  background: none;
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  cursor: pointer;
  padding: 0;
  height: 28px;
}
.toggle-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
}
.t-icon {
  font-size: 11px;
  color: var(--fg-faint);
  line-height: 1;
}
.t-track {
  width: 28px;
  height: 14px;
  background: var(--border-bright);
  border-radius: 10px;
  position: relative;
}
.t-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform var(--tr);
}
[data-theme="light"] .t-thumb { transform: translateX(14px); }

/* ---- HERO ---- */
#sectionIntro { padding: 60px 0 0; position: relative; overflow: hidden; }

.hero-wrap { position: relative; z-index: 1; padding-bottom: 80px; }

.eyebrow-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.6s ease both;
}

.hero-headline {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 17vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.line-plain {
  display: block;
  color: var(--fg);
  animation: fadeSlideUp 0.6s 0.1s ease both;
}

.line-italic {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
  text-shadow: var(--glow);
  animation: fadeSlideUp 0.6s 0.2s ease both;
}

.hero-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 28px;
  font-weight: 400;
  animation: fadeSlideUp 0.6s 0.3s ease both;
}

.intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  animation: fadeSlideUp 0.6s 0.35s ease both;
}
.tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  padding: 5px 12px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  box-shadow: 0 0 0 0 rgba(255,45,85,0.4);
  animation: fadeSlideUp 0.6s 0.4s ease both;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,45,85,0.4);
}
.cta-arrow { font-style: normal; font-size: 16px; }

/* ---- DECORATIVE BACKGROUND WORDS ---- */
.hero-deco {
  position: absolute;
  right: -20px;
  top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.deco-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 12vw, 88px);
  letter-spacing: -0.03em;
  line-height: 0.95;
  opacity: 0.04;
  color: var(--fg);
}
.deco-1 { animation: float1 6s ease-in-out infinite; }
.deco-2 { animation: float1 7s 1s ease-in-out infinite; }
.deco-3 { animation: float1 5s 2s ease-in-out infinite; }

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

/* ---- QUIZ ---- */
#sectionQuiz { padding-top: 8px; }

.quiz-header { padding: 32px 0 20px; }

.progress-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.progress-track {
  flex: 1;
  height: 2px;
  background: var(--border-bright);
  border-radius: 2px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
  box-shadow: 0 0 8px var(--accent);
}
.progress-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
  white-space: nowrap;
  flex-shrink: 0;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 7vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.step-subtitle {
  font-size: 13px;
  color: var(--fg-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

/* ---- OPTIONS GRID ---- */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 8px;
  margin-bottom: 8px;
}

.option-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border-bright);
  border-radius: 8px;
  padding: 14px 14px;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: border-color 0.15s, background 0.15s, transform 0.1s, box-shadow 0.15s;
  font-family: var(--font-display);
}
.option-card:hover {
  border-color: rgba(255,255,255,0.25);
  background: var(--card-bg-hover);
  transform: translateY(-1px);
}
.option-card.selected {
  border-color: var(--accent);
  background: var(--accent-glow);
  box-shadow: 0 0 20px rgba(255,45,85,0.12);
}
.option-card.selected .opt-label { color: var(--fg); }
.option-card.selected::after {
  content: 'x';
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 10px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 700;
}

.opt-emoji { font-size: 18px; flex-shrink: 0; line-height: 1.4; }
.opt-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.45;
  flex: 1;
  font-weight: 400;
  transition: color 0.15s;
}

/* ---- QUIZ NAV ---- */
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 48px;
  gap: 12px;
}
.nav-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.1s;
  border: 1px solid var(--border-bright);
  background: none;
  color: var(--fg-muted);
}
.nav-btn:hover:not(:disabled) {
  background: var(--card-bg-hover);
  color: var(--fg);
}
.btn-next {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-weight: 700;
  padding: 14px 36px;
  font-size: 12px;
}
.btn-next:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,45,85,0.35);
}
.btn-next:disabled { opacity: 0.3; cursor: not-allowed; transform: none; }
.btn-back { visibility: hidden; }

/* ---- LOADING ---- */
#sectionLoading { padding: 80px 0; }

.loading-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}
.loading-pulse {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: pulseOut 2s ease-out infinite;
}
.r1 { width: 80px; height: 80px; animation-delay: 0s; }
.r2 { width: 80px; height: 80px; animation-delay: 0.4s; }
.r3 { width: 80px; height: 80px; animation-delay: 0.8s; }
@keyframes pulseOut {
  0% { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(2); opacity: 0; }
}
.pulse-emoji {
  font-size: 28px;
  position: relative;
  z-index: 1;
  animation: heartbeat 1.5s ease-in-out infinite;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

.loading-copy { display: flex; flex-direction: column; gap: 6px; }
.load-line1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 9vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  animation: fadeSlideUp 0.5s ease both;
}
.load-line2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 5vw, 36px);
  color: var(--fg-muted);
  line-height: 1.1;
  animation: fadeSlideUp 0.5s 0.3s ease both;
}

/* ---- SHARE CARD / RESULT ---- */
#sectionResult { padding: 40px 0 20px; }

.share-card {
  background: var(--bg-2);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  padding: 36px 36px 40px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.share-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--verdict-color, var(--accent));
  box-shadow: 0 0 20px var(--verdict-color, var(--accent));
}
.share-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--verdict-color, var(--accent)) 0%, transparent 70%);
  opacity: 0.05;
  pointer-events: none;
}

.card-watermark {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 24px;
}

.verdict-block {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(72px, 20vw, 148px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.verdict-block span {
  display: block;
  animation: revealUp 0.55s cubic-bezier(0.16,1,0.3,1) both;
}
.verdict-block span:nth-child(2) { animation-delay: 0.07s; }
.verdict-block span:nth-child(3) { animation-delay: 0.14s; }

.verdict-leave span { color: var(--accent-leave); text-shadow: 0 0 40px rgba(255,45,85,0.3); }
.verdict-stay span { color: var(--accent-stay); text-shadow: 0 0 40px rgba(0,229,160,0.3); }
.verdict-complicated span { color: var(--accent-complicated); text-shadow: 0 0 40px rgba(255,184,0,0.3); }

.verdict-reason {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(17px, 4vw, 22px);
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 20px;
  max-width: 500px;
  animation: revealUp 0.5s 0.2s cubic-bezier(0.16,1,0.3,1) both;
}
.verdict-detail {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 20px;
  animation: revealUp 0.5s 0.3s cubic-bezier(0.16,1,0.3,1) both;
}
.verdict-detail p { margin-bottom: 10px; }
.verdict-detail p:last-child { margin-bottom: 0; }

.verdict-closing {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-faint);
  padding-top: 16px;
  border-top: 1px solid var(--border);
  animation: revealUp 0.4s 0.4s cubic-bezier(0.16,1,0.3,1) both;
}

/* ---- RESULT ACTIONS ---- */
.result-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.ghost-btn {
  background: none;
  border: 1px solid var(--border-bright);
  color: var(--fg-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.ghost-btn:hover { background: var(--card-bg-hover); color: var(--fg); }

.share-row { display: flex; gap: 8px; flex-wrap: wrap; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--border-bright);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  background: none;
  color: var(--fg);
}
.btn-whatsapp { border-color: #25D366; color: #25D366; }
.btn-whatsapp:hover { background: #25D366; color: #fff; }
.btn-twitter { border-color: var(--fg-muted); }
.btn-twitter:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.btn-image { border-color: var(--accent); color: var(--accent); }
.btn-image:hover { background: var(--accent); color: #fff; }

.result-disclaimer {
  font-size: 11px;
  color: var(--fg-faint);
  line-height: 1.65;
  font-family: var(--font-mono);
  margin-bottom: 32px;
}

/* ---- ERROR STATES ---- */
.error-state {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(22px, 6vw, 38px);
  color: var(--fg-muted);
  line-height: 1.3;
  padding: 20px 0;
}
.error-sub {
  font-size: 14px;
  color: var(--fg-faint);
  margin-top: 12px;
  line-height: 1.6;
  font-family: var(--font-mono);
}

/* ---- SEO SECTION ---- */
.seo-section {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
}
.seo-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 8vw, 56px);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1;
}
.seo-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 48px;
}
.seo-body p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 580px;
}
.seo-body strong { color: var(--fg); font-weight: 700; }

/* ---- FAQ ---- */
.faq-block {
  margin-bottom: 52px;
}
.faq-title {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 20px;
}
.faq-item {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.faq-a {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ---- SIGNS GRID ---- */
.signs-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 16px;
}
.signs-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 10px;
}
.sign-card {
  padding: 20px 18px;
  border: 1px solid var(--border-bright);
  border-radius: 8px;
  background: var(--card-bg);
}
.sign-card-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sign-leave .sign-card-label { color: var(--accent-leave); }
.sign-stay .sign-card-label { color: var(--accent-stay); }
.sign-complicated .sign-card-label { color: var(--accent-complicated); }

.sign-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.sign-card li {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
  font-family: var(--font-display);
}
.sign-card li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--fg-faint);
  font-family: var(--font-mono);
}

/* ---- INFO STRIP ---- */
.info-strip {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-card { display: flex; gap: 16px; align-items: flex-start; }
.info-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.info-text { display: flex; flex-direction: column; gap: 3px; }
.info-text strong {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
}
.info-text span {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ---- SISTER SITES ---- */
.sister-sites {
  border-top: 1px solid var(--border);
  padding: 24px 0 32px;
}
.sister-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 12px;
}
.sister-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}
.sister-link {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.sister-link:hover { color: var(--accent); }
.sister-sep {
  color: var(--fg-faint);
  font-family: var(--font-mono);
  font-size: 11px;
}

/* ---- FOOTER ---- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-disclaimer {
  font-size: 12px;
  color: var(--fg-faint);
  line-height: 1.7;
  font-family: var(--font-mono);
  max-width: 580px;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--fg-faint);
  opacity: 0.6;
}

/* ---- TOAST ---- */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--fg);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border-radius: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  white-space: nowrap;
  z-index: 200;
}
.toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---- ANIMATIONS ---- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- DESKTOP ---- */
@media (min-width: 640px) {
  body { padding-bottom: 0; }
  .ad-sticky { display: none; }
  .toast { bottom: 32px; }
  .info-strip { flex-direction: row; gap: 24px; }
  .info-card { flex: 1; }
}

/* ---- MOBILE ---- */
@media (max-width: 480px) {
  .options-grid { grid-template-columns: 1fr; }
  .progress-wrap { flex-direction: column-reverse; align-items: flex-start; gap: 10px; }
  .progress-track { width: 100%; }
  .share-card { padding: 24px 20px 28px; }
  .hero-deco { display: none; }
}
