/* ============================================
   BREAKUPBUDGET.PAGES.DEV — style.css
   The most emotionally devastating stylesheet
   ever written for a calculator website.
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500;600&family=Space+Mono:wght@400;700&display=swap');

/* ── ROOT TOKENS ── */
:root {
  --dark:    #0D0505;
  --dark2:   #1A0A0A;
  --red:     #C0392B;
  --red2:    #E74C3C;
  --gold:    #D4A017;
  --gold2:   #F0C040;
  --cream:   #F5EFE6;
  --grey:    #8B7B7B;
  --grey2:   #5A4A4A;
  --white:   #FEFEFE;
  --green:   #25D366;
  --purple:  #833AB4;
  --blue:    #1DA1F2;
  --border:  rgba(255,255,255,0.08);
  --border2: rgba(192,57,43,0.3);
  --glass:   rgba(255,255,255,0.03);
  --shadow:  0 8px 32px rgba(0,0,0,0.4);
  --glow-red: 0 0 40px rgba(192,57,43,0.4);
  --glow-gold: 0 0 40px rgba(212,160,23,0.4);
  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'DM Sans', system-ui, sans-serif;
  --ff-mono:  'Space Mono', monospace;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--ff-sans);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; cursor: none; }
button { cursor: none; }
input, textarea { cursor: none; }

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
  opacity: 0.4;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 12px; height: 12px;
  background: var(--red);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.15s ease, opacity 0.2s;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(245,239,230,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.12s ease;
  transform: translate(-50%, -50%);
}
.cursor-ring.hovering { transform: translate(-50%,-50%) scale(1.8); border-color: var(--gold); }
.cursor.hovering { transform: translate(-50%,-50%) scale(0.5); }

/* ── FLOATING HEARTS ── */
#hearts-container { position: fixed; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.fh {
  position: absolute;
  opacity: 0.05;
  animation: floatUp linear infinite;
  font-size: 20px;
}
@keyframes floatUp {
  0%   { transform: translateY(110vh) rotate(0deg);   opacity: 0; }
  8%   { opacity: 0.05; }
  92%  { opacity: 0.05; }
  100% { transform: translateY(-80px) rotate(360deg); opacity: 0; }
}

/* ── TOAST ── */
#toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark2);
  border: 1px solid var(--red);
  color: var(--cream);
  font-family: var(--ff-mono);
  font-size: 12px; letter-spacing: 0.04em;
  padding: 12px 24px;
  border-radius: 100px;
  z-index: 9997;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
  max-width: 90vw; text-align: center;
  box-shadow: var(--glow-red);
}
#toast.show { transform: translateX(-50%) translateY(0); }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 8000;
  display: none;
  align-items: flex-start; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(16px);
  overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal-box {
  max-width: 560px; width: 100%;
  margin: auto;
  position: relative;
  animation: modalIn 0.45s cubic-bezier(0.16,1,0.3,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.88) translateY(40px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute; top: -14px; right: -4px;
  background: rgba(255,255,255,0.1);
  border: none; color: var(--grey);
  font-size: 16px;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; cursor: none;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--red); color: white; }

/* ── SECTION COMMON ── */
.section-eyebrow {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--red2);
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
}
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 700;
  text-align: center;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 40px;
}
.section-title em { color: var(--red); font-style: italic; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 40px 20px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(192,57,43,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 90%, rgba(212,160,23,0.07) 0%, transparent 60%),
    var(--dark);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.35);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 11px; font-family: var(--ff-mono);
  color: var(--red2); letter-spacing: 0.06em;
  margin-bottom: 28px;
  position: relative; z-index: 2;
  animation: fadeUp 0.6s ease both;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--red2); border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(48px, 10vw, 108px);
  font-weight: 900; line-height: 0.88;
  position: relative; z-index: 2;
  animation: fadeUp 0.8s ease 0.15s both;
}
.hero-title .t1 { display: block; color: var(--cream); }
.hero-title .t2 { display: block; color: var(--red); font-style: italic; text-shadow: var(--glow-red); }
.hero-subtitle {
  font-size: clamp(14px, 2vw, 17px);
  color: var(--grey); line-height: 1.7; font-weight: 300;
  max-width: 440px; margin-top: 26px;
  position: relative; z-index: 2;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-cta { margin-top: 40px; position: relative; z-index: 2; animation: fadeUp 0.8s ease 0.45s both; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 56px;
  position: relative; z-index: 2;
  animation: fadeUp 0.8s ease 0.6s both;
}
.hstat { text-align: center; }
.hstat-n { font-family: var(--ff-serif); font-size: 26px; font-weight: 700; color: var(--cream); }
.hstat-l { font-size: 10px; color: var(--grey); font-family: var(--ff-mono); margin-top: 3px; letter-spacing: 0.05em; }
.hstat-div { width: 1px; background: rgba(255,255,255,0.1); align-self: stretch; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  font-family: var(--ff-mono); font-size: 13px; font-weight: 700;
  padding: 16px 36px; border-radius: 100px;
  border: none; cursor: none;
  letter-spacing: 0.03em; text-transform: uppercase;
  transition: all 0.2s ease;
  box-shadow: var(--glow-red), 0 4px 20px rgba(0,0,0,0.3);
}
.btn-primary:hover { background: var(--red2); transform: translateY(-2px); box-shadow: 0 0 60px rgba(192,57,43,0.6), 0 8px 30px rgba(0,0,0,0.4); }

.btn-gold {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), #A0780D);
  color: #1A0A0A; font-family: var(--ff-mono);
  font-size: 15px; font-weight: 700;
  padding: 18px 32px; border-radius: 14px;
  border: none; cursor: none; width: 100%;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: all 0.2s ease;
  box-shadow: var(--glow-gold);
  animation: goldPulse 2.5s ease infinite;
}
@keyframes goldPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(212,160,23,0.5); }
  50%      { box-shadow: 0 4px 50px rgba(212,160,23,0.9), 0 0 0 6px rgba(212,160,23,0.15); }
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(212,160,23,0.8); }

.btn-ghost {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--cream); font-family: var(--ff-mono);
  font-size: 12px; font-weight: 700;
  padding: 11px 20px; border-radius: 100px;
  cursor: none; transition: all 0.2s;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

.btn-red-outline {
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.35);
  color: var(--red2); font-family: var(--ff-mono);
  font-size: 12px; font-weight: 700;
  padding: 11px 20px; border-radius: 100px;
  cursor: none; transition: all 0.2s;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.btn-red-outline:hover { background: rgba(192,57,43,0.2); transform: translateY(-2px); }

/* ── CALCULATOR ── */
#calculator { padding: 80px 20px; max-width: 680px; margin: 0 auto; }
.calc-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  position: relative; overflow: hidden;
}
.calc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,57,43,0.6), transparent);
}
.field-group { margin-bottom: 26px; }
.field-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-family: var(--ff-mono);
  color: var(--grey); letter-spacing: 0.06em;
  margin-bottom: 10px; text-transform: uppercase;
}
.field-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  color: var(--cream); font-family: var(--ff-sans); font-size: 16px;
  outline: none; transition: all 0.2s; cursor: none;
}
.field-input:focus {
  border-color: rgba(192,57,43,0.5);
  background: rgba(192,57,43,0.05);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.field-input::placeholder { color: rgba(255,255,255,0.18); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.range-wrap { position: relative; }
.range-input {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 4px; background: rgba(255,255,255,0.1);
  border-radius: 100px; outline: none; cursor: none; margin-top: 10px;
}
.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  background: var(--red); border-radius: 50%; cursor: none;
  box-shadow: 0 0 12px rgba(192,57,43,0.6);
  transition: transform 0.15s;
}
.range-input::-webkit-slider-thumb:active { transform: scale(1.3); }
.range-val {
  position: absolute; right: 0; top: -2px;
  font-family: var(--ff-mono); font-size: 13px; color: var(--red2);
}
.divider { height: 1px; background: rgba(255,255,255,0.06); margin: 28px 0; }
.calc-submit {
  width: 100%; padding: 18px;
  background: linear-gradient(135deg, var(--red), #6B0F0F);
  color: var(--white); font-family: var(--ff-serif);
  font-size: 20px; font-style: italic; font-weight: 700;
  border: none; border-radius: var(--r-md); cursor: none;
  transition: all 0.3s; letter-spacing: 0.02em;
  box-shadow: 0 8px 30px rgba(192,57,43,0.45);
  position: relative; overflow: hidden;
}
.calc-submit::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
}
.calc-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(192,57,43,0.7); }
.calc-submit:hover::after { opacity: 1; }

/* ── RESULT WRAPPER ── */
#result { display: none; padding: 0 20px 40px; max-width: 680px; margin: 0 auto; }
.result-card {
  background: linear-gradient(135deg, rgba(192,57,43,0.1), rgba(13,5,5,0.9));
  border: 1px solid var(--border2);
  border-radius: var(--r-xl);
  padding: 48px 36px;
  text-align: center;
  position: relative; overflow: hidden;
}
.result-card::before {
  content: ''; position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(192,57,43,0.07) 0%, transparent 55%);
  animation: rotateBg 10s linear infinite;
}
@keyframes rotateBg { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.result-inner { position: relative; z-index: 2; }

/* ── BIG NUMBER ── */
.verdict-label {
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.22em; color: var(--red2);
  text-transform: uppercase; margin-bottom: 14px;
}
.big-amount {
  font-family: var(--ff-serif);
  font-size: clamp(58px, 13vw, 100px);
  font-weight: 900; color: var(--cream); line-height: 1;
  text-shadow: 0 0 60px rgba(192,57,43,0.45);
}
.amount-sub {
  font-size: 15px; color: var(--grey); margin-top: 8px; font-weight: 300;
}

/* ── ROAST BOX ── */
.roast-box {
  margin-top: 28px; padding: 22px 24px;
  background: rgba(0,0,0,0.38);
  border-radius: var(--r-md);
  border-left: 3px solid var(--red);
  font-family: var(--ff-serif);
  font-size: clamp(14px, 2.5vw, 18px);
  font-style: italic; color: var(--cream);
  line-height: 1.65; text-align: left;
  position: relative;
}
.roast-box::before {
  content: '"'; font-size: 52px; color: var(--red);
  opacity: 0.25; position: absolute; top: -8px; left: 14px;
  font-family: var(--ff-serif); line-height: 1;
}
.roast-refresh {
  display: flex; align-items: center; justify-content: flex-end; gap: 5px;
  margin-top: 12px; font-family: var(--ff-mono); font-size: 11px;
  color: var(--red2); cursor: none; opacity: 0.65;
  transition: opacity 0.2s; letter-spacing: 0.04em;
}
.roast-refresh:hover { opacity: 1; }

/* ── PHASE 1 TEASE ── */
.tease-section {
  margin-top: 32px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(212,160,23,0.22);
  border-radius: 20px;
  padding: 28px;
  position: relative; overflow: hidden;
}
.tease-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.tease-headline {
  font-family: var(--ff-serif);
  font-size: clamp(19px, 3.5vw, 26px);
  color: var(--cream); line-height: 1.35; margin-bottom: 8px;
}
.tease-headline em { color: var(--gold); font-style: italic; }
.tease-body {
  font-size: 13px; color: var(--grey); line-height: 1.65; margin-bottom: 20px;
}
/* blurred breakdown grid */
.blur-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 8px;
  margin: 14px 0; filter: blur(5px);
  user-select: none; pointer-events: none; opacity: 0.45;
}
.blur-cell {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 12px 8px; text-align: center;
}
.blur-icon { font-size: 16px; margin-bottom: 4px; }
.blur-val { font-family: var(--ff-mono); font-size: 12px; color: var(--cream); font-weight: 700; }
.blur-lbl { font-size: 10px; color: var(--grey); margin-top: 2px; }
/* blurred equiv pills */
.blur-pills {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin: 14px 0; filter: blur(5px);
  user-select: none; pointer-events: none; opacity: 0.4;
}
.blur-pill {
  background: rgba(212,160,23,0.12); border: 1px solid rgba(212,160,23,0.25);
  border-radius: 100px; padding: 5px 14px; font-size: 12px; color: var(--gold);
}
/* lock section */
.lock-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 0;
}
.lock-icon { font-size: 34px; animation: lockBounce 2.2s ease infinite; }
@keyframes lockBounce { 0%,100%{transform:scale(1)} 50%{transform:scale(1.1)} }
.lock-label {
  font-family: var(--ff-mono); font-size: 12px;
  color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase;
}
.lock-sublabel {
  font-size: 12px; color: var(--grey); text-align: center; line-height: 1.55;
  max-width: 320px;
}
/* what's inside list */
.inside-list { display: flex; flex-direction: column; gap: 8px; margin: 16px 0; text-align: left; }
.inside-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--grey); line-height: 1.45; }
.inside-item-icon { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.inside-item span b { color: var(--cream); font-weight: 500; }
/* pay button wrapper */
.pay-wrapper { margin-top: 20px; }
.pay-hint {
  font-family: var(--ff-mono); font-size: 10px;
  color: rgba(255,255,255,0.18); margin-top: 8px; text-align: center;
  letter-spacing: 0.04em;
}

/* ── PAY VERIFICATION POPUP ── */
.pay-verify-popup {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--dark2); border: 1px solid rgba(212,160,23,0.4);
  border-radius: 18px; padding: 22px;
  max-width: 290px; z-index: 7000;
  animation: slideInRight 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
@keyframes slideInRight {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
.pvp-title { font-family: var(--ff-mono); font-size: 11px; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.pvp-body  { font-size: 12px; color: var(--grey); line-height: 1.55; margin-bottom: 14px; }
.pvp-yes {
  width: 100%; background: linear-gradient(135deg,var(--gold),#A0780D);
  color: #1A0A0A; font-family: var(--ff-mono); font-size: 12px; font-weight: 700;
  padding: 10px; border-radius: 10px; border: none; cursor: none;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px;
  transition: all 0.2s;
}
.pvp-yes:hover { opacity: 0.9; }
.pvp-no {
  width: 100%; background: none;
  border: 1px solid rgba(255,255,255,0.1); color: var(--grey);
  font-family: var(--ff-mono); font-size: 11px; padding: 8px;
  border-radius: 10px; cursor: none; transition: all 0.2s;
}
.pvp-no:hover { border-color: rgba(255,255,255,0.25); color: var(--cream); }

/* ── PHASE 2: FULL CONTENT ── */
#phase2 { display: none; }
/* breakdown grid */
.breakdown-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(100px,1fr));
  gap: 10px; margin-top: 24px;
}
.bk-cell {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 14px 10px; text-align: center;
}
.bk-icon { font-size: 18px; margin-bottom: 5px; }
.bk-val  { font-family: var(--ff-mono); font-size: 13px; color: var(--cream); font-weight: 700; }
.bk-lbl  { font-size: 10px; color: var(--grey); margin-top: 2px; }
/* equiv box */
.equiv-box {
  margin-top: 20px; padding: 18px 20px;
  background: rgba(212,160,23,0.07); border: 1px solid rgba(212,160,23,0.18);
  border-radius: 16px;
}
.equiv-title { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; }
.equiv-items { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.equiv-item  { background: rgba(212,160,23,0.1); border: 1px solid rgba(212,160,23,0.2); border-radius: 100px; padding: 5px 14px; font-size: 12px; color: var(--gold); }
/* ROI */
.roi-wrap { margin-top: 20px; }
.roi-labels { display: flex; justify-content: space-between; font-family: var(--ff-mono); font-size: 11px; color: var(--grey); margin-bottom: 8px; }
.roi-track  { height: 7px; background: rgba(255,255,255,0.07); border-radius: 100px; overflow: hidden; }
.roi-fill   { height: 100%; background: linear-gradient(90deg,var(--red),var(--gold)); border-radius: 100px; transition: width 1.6s cubic-bezier(0.16,1,0.3,1); width: 0; }

/* ── CERTIFICATE CARD ── */
.cert-card {
  border-radius: 18px; padding: 30px 24px;
  position: relative; overflow: hidden;
  text-align: center;
}
.cert-gloss {
  position: absolute; top: 0; left: 0; right: 0; height: 45%;
  background: linear-gradient(180deg,rgba(255,255,255,0.07),transparent);
  pointer-events: none; border-radius: 18px 18px 0 0;
}
.cert-corner { position: absolute; font-size: 18px; opacity: 0.22; }
.cert-eyebrow { font-family: var(--ff-mono); font-size: 8px; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 12px; opacity: 0.65; }
.cert-title-1 { font-family: var(--ff-serif); font-size: 24px; font-weight: 700; margin-bottom: 2px; }
.cert-title-2 { font-family: var(--ff-serif); font-size: 24px; font-style: italic; margin-bottom: 14px; }
.cert-hr      { height: 1px; opacity: 0.22; margin: 12px 0; }
.cert-certifies { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.5; margin-bottom: 5px; }
.cert-name    { font-family: var(--ff-serif); font-size: 26px; font-style: italic; margin-bottom: 10px; }
.cert-wasted  { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.5; margin-bottom: 6px; }
.cert-amount  { font-family: var(--ff-serif); font-size: 50px; font-weight: 900; line-height: 1; margin-bottom: 8px; }
.cert-punchline { font-family: var(--ff-serif); font-size: 13px; font-style: italic; opacity: 0.65; line-height: 1.5; margin-bottom: 14px; padding: 0 10px; }
.cert-equivs  { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin: 12px 0; }
.cert-equiv-pill { font-size: 10px; padding: 3px 11px; border-radius: 100px; font-family: var(--ff-mono); }
.cert-roi-label { font-family: var(--ff-mono); font-size: 10px; opacity: 0.55; margin-bottom: 6px; letter-spacing: 0.05em; }
.cert-roi-bar  { height: 4px; border-radius: 100px; overflow: hidden; background: rgba(255,255,255,0.1); margin: 0 16px 14px; }
.cert-roi-fill { height: 100%; border-radius: 100px; }
.cert-closing  { font-family: var(--ff-serif); font-size: 13px; font-style: italic; opacity: 0.6; line-height: 1.55; margin-bottom: 14px; padding: 0 14px; }
.cert-seal     { font-size: 32px; margin-bottom: 8px; display: block; }
.cert-stamp    { font-family: var(--ff-mono); font-size: 7px; opacity: 0.18; letter-spacing: 0.07em; }
.cert-style-id { font-family: var(--ff-mono); font-size: 8px; opacity: 0.25; letter-spacing: 0.08em; margin-top: 4px; }
/* cert action buttons */
.cert-actions { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.cert-action {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 700;
  padding: 10px 16px; border-radius: 100px; cursor: none;
  transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.04em; border: none;
}
.cert-action:hover { transform: translateY(-2px); }
.ca-gold  { background: linear-gradient(135deg,var(--gold),#A0780D); color: #1A0A0A; }
.ca-ghost { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); color: var(--cream); }
.ca-red   { background: rgba(192,57,43,0.14); border: 1px solid rgba(192,57,43,0.3); color: var(--red2); }
.cert-share-hint { font-family: var(--ff-mono); font-size: 10px; color: rgba(255,255,255,0.2); text-align: center; margin-top: 10px; letter-spacing: 0.04em; }

/* ── CERT REVEAL SECTION ── */
.cert-reveal-section {
  margin-top: 32px;
  background: linear-gradient(135deg,rgba(212,160,23,0.07),rgba(192,57,43,0.07));
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 20px; padding: 28px; text-align: center;
}
.cert-reveal-section::before {
  display: block; content: '✦  ✦  ✦';
  font-size: 12px; color: var(--gold); opacity: 0.3;
  letter-spacing: 10px; margin-bottom: 14px;
}

/* ── INSTAGRAM SECTION ── */
.insta-section {
  margin-top: 28px;
  background: linear-gradient(135deg,rgba(131,58,180,0.1),rgba(253,29,29,0.1),rgba(252,176,69,0.07));
  border: 1px solid rgba(253,29,29,0.2);
  border-radius: 20px; padding: 28px; text-align: center;
  position: relative; overflow: hidden;
}
.insta-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,#833AB4,#FD1D1D,#FCB045);
}
.lucky-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(252,176,69,0.1); border: 1px solid rgba(252,176,69,0.3);
  border-radius: 100px; padding: 6px 16px;
  font-size: 11px; color: #FCCE45; font-family: var(--ff-mono);
  margin-bottom: 14px; letter-spacing: 0.05em;
}
.lucky-dot { width: 5px; height: 5px; border-radius: 50%; background: #FCCE45; animation: pulse 1.5s ease infinite; }
.insta-heading  { font-family: var(--ff-serif); font-size: 20px; color: var(--cream); margin-bottom: 8px; line-height: 1.35; }
.insta-body     { font-size: 13px; color: var(--grey); line-height: 1.65; margin-bottom: 14px; }
.insta-handle   { font-family: var(--ff-mono); font-size: 15px; color: #F77737; font-weight: 700; display: block; margin-bottom: 16px; letter-spacing: 0.02em; }
.insta-buttons  { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.btn-insta-main {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg,#833AB4,#FD1D1D,#FCB045);
  color: white; font-family: var(--ff-mono); font-size: 12px; font-weight: 700;
  padding: 12px 24px; border-radius: 100px; border: none; cursor: none;
  transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.04em; text-decoration: none;
}
.btn-insta-main:hover { transform: translateY(-2px); opacity: 0.9; }
.lucky-info-box {
  margin-top: 16px; padding: 14px 18px;
  background: rgba(252,176,69,0.05); border: 1px solid rgba(252,176,69,0.14);
  border-radius: 12px; font-size: 12px; color: var(--grey); line-height: 1.65;
}
.lucky-info-box b { color: #FCCE45; }

/* ── TIP JAR ── */
.tip-section {
  margin-top: 24px;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 18px; padding: 24px; text-align: center;
}
.tip-heading { font-family: var(--ff-serif); font-size: 18px; font-style: italic; color: var(--cream); margin-bottom: 6px; }
.tip-body    { font-size: 13px; color: var(--grey); line-height: 1.55; margin-bottom: 18px; }
.tip-grid    { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
.tip-btn {
  display: inline-block; text-align: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  color: var(--cream); font-family: var(--ff-mono); font-size: 12px; font-weight: 700;
  padding: 10px 16px; border-radius: 12px; cursor: none;
  transition: all 0.2s; text-decoration: none; line-height: 1.4;
}
.tip-btn:hover { background: rgba(212,160,23,0.14); border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.tip-note { font-family: var(--ff-mono); font-size: 10px; color: rgba(255,255,255,0.14); letter-spacing: 0.04em; }

/* ── DOMAIN FUND ── */
.domain-section {
  margin-top: 20px;
  background: linear-gradient(135deg,rgba(192,57,43,0.05),rgba(139,26,26,0.05));
  border: 1px solid rgba(192,57,43,0.16);
  border-radius: 18px; padding: 24px; text-align: center;
}
.domain-heading { font-family: var(--ff-serif); font-size: 17px; color: var(--cream); margin-bottom: 6px; }
.domain-body    { font-size: 13px; color: var(--grey); line-height: 1.6; margin-bottom: 16px; }
.btn-domain {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192,57,43,0.1); border: 1px solid rgba(192,57,43,0.3);
  color: var(--red2); font-family: var(--ff-mono); font-size: 12px; font-weight: 700;
  padding: 12px 24px; border-radius: 100px; cursor: none;
  text-decoration: none; transition: all 0.2s;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.btn-domain:hover { background: rgba(192,57,43,0.2); transform: translateY(-2px); }
.domain-note { font-family: var(--ff-mono); font-size: 10px; color: rgba(255,255,255,0.12); margin-top: 10px; letter-spacing: 0.04em; }

/* ── AFFILIATE ── */
.aff-section { margin-top: 20px; }
.aff-eyebrow { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--grey); text-transform: uppercase; margin-bottom: 10px; }
.aff-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.aff-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 13px; padding: 16px; text-align: center;
  text-decoration: none; transition: all 0.2s; cursor: none; display: block;
}
.aff-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-2px); border-color: rgba(255,255,255,0.14); }
.aff-icon { font-size: 22px; margin-bottom: 6px; }
.aff-name { font-size: 12px; font-weight: 600; color: var(--cream); margin-bottom: 3px; }
.aff-desc { font-size: 11px; color: var(--grey); line-height: 1.4; }
.aff-cta  { display: inline-block; margin-top: 6px; font-family: var(--ff-mono); font-size: 9px; color: var(--red2); letter-spacing: 0.05em; text-transform: uppercase; }

/* ── SHARE SECTION ── */
.share-section { margin-top: 20px; text-align: center; }
.share-label { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--grey); text-transform: uppercase; margin-bottom: 14px; }
.share-buttons { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.btn-share {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 18px; border-radius: 100px; border: 1px solid;
  font-family: var(--ff-mono); font-size: 11px; font-weight: 700;
  cursor: none; transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.03em;
}
.btn-share:hover { transform: translateY(-2px); }
.bs-wa  { background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.3); color: #25D366; }
.bs-tw  { background: rgba(29,161,242,0.1); border-color: rgba(29,161,242,0.3); color: var(--blue); }
.bs-cp  { background: var(--glass); border-color: rgba(255,255,255,0.15); color: var(--cream); }
.btn-recalc {
  display: block; margin: 18px auto 0;
  background: none; border: 1px solid rgba(255,255,255,0.12);
  color: var(--grey); font-family: var(--ff-mono); font-size: 11px;
  padding: 10px 24px; border-radius: 100px; cursor: none;
  transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.05em;
}
.btn-recalc:hover { border-color: rgba(255,255,255,0.3); color: var(--cream); }

/* ── STORIES MARQUEE ── */
.stories-section { padding: 60px 20px; max-width: 900px; margin: 0 auto; }
.marquee-wrap {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg,transparent,black 12%,black 88%,transparent);
  mask: linear-gradient(90deg,transparent,black 12%,black 88%,transparent);
}
.marquee-track { display: flex; gap: 16px; animation: marquee 26s linear infinite; width: max-content; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.story-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 22px;
  min-width: 250px; max-width: 250px; flex-shrink: 0;
}
.story-amount { font-family: var(--ff-serif); font-size: 26px; font-weight: 700; color: var(--red2); margin-bottom: 5px; }
.story-text   { font-size: 12px; color: var(--grey); line-height: 1.5; font-style: italic; }
.story-name   { margin-top: 10px; font-family: var(--ff-mono); font-size: 10px; color: rgba(255,255,255,0.22); }

/* ── FAQ ── */
.faq-section  { padding: 60px 20px; max-width: 600px; margin: 0 auto; }
.faq-item     { border-bottom: 1px solid rgba(255,255,255,0.07); padding: 20px 0; cursor: none; }
.faq-question { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--cream); font-weight: 500; gap: 12px; }
.faq-icon     { font-size: 20px; color: var(--red); transition: transform 0.3s; flex-shrink: 0; }
.faq-answer   { font-size: 13px; color: var(--grey); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, margin-top 0.3s; }
.faq-item.open .faq-icon    { transform: rotate(45deg); }
.faq-item.open .faq-answer  { max-height: 240px; margin-top: 12px; }

/* ── FOOTER ── */
footer {
  text-align: center; padding: 40px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-family: var(--ff-mono); font-size: 11px;
  color: rgba(255,255,255,0.18); letter-spacing: 0.05em;
}
footer .footer-brand { font-family: var(--ff-serif); font-size: 20px; font-style: italic; color: var(--cream); margin-bottom: 8px; }
footer .footer-brand span { color: var(--red); }
footer a { color: rgba(255,255,255,0.25); text-decoration: none; }
footer a:hover { color: var(--red2); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .calc-card          { padding: 24px 18px; }
  .field-row          { grid-template-columns: 1fr; }
  .result-card        { padding: 32px 18px; }
  .breakdown-grid     { grid-template-columns: repeat(2,1fr); }
  .share-buttons, .insta-buttons { flex-direction: column; align-items: center; }
  .aff-grid           { grid-template-columns: 1fr; }
  .tip-grid           { flex-direction: column; align-items: center; }
  .hero-stats         { gap: 20px; }
  .blur-grid          { grid-template-columns: repeat(2,1fr); }
  .cert-amount        { font-size: 38px; }
  .cert-card          { padding: 22px 14px; }
  .tease-section      { padding: 20px 16px; }
}