/* landing.css — SwipeLeft.lol landing page styles */
:root {
  --red: #00BFFF;
  --red-hot: #00BFFF;
  --ink: #0F0E0C;
  --paper: #F7F2EB;
  --cream: #EDE6D8;
  --warm-gray: #9E9690;
  --gold: #C9A84C;
  --white: #FDFCFA;
  --red-glow: rgba(0,191,255,0.25);
  --card-elevated: rgba(255,255,255,0.04);
  --surface-warm: #161210;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Epilogue', sans-serif;
  overflow-x: hidden;
  cursor: default;
}

/* Grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: background 0.3s ease;
}

nav.scrolled { background: rgba(15,14,12,0.95); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: #D4FF00;
  text-decoration: none;
}

.nav-logo span { color: #D4FF00; }

.nav-logo sup {
  font-size: 0.55rem;
  color: #00BFFF;
  vertical-align: super;
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-cta {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Epilogue', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover { background: #00BFFF; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: url('assets/images/ghost_landscape_1792x1024.png');
  background-size: cover;
  background-position: center top;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(0,60,140,0.12) 0%,
    rgba(0,30,80,0.18) 45%,
    rgba(0,0,0,0.52) 100%
  );
  z-index: 1;
}

.hero-left {
  background: transparent;
  padding: 10rem 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  max-width: 680px;
}
/* Hero Roast Button */
.hero-cta {
  display: inline-block;
  background: white;
  color: #00BFFF;
  font-family: 'Epilogue', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.6rem;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 1.5rem;
}

.hero-cta:hover {
  background: var(--ink);
  color: white;
  transform: translateY(-1px);
}
.issue-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.issue-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 2rem;
}

.hero-headline em {
  font-style: italic;
  font-weight: 400;
  display: block;
  color: rgba(255,255,255,0.75);
}

.hero-sub {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 340px;
  margin-bottom: 2.5rem;
}

/* Email form */
.email-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 380px;
}

.email-row {
  display: flex;
  gap: 0;
}

.email-input {
  flex: 1;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-right: none;
  color: white;
  font-family: 'Epilogue', sans-serif;
  font-size: 0.875rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: background 0.2s;
  border-radius: 2px 0 0 2px;
}

.email-input::placeholder { color: rgba(0,255,133,0.5); }
.email-input:focus { background: rgba(255,255,255,0.18); }

.email-submit {
  background: white;
  color: #00BFFF;
  border: none;
  font-family: 'Epilogue', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.25rem;
  cursor: pointer;
  border-radius: 0 2px 2px 0;
  transition: all 0.2s;
  white-space: nowrap;
}

.email-submit:hover { background: var(--ink); color: white; }

.form-note {
  font-size: 0.7rem;
  color: #00FF85;
  letter-spacing: 0.04em;
}

.success-msg {
  display: none;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  color: white;
}

/* Hero right */
.hero-right {
  display: none;
}


.mock-card {
  transform: rotate(1deg);
}
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  transform: rotate(1.5deg);
  transition: transform 0.3s ease;
  max-width: 360px;
  margin: 0 auto;
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: rotate(1.5deg) translateY(0); }
  50% { transform: rotate(1.5deg) translateY(-8px); }
}

.mock-card:hover { transform: rotate(0deg) translateY(-4px); }

.mock-card-header {
  background: #00BFFF;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-score {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mock-verdict {
  background: rgba(0,0,0,0.25);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 3px;
}

.mock-score-num {
  background: rgba(0,0,0,0.2);
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-score-label {
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
}

.mock-score-label span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.7;
}

.mock-verdict {
  background: rgba(0,0,0,0.2);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
}

.mock-card-body {
  padding: 1.25rem;
}

.mock-roast {
  font-size: 0.8rem;
  line-height: 1.5;
  font-style: italic;
  color: #333;
  border-left: 2px solid #00BFFF;
  padding-left: 0.75rem;
  margin-bottom: 0.875rem;
}

.mock-fixes {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
  margin-bottom: 0.875rem;
}

.mock-fix {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #444;
}

.mock-fix-dot {
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: #00BFFF;
  border-radius: 50%;
  color: white;
  font-size: 0.55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.mock-rewrite {
  background: #FFF8E8;
  border: 1px solid #F0E0A0;
  border-radius: 3px;
  padding: 0.625rem 0.75rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #333;
}

.mock-rewrite strong {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00FF85;
  display: block;
  margin-bottom: 0.25rem;
  font-style: normal;
}

/* Floating stat */
.floating-stat {
  position: absolute;
  bottom: 5rem;
  right: 1.5rem;
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 3px;
  text-align: center;
  transform: rotate(-2deg);
}

.floating-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #00BFFF;
  line-height: 1;
}

.floating-stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.2rem;
}

/* ── HOW IT WORKS ── */
.how {
  background: var(--ink);
  padding: 6rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.how::before {
  content: 'HOW';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 20rem;
  color: rgba(255,255,255,0.02);
  top: -2rem;
  left: -1rem;
  line-height: 1;
  pointer-events: none;
}

.section-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #00BFFF;
  margin-bottom: 1rem;
}

.how-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: white;
  max-width: 600px;
  margin: 0 auto 4rem;
  text-align: center;
}

.how-headline em {
  font-style: italic;
  color: #00BFFF;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
  background: rgba(255,255,255,0.02);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.step.visible { opacity: 1; transform: translateY(0); }
.step:nth-child(2) { transition-delay: 0.1s; }
.step:nth-child(3) { transition-delay: 0.2s; }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: block;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
  color: #00FF85;
}

/* ── ROASTS TICKER ── */
.ticker-section {
  background: #0A0908;
  padding: 1.5rem 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(0,191,255,0.2);
  border-bottom: 1px solid rgba(0,191,255,0.2);
}

.ticker-track {
  display: flex;
  gap: 2rem;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes tickerReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes scorePulse {
  0% { opacity: 0; transform: scale(0.85); }
  60% { transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes roastShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

@keyframes redFlicker {
  0%, 100% { box-shadow: 0 0 40px rgba(0,191,255,0.25), 0 0 80px rgba(0,191,255,0.1); }
  50% { box-shadow: 0 0 60px rgba(0,191,255,0.4), 0 0 120px rgba(0,191,255,0.15); }
}

.ticker-item {
  font-family: 'Epilogue', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ticker-item::after {
  content: '//';
  font-style: normal;
  font-size: 0.7rem;
  color: #00BFFF;
  opacity: 0.6;
}

/* ── SOCIAL PROOF ── */
.proof {
  background: #0D0B09;
  padding: 7rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.proof::before {
  content: 'PROOF';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 18rem;
  color: rgba(255,255,255,0.018);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.proof-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.proof-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: white;
  margin-bottom: 0.75rem;
}

.proof-sub {
  color: #00FF85;
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 4rem;
  letter-spacing: 0.03em;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.testi {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid #00BFFF;
  border-radius: 4px;
  padding: 1.75rem 1.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s, transform 0.5s;
  position: relative;
}

.testi::before {
  content: '"';
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: rgba(0,191,255,0.15);
  line-height: 1;
}

.testi.visible { opacity: 1; transform: translateY(0); }
.testi:nth-child(2) { transition-delay: 0.1s; }
.testi:nth-child(3) { transition-delay: 0.2s; }

.testi-quote {
  font-size: 0.92rem;
  line-height: 1.7;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.testi-author {
  font-size: 0.72rem;
  font-weight: 700;
  color: #00FF85;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testi-score {
  display: inline-block;
  background: #00BFFF;
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
  margin-left: 0.4rem;
  vertical-align: middle;
  letter-spacing: 0.04em;
}

/* ── PRICING ── */
.pricing {
  background: #0A0908;
  padding: 7rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.pricing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.pricing-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.05;
}

.pricing-sub {
  color: #00FF85;
  font-size: 0.9rem;
  margin-bottom: 4rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
  align-items: stretch;
}

.plan {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 2.25rem;
  background: rgba(255,255,255,0.03);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.plan:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.plan.featured {
  border-color: #00BFFF;
  background: rgba(0,191,255,0.06);
  box-shadow: 0 0 50px rgba(0,191,255,0.12), 0 25px 60px rgba(0,0,0,0.5);
  animation: redFlicker 3s ease-in-out infinite;
}

.plan.featured:hover {
  box-shadow: 0 0 70px rgba(0,191,255,0.2), 0 30px 70px rgba(0,0,0,0.6);
  transform: translateY(-3px);
}

.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #00BFFF;
  color: white;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 2px;
  white-space: nowrap;
}

.plan-name {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00FF85;
  margin-bottom: 0.75rem;
}

.plan-price {
  font-family: 'Playfair Display', serif;
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.35rem;
  color: white;
}

.plan-price sup {
  font-size: 1.3rem;
  vertical-align: super;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
}

.plan-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.75rem;
  line-height: 1.6;
  font-weight: 300;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.plan-features li {
  font-size: 0.84rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.4;
  color: #D4FF00;
}

.plan-features li::before {
  content: '✓';
  color: #00BFFF;
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  border-radius: 3px;
  font-family: 'Epilogue', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  margin-top: auto;
}

.plan-btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
}

.plan-btn-outline:hover {
  border-color: white;
  color: white;
  background: rgba(255,255,255,0.06);
}

.plan-btn-fill {
  background: #00BFFF;
  color: white;
  box-shadow: 0 6px 24px rgba(0,191,255,0.35);
}

.plan-btn-fill:hover {
  background: #00BFFF;
  box-shadow: 0 10px 32px rgba(0,191,255,0.5);
  transform: translateY(-1px);
}

/* ── FINAL CTA ── */
.final-cta {
  background: #080706;
  padding: 8rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0,191,255,0.2);
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center top, rgba(0,191,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner { max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }

.final-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  color: white;
  margin-bottom: 1.25rem;
}

.final-headline em {
  font-style: italic;
  color: #00BFFF;
}

.final-sub {
  color: #00FF85;
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.final-email-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto 0.75rem;
}

.final-email-input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: white;
  font-family: 'Epilogue', sans-serif;
  font-size: 0.875rem;
  padding: 0.875rem 1rem;
  outline: none;
  border-radius: 2px 0 0 2px;
}

.final-email-input::placeholder { color: rgba(0,255,133,0.5); }

.final-email-submit {
  background: #00BFFF;
  color: white;
  border: none;
  font-family: 'Epilogue', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.875rem 1.5rem;
  cursor: pointer;
  border-radius: 0 2px 2px 0;
  transition: background 0.2s;
  white-space: nowrap;
}

.final-email-submit:hover { background: #00BFFF; }

.final-note {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

.final-success {
  display: none;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  padding: 0.875rem;
  color: white;
  font-size: 0.875rem;
  max-width: 420px;
  margin: 0 auto 0.75rem;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

footer p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}

footer a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.72rem;
  transition: color 0.15s;
}

footer a:hover { color: #00BFFF; }

/* Scroll reveal helper */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Ticker pill */
.ticker-pill {
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 0;
  border-radius: 0;
  font-size: 0.8rem;
  white-space: nowrap;
  font-style: normal;
  font-weight: 400;
}

/* Dual ticker wrapper */
.ticker-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ticker-track-reverse {
  display: flex;
  gap: 2rem;
  animation: tickerReverse 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}

/* Score Shock */
.score-shock {
  background: #080706;
  text-align: center;
  padding: 7rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

.score-shock::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,191,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.score-shock-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #00BFFF;
  margin-bottom: 1.5rem;
  display: block;
  position: relative;
  z-index: 1;
}

.score-shock-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(9rem, 22vw, 18rem);
  font-weight: 900;
  color: #00BFFF;
  line-height: 0.9;
  opacity: 0;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 80px rgba(0,191,255,0.6), 0 0 160px rgba(0,191,255,0.3);
  display: block;
}

.score-shock-number.visible { animation: scorePulse 0.8s ease forwards; }

.score-denom {
  font-size: 0.3em;
  color: #FFFFFF;
  vertical-align: super;
}

.score-shock-sub {
  color: #00FF85;
  font-size: 1rem;
  margin-top: 2rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.score-shock-sub strong {
  color: white;
  font-weight: 700;
}

/* Sample Roast section */
.sample-roast {
  background: #0D0B09;
  padding: 8rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sample-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(0,191,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.sample-roast-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sample-roast .section-eyebrow { color: #00BFFF; margin-bottom: 1.25rem; }

.sample-roast-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: white;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.sample-roast-sub {
  color: #00FF85;
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 0;
  line-height: 1.6;
}

.sample-roast-card {
  margin: 3.5rem auto 0;
  max-width: 560px;
  text-align: center;
  position: relative;
}

.sample-roast-card::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(0,191,255,0.22) 0%, transparent 65%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}

.roast-card-img {
  width: 100%;
  border-radius: 12px;
  transform: rotate(-1deg);
  filter: drop-shadow(0 0 50px rgba(0,191,255,0.4)) drop-shadow(0 30px 70px rgba(0,0,0,0.6));
  transition: transform 0.35s ease, filter 0.35s ease;
  position: relative;
  z-index: 1;
}

.roast-card-img:hover {
  transform: rotate(0deg) scale(1.025);
  filter: drop-shadow(0 0 90px rgba(0,191,255,0.55)) drop-shadow(0 40px 80px rgba(0,0,0,0.7));
}

/* Sticky CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(15,14,12,0.97);
  border-top: 1px solid rgba(0,191,255,0.3);
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  z-index: 200;
  backdrop-filter: blur(10px);
}

.sticky-cta-btn {
  width: 100%;
  background: #00BFFF;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { background-image: url('assets/images/ghost_portrait_1024x1792.png'); }
  .hero-left { padding: 7rem 1.75rem 4rem; }
  body { font-weight: 400; }
  .steps { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .testi:nth-child(3) { display: none; }
  .plans { grid-template-columns: 1fr; }
  .plan.featured, .plan.popular { order: -1; }
  nav { padding: 1rem 1.5rem; }
  .how, .proof, .pricing, .final-cta { padding: 4rem 1.5rem; }
  .final-email-form { flex-direction: column; }
  .final-email-input { border-right: 1px solid rgba(255,255,255,0.15); border-bottom: none; border-radius: 2px 2px 0 0; }
  .final-email-submit { border-radius: 0 0 2px 2px; }
  .sticky-cta { display: block; }
}
/* ── Live result card — landing page sample ──────────────────────── */
.live-result-card {
  background: #161410;
  border: 1px solid #2A2620;
  border-radius: 8px;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 0 1px rgba(0,255,133,0.08), 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(0,255,133,0.06);
  position: relative;
  font-family: 'DM Sans', 'Epilogue', sans-serif;
}

.live-result-card::after {
  content: "SwipeLeft.lol";
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00FF85;
  pointer-events: none;
}

.lrc-header {
  background: #07060A;
  border-left: 4px solid #00FF85;
  border-bottom: 1px solid rgba(0,255,133,0.15);
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.lrc-header::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 50%;
  background: radial-gradient(ellipse at left, rgba(0,255,133,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.lrc-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.lrc-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  flex-shrink: 0;
}

.lrc-score-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 2px solid #00FF85;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0,255,133,0.35), 0 0 40px rgba(0,255,133,0.12);
  flex-shrink: 0;
}

.lrc-score-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  color: white;
  letter-spacing: 0.02em;
}

.lrc-score-lbl {
  font-size: 0.48rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00FF85;
}

.lrc-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lrc-status {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0,191,255,0.18);
  border: 1px solid rgba(0,191,255,0.42);
  color: #ffd0c7;
}

.lrc-status.mid { background: rgba(212,255,0,0.18); border-color: rgba(212,255,0,0.42); color: #ffe08a; }
.lrc-status.bad { background: rgba(255,45,0,0.18); border-color: rgba(255,45,0,0.42); color: #ffb3a6; }

.lrc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.01em;
}

.lrc-sub {
  font-size: 0.75rem;
  color: #00FF85;
  margin-top: 0.1rem;
}

.lrc-stamp {
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  border-radius: 2px;
}

.lrc-badge {
  background: rgba(0,0,0,0.24);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.38rem 0.75rem;
  border-radius: 3px;
}

.lrc-body {
  padding: 1.5rem;
}

.lrc-quote {
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  color: #F5EDE0;
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(0,191,255,0.10), rgba(0,191,255,0.04));
  border: 1px solid rgba(0,191,255,0.24);
  border-left: 4px solid #00BFFF;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.lrc-section-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00FF85;
  margin-bottom: 1rem;
}

.lrc-fix-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.lrc-fix-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.lrc-fix-num {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: #00BFFF;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  flex-shrink: 0;
}

.lrc-fix-text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #F5EDE0;
}

.lrc-fix-text strong { color: #D4FF00; font-weight: 600; }

.lrc-divider { height: 1px; background: #2A2620; margin: 1.5rem 0; }

.lrc-rewrite-section h3 {
  font-family: 'Epilogue', 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00FF85;
  margin-bottom: 0.75rem;
}

.lrc-rewrite-box {
  background: rgba(212,255,0,0.05);
  border: 1px solid rgba(212,255,0,0.2);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #F5EDE0;
  font-weight: 300;
}

.lrc-card-credit {
  margin-top: 1rem;
  font-size: 0.72rem;
  color: rgba(0,255,133,0.5);
  letter-spacing: 0.06em;
  text-align: right;
}

/* Roast card preview image (legacy) */
.mock-card-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}
.hero-left {
  position: relative;
  z-index: 2;
}

.hero-cta {
  display: inline-block;
  background: white;
  color: #00BFFF;
  font-family: 'Epilogue', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.6rem;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 1.5rem;
  position: relative;
  z-index: 5;
  pointer-events: auto;
}

.hero-cta:hover {
  background: var(--ink);
  color: white;
  transform: translateY(-1px);
}

/* ── REDESIGN: Red Flags section ─────────────────────────────────── */
.red-flags-section {
  position: relative;
  background-image: url('assets/images/flags_portrait_1024x1792.png');
  background-size: cover;
  background-position: center;
  padding: 7rem 2.5rem;
  overflow: hidden;
}
.red-flags-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,8,6,0.88);
  z-index: 0;
}
.red-flags-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.red-flags-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: white;
  line-height: 1.1;
  margin-bottom: 3rem;
}
.red-flags-headline em { font-style: italic; color: #00BFFF; }
.flags-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: left;
}
.flag-item {
  background: rgba(0,191,255,0.07);
  border: 1px solid rgba(0,191,255,0.2);
  border-left: 3px solid #00BFFF;
  border-radius: 3px;
  padding: 0.9rem 1.1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .flags-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .flags-grid { grid-template-columns: 1fr; }
}

/* ── REDESIGN: Proof section — swipe image background ─────────────── */
.proof {
  overflow: hidden;
  background-image: url('assets/images/swipe_landscape_1792x1024.png');
  background-size: cover;
  background-position: center;
}
.proof::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,8,6,0.91);
  z-index: 0;
}
.proof { position: relative; }
.proof-inner { position: relative; z-index: 1; }
