@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

:root {
  --purple: #8b5cf6;
  --purple-deep: #4c1d95;
  --crimson: #e11d48;
  --crimson-deep: #9f1239;
  --pink: #ec4899;
  --gold: #fbbf24;
  --gold-deep: #d97706;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.09);
  --text: #f2edff;
  --text-dim: #9d8fc9;
  --text-faint: #75689f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #040208;
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }

::selection { background: rgba(139, 92, 246, 0.5); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0616; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--purple), var(--pink)); border-radius: 8px; }

/* ===== background orbs (mandatory in every vibe-coded site) ===== */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.32;
  z-index: 0;
  animation: drift 14s ease-in-out infinite alternate;
  pointer-events: none;
}
.orb-1 { width: 520px; height: 520px; background: #5b21b6; top: -120px; left: -100px; }
.orb-2 { width: 420px; height: 420px; background: #9f1239; top: 30%; right: -150px; animation-delay: -4s; }
.orb-3 { width: 300px; height: 300px; background: #b45309; bottom: -80px; left: 30%; opacity: 0.16; animation-delay: -8s; }

@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, -40px) scale(1.15); }
}

.cursor-glow {
  position: fixed;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.12), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: left 0.08s ease, top 0.08s ease;
}

.container { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== nav ===== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 18px;
  flex-wrap: wrap;
}
.logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #a78bfa, #e11d48, #fbbf24);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  white-space: nowrap;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 6px; flex-wrap: wrap; }
.nav-link {
  padding: 9px 16px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dim);
  transition: all 0.2s ease;
}
.nav-link:hover {
  color: #ede9fe;
  background: rgba(139, 92, 246, 0.15);
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.25);
}
.nav-link {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.nav-link.active {
  color: white;
  background: linear-gradient(135deg, rgba(76,29,149,0.6), rgba(225,29,72,0.45));
  box-shadow: 0 0 24px rgba(225, 29, 72, 0.35);
}
.nav-badge {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 13px;
  color: #c4b5fd;
  white-space: nowrap;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

/* ===== hero ===== */
.hero { text-align: center; padding: 100px 0 70px; }
.hero-eyebrow {
  display: inline-block;
  background: linear-gradient(90deg, rgba(139,92,246,0.14), rgba(225,29,72,0.14));
  border: 1px solid rgba(225,29,72,0.45);
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fbbf24;
  margin-bottom: 28px;
  animation: pulse-glow 2s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(42px, 8vw, 82px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ede9fe 0%, #a855f7 30%, #e11d48 68%, #fbbf24 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
  filter: drop-shadow(0 0 34px rgba(225,29,72,0.4)) drop-shadow(0 4px 30px rgba(0,0,0,0.9));
}
.hero .sub {
  margin: 26px auto 0;
  max-width: 660px;
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-dim);
}
.hl {
  color: #fbbf24;
  font-weight: 700;
  text-shadow: 0 0 18px rgba(251,191,36,0.55);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 12px rgba(139,92,246,0.3), 0 0 4px rgba(225,29,72,0.3); }
  50%      { box-shadow: 0 0 34px rgba(225,29,72,0.55); }
}

/* ===== buttons ===== */
.cta-row { display: flex; gap: 18px; justify-content: center; margin-top: 42px; flex-wrap: wrap; }

.btn-primary {
  position: relative;
  padding: 17px 42px;
  border-radius: 14px;
  border: none;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: inherit;
  color: white;
  cursor: pointer;
  background: linear-gradient(135deg, #4c1d95, #9f1239, #e11d48);
  background-size: 150% auto;
  box-shadow: 0 0 28px rgba(225,29,72,0.45), 0 8px 24px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 0.15s ease, box-shadow 0.3s ease, background-position 0.4s ease;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  background-position: right center;
  box-shadow: 0 0 50px rgba(225,29,72,0.65), 0 10px 30px rgba(0,0,0,0.8);
}
.btn-ghost {
  padding: 17px 38px;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 600;
  font-family: inherit;
  color: #d8b4fe;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-ghost:hover { border-color: rgba(167,139,250,0.6); box-shadow: 0 0 24px rgba(139,92,246,0.3); }

/* ===== stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  margin-top: 90px;
}
.stat-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: 22px;
  padding: 34px 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 18px 44px rgba(159,18,57,0.4);
}
.stat-num {
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(135deg, #fbbf24, #e11d48);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 16px rgba(251,191,36,0.35));
}
.stat-label { margin-top: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-faint); }

/* ===== sections ===== */
.section { padding: 100px 0; }
.section-title {
  text-align: center;
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  background: linear-gradient(90deg, #c4b5fd, #e11d48, #fbbf24);
  background-size: 180% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 7s linear infinite;
  filter: drop-shadow(0 3px 24px rgba(0,0,0,0.8));
}
.section-sub {
  text-align: center;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 64px;
  font-size: 17px;
  line-height: 1.7;
}

/* ===== feature cards ===== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.feature-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  border-radius: 26px;
  padding: 40px 32px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 50%), rgba(139,92,246,0.14), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225,29,72,0.5);
  box-shadow: 0 24px 60px rgba(159,18,57,0.35);
}
.feature-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  border-radius: 18px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(76,29,149,0.45), rgba(159,18,57,0.45));
  border: 1px solid rgba(225,29,72,0.4);
  box-shadow: 0 0 24px rgba(225,29,72,0.3), inset 0 1px 0 rgba(255,255,255,0.12);
}
.feature-card h3 { font-size: 21px; margin-bottom: 12px; color: #ede9fe; }
.feature-card p { font-size: 15.5px; line-height: 1.7; color: var(--text-dim); }

/* ===== mega pill ===== */
.pill-wrap { display: flex; justify-content: center; margin-bottom: 70px; }
.mega-pill {
  font-size: 120px;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 44px rgba(225,29,72,0.8)) drop-shadow(0 6px 30px rgba(251,191,36,0.4));
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50%      { transform: translateY(-26px) rotate(6deg); }
}

/* ===== testimonials ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.t-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 34px 30px;
  transition: transform 0.25s ease;
}
.t-card:hover { transform: rotate(1.2deg) scale(1.02); }
.t-stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 16px; }
.t-quote { font-size: 16px; line-height: 1.7; color: #cfc5f0; font-style: italic; }
.t-person { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.t-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  background: linear-gradient(135deg, #4c1d95, #9f1239);
  box-shadow: 0 0 16px rgba(225,29,72,0.5);
  flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: 15px; color: #ede9fe; }
.t-role { font-size: 13px; color: var(--text-faint); }

/* ===== marquee ===== */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(225,29,72,0.25);
  border-bottom: 1px solid rgba(225,29,72,0.25);
  background: linear-gradient(90deg, rgba(76,29,149,0.12), rgba(159,18,57,0.12));
  padding: 16px 0;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.marquee-inner {
  display: inline-block;
  animation: scroll 26s linear infinite;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fbbf24;
  letter-spacing: 2px;
}
.marquee-inner span { margin: 0 34px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== waitlist ===== */
.waitlist {
  text-align: center;
  background: linear-gradient(160deg, rgba(76,29,149,0.22), rgba(159,18,57,0.16));
  border: 1px solid rgba(225,29,72,0.4);
  border-radius: 34px;
  padding: 80px 40px;
  box-shadow: 0 0 70px rgba(159,18,57,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
}
.waitlist h2 {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #c4b5fd, #e11d48, #fbbf24);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
}
.waitlist p { margin: 18px 0 36px; color: var(--text-dim); font-size: 17px; }
.waitlist-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.waitlist input {
  padding: 16px 24px;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.07);
  color: #ede9fe;
  font-size: 16px;
  font-family: inherit;
  width: min(340px, 100%);
  outline: none;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}
.waitlist input:focus {
  border-color: #a78bfa;
  box-shadow: 0 0 0 4px rgba(139,92,246,0.25), 0 0 24px rgba(139,92,246,0.3);
}
.waitlist input::placeholder { color: var(--text-faint); }
.form-msg {
  margin-top: 20px;
  font-size: 15px;
  min-height: 22px;
  color: #86efac;
  text-shadow: 0 0 14px rgba(134,239,172,0.5);
}

/* ===== chat widget ===== */
.chat-fab {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 62px; height: 62px;
  border-radius: 50%;
  border: none;
  font-size: 27px;
  cursor: pointer;
  background: linear-gradient(135deg, #4c1d95, #9f1239);
  box-shadow: 0 0 32px rgba(225,29,72,0.55);
  z-index: 50;
  transition: transform 0.2s ease;
  animation: pulse-glow 2.4s ease-in-out infinite;
}
.chat-fab:hover { transform: scale(1.12) rotate(-8deg); }
.chat-box {
  position: fixed;
  bottom: 100px;
  right: 26px;
  width: 320px;
  background: rgba(20, 12, 40, 0.92);
  border: 1px solid rgba(167,139,250,0.4);
  backdrop-filter: blur(20px);
  border-radius: 22px;
  padding: 22px;
  z-index: 50;
  display: none;
  box-shadow: 0 24px 70px rgba(0,0,0,0.5), 0 0 40px rgba(139,92,246,0.25);
}
.chat-box.open { display: block; animation: pop 0.3s ease; }
@keyframes pop {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.chat-title { font-weight: 800; font-size: 16px; color: #d8b4fe; margin-bottom: 12px; }
.chat-msg {
  background: linear-gradient(135deg, rgba(139,92,246,0.25), rgba(236,72,153,0.2));
  border: 1px solid rgba(167,139,250,0.3);
  border-radius: 14px 14px 14px 4px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #e4defc;
  cursor: pointer;
}
.chat-typing { margin-top: 10px; font-size: 13px; color: var(--text-faint); }
.chat-typing .dots::after { content: ''; animation: dots 1.4s steps(4) infinite; }
@keyframes dots {
  0%   { content: ''; }
  25%  { content: '.'; }
  50%  { content: '..'; }
  75%  { content: '...'; }
}

/* ===== footer ===== */
footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px 44px;
  color: #7d6fae;
  font-size: 14px;
  line-height: 2;
  border-top: 1px solid var(--glass-border);
  margin-top: 40px;
}
footer .stack { color: #fbbf24; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
.footer-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin: 14px 0; }
.footer-links a {
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--text-faint);
  transition: all 0.2s ease;
}
.footer-links a:hover { color: #ede9fe; background: rgba(139,92,246,0.15); }
.heart { animation: beat 1.2s ease-in-out infinite; display: inline-block; }
@keyframes beat {
  0%, 100% { transform: scale(1); }
  25%      { transform: scale(1.25); }
}

/* ===== sparkles ===== */
.sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 60;
  font-size: 18px;
  animation: sparkle-fade 1.1s ease forwards;
}
@keyframes sparkle-fade {
  0%   { transform: scale(0) rotate(0deg); opacity: 1; }
  50%  { transform: scale(1.3) rotate(90deg); opacity: 1; }
  100% { transform: scale(0) rotate(180deg); opacity: 0; }
}

/* ===== toast ===== */
.toast {
  position: fixed;
  bottom: 104px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(20, 12, 40, 0.95);
  border: 1px solid rgba(167,139,250,0.5);
  backdrop-filter: blur(16px);
  color: #ede9fe;
  padding: 14px 26px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 34px rgba(139,92,246,0.4);
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== timeline (grindset routine) ===== */
.timeline { position: relative; max-width: 720px; margin: 0 auto; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #7c3aed, #e11d48, #fbbf24);
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(225,29,72,0.5);
}
.tl-item { position: relative; margin-bottom: 34px; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -37px; top: 8px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9f1239, #fbbf24);
  box-shadow: 0 0 18px rgba(225,29,72,0.9);
}
.tl-time {
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fbbf24;
  text-shadow: 0 0 14px rgba(251,191,36,0.55);
}
.tl-item h3 { font-size: 20px; margin: 6px 0 8px; color: #ede9fe; }
.tl-item p { font-size: 15px; line-height: 1.7; color: var(--text-dim); }

/* ===== tier list ===== */
.tier {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  margin-bottom: 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}
.tier-label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 900;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.tier-content {
  padding: 24px 28px;
  background: var(--glass);
  backdrop-filter: blur(12px);
}
.tier-content ul { list-style: none; }
.tier-content li {
  font-size: 16px;
  padding: 7px 0;
  color: #d8cfee;
  line-height: 1.5;
}
.tier-s .tier-label { background: linear-gradient(135deg, #b45309, #fbbf24); box-shadow: 0 0 44px rgba(251,191,36,0.5); text-shadow: 0 2px 6px rgba(0,0,0,0.5); }
.tier-a .tier-label { background: linear-gradient(135deg, #9f1239, #e11d48); box-shadow: 0 0 44px rgba(225,29,72,0.45); }
.tier-b .tier-label { background: linear-gradient(135deg, #4c1d95, #7c3aed); box-shadow: 0 0 44px rgba(124,58,237,0.45); }
.tier-f .tier-label { background: linear-gradient(135deg, #4b5563, #1f2937); box-shadow: 0 0 34px rgba(75,85,99,0.3); }
.tier:hover { transform: scale(1.01); transition: transform 0.2s ease; }

/* ===== store products ===== */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 26px;
}
.product {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: 26px;
  padding: 30px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.product:hover {
  transform: translateY(-8px) rotate(-0.4deg);
  border-color: rgba(167,139,250,0.5);
  box-shadow: 0 20px 50px rgba(124,58,237,0.35);
}
.product-img {
  font-size: 62px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 22px rgba(168,85,247,0.6));
  animation: float 5s ease-in-out infinite;
}
.product h3 { font-size: 19px; color: #ede9fe; margin-bottom: 10px; }
.product p { font-size: 14px; line-height: 1.65; color: var(--text-dim); flex-grow: 1; }
.product-price {
  margin: 18px 0;
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(135deg, #fbbf24, #e11d48);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.product-price small { font-size: 13px; color: var(--text-faint); -webkit-text-fill-color: var(--text-faint); }
.product .btn-primary { padding: 13px 24px; font-size: 15px; margin-top: auto; }
.sold-out { opacity: 0.55; }
.sold-out .product-img { filter: grayscale(1) drop-shadow(0 0 10px rgba(107,114,128,0.5)); }

/* ===== blog cards ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
}
.blog-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: 26px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-7px);
  border-color: rgba(167,139,250,0.5);
  box-shadow: 0 20px 54px rgba(124,58,237,0.35);
}
.blog-cover {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  background: linear-gradient(135deg, rgba(124,58,237,0.35), rgba(236,72,153,0.25));
  border-bottom: 1px solid var(--glass-border);
}
.blog-body { padding: 26px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 12.5px; color: var(--text-faint); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.blog-card h3 { font-size: 19px; line-height: 1.4; color: #ede9fe; margin-bottom: 12px; }
.blog-card p { font-size: 14.5px; line-height: 1.65; color: var(--text-dim); flex-grow: 1; }
.blog-read {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  color: #d8b4fe;
  transition: all 0.2s ease;
}
.blog-card:hover .blog-read { color: #f0abfc; text-shadow: 0 0 14px rgba(240,171,252,0.6); }

/* ===== blog post page ===== */
.post { max-width: 740px; margin: 0 auto; }
.post-hero { text-align: center; font-size: 100px; margin-bottom: 30px; animation: float 5s ease-in-out infinite; filter: drop-shadow(0 0 40px rgba(168,85,247,0.6)); }
.post h1 {
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 18px;
  background: linear-gradient(90deg, #c4b5fd, #e11d48, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.post-meta { text-align: center; font-size: 14px; color: var(--text-faint); margin-bottom: 46px; }
.post-body h2 { font-size: 25px; color: #ede9fe; margin: 42px 0 16px; }
.post-body p { font-size: 17px; line-height: 1.9; color: #cfc5f0; margin-bottom: 22px; }
.post-body blockquote {
  border-left: 3px solid;
  border-image: linear-gradient(180deg, #e11d48, #fbbf24) 1;
  padding: 6px 0 6px 24px;
  margin: 30px 0;
  font-style: italic;
  font-size: 19px;
  color: #fcd34d;
  text-shadow: 0 0 16px rgba(251,191,36,0.35);
}
.post-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(124,58,237,0.14), rgba(236,72,153,0.08));
  border: 1px solid rgba(167,139,250,0.3);
}
.post-cta p { margin-bottom: 22px; color: var(--text-dim); font-size: 16px; }
.share-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.share-row button {
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: #d8b4fe;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}
.share-row button:hover { border-color: rgba(167,139,250,0.6); box-shadow: 0 0 18px rgba(139,92,246,0.3); }

/* ===== founder ===== */
.founder-hero { text-align: center; padding: 40px 0 10px; }
.founder-avatar {
  width: 160px; height: 160px;
  margin: 0 auto 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 84px;
  background: linear-gradient(135deg, rgba(76,29,149,0.5), rgba(159,18,57,0.5));
  border: 2px solid rgba(251,191,36,0.5);
  box-shadow: 0 0 80px rgba(225,29,72,0.55), 0 0 26px rgba(251,191,36,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
  animation: float 5s ease-in-out infinite;
}
.founder-name {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #c4b5fd, #e11d48, #fbbf24);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
}
.founder-title { color: var(--text-dim); font-size: 18px; margin-top: 10px; }
.credentials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 60px;
}
.cred {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 26px;
  text-align: center;
  transition: transform 0.25s ease;
}
.cred:hover { transform: translateY(-5px) rotate(0.6deg); }
.cred-icon { font-size: 34px; margin-bottom: 12px; filter: drop-shadow(0 0 14px rgba(168,85,247,0.6)); }
.cred h4 { font-size: 16px; color: #ede9fe; margin-bottom: 8px; }
.cred p { font-size: 13.5px; color: var(--text-dim); line-height: 1.6; }
.press {
  max-width: 700px;
  margin: 70px auto 0;
  text-align: center;
}
.press-quote {
  font-size: 19px;
  font-style: italic;
  color: #d8cfee;
  line-height: 1.7;
  padding: 26px 30px;
  border-radius: 22px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  margin-bottom: 18px;
  transition: transform 0.25s ease;
}
.press-quote:hover { transform: scale(1.02); }
.press-src { font-size: 13.5px; color: var(--text-faint); letter-spacing: 1px; text-transform: uppercase; }

/* ===== calculator ===== */
.calc {
  max-width: 640px;
  margin: 0 auto;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  border-radius: 30px;
  padding: 44px 40px;
  box-shadow: 0 24px 60px rgba(124,58,237,0.25);
}
.calc-slider { margin-bottom: 30px; }
.calc-slider label {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  color: #d8cfee;
  margin-bottom: 12px;
}
.calc-slider output {
  color: #fbbf24;
  font-weight: 900;
  text-shadow: 0 0 14px rgba(251,191,36,0.55);
}
.calc-slider input[type=range] {
  width: 100%;
  height: 8px;
  appearance: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #7c3aed, #e11d48);
  outline: none;
  cursor: pointer;
}
.calc-slider input[type=range]::-webkit-slider-thumb {
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: white;
  border: 3px solid #e11d48;
  box-shadow: 0 0 20px rgba(225,29,72,0.9);
  cursor: grab;
}
.calc-result { text-align: center; padding-top: 14px; border-top: 1px solid var(--glass-border); }
.calc-score {
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #fbbf24, #e11d48, #7c3aed);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
  filter: drop-shadow(0 0 30px rgba(251,191,36,0.45));
}
.calc-rank {
  margin-top: 14px;
  font-size: 22px;
  font-weight: 800;
  color: #ede9fe;
}
.calc-desc { margin-top: 10px; font-size: 15px; color: var(--text-dim); line-height: 1.6; }

/* ===== pricing ===== */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: 30px;
  padding: 44px 34px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(124,58,237,0.3); }
.price-card.featured {
  border: 1px solid rgba(167,139,250,0.65);
  background: linear-gradient(160deg, rgba(124,58,237,0.18), rgba(236,72,153,0.12));
  box-shadow: 0 0 50px rgba(124,58,237,0.3);
}
.price-tag {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fbbf24, #e11d48);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(251,191,36,0.3));
}
.price-period { font-size: 14px; color: var(--text-faint); margin: 6px 0 26px; }
.price-card h3 { font-size: 21px; color: #ede9fe; margin-bottom: 6px; }
.price-card .plan-desc { font-size: 14px; color: var(--text-faint); margin-bottom: 26px; line-height: 1.6; }
.price-card ul { list-style: none; text-align: left; margin-bottom: 30px; flex-grow: 1; }
.price-card li {
  font-size: 14.5px;
  padding: 8px 0;
  color: #cfc5f0;
  line-height: 1.5;
}
.price-card li b { color: #ede9fe; }
.plan-hot {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #9f1239, #e11d48, #b45309);
  padding: 6px 18px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: white;
  box-shadow: 0 0 28px rgba(225,29,72,0.6);
  white-space: nowrap;
  animation: pulse-glow 2s ease-in-out infinite;
}

/* ===== generic card row (press, investors, faq) ===== */
.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 28px 30px;
  margin-bottom: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.faq-item:hover { transform: translateX(6px); border-color: rgba(167,139,250,0.5); }
.faq-item h3 { font-size: 18px; color: #ede9fe; margin-bottom: 10px; }
.faq-item p { font-size: 15px; line-height: 1.7; color: var(--text-dim); }

/* ===== auth ===== */
.auth-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: #ede9fe;
  backdrop-filter: blur(8px);
}
.auth-btn:hover { transform: translateY(-2px); }
.auth-github { background: rgba(239, 68, 68, 0.09); border-color: rgba(239,68,68,0.45); }
.auth-github:hover { box-shadow: 0 0 26px rgba(239,68,68,0.35); }
.nav-avatar-img { width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(251,191,36,0.5); }
.nav-account {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(76,29,149,0.5), rgba(159,18,57,0.4));
  border: 1px solid rgba(251,191,36,0.4);
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  color: #fcd34d;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 0 18px rgba(159,18,57,0.3);
}
.nav-account:hover { box-shadow: 0 0 26px rgba(251,191,36,0.35); }

/* ===== locked results ===== */
.calc-result { position: relative; }
.result-lock {
  position: absolute;
  inset: -10px;
  border-radius: 26px;
  background: linear-gradient(160deg, #0d0817, #07030d);
  border: 1px solid rgba(225,29,72,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  gap: 12px;
  z-index: 3;
  box-shadow: 0 24px 60px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.06);
}
.result-lock.hidden { display: none; }
.lock-icon { font-size: 46px; animation: pulse-glow 2.2s ease-in-out infinite; border-radius: 50%; padding: 6px; }
.lock-title {
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 19px;
  color: #fbbf24;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(251,191,36,0.5);
}
.lock-desc { font-size: 13.5px; color: var(--text-dim); max-width: 400px; line-height: 1.6; }
.lock-btns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.lock-btns .auth-btn { width: auto; padding: 11px 22px; margin: 0; font-size: 13.5px; }

@media (max-width: 640px) {
  .mega-pill { font-size: 80px; }
  .hero { padding-top: 60px; }
  .timeline { padding-left: 32px; }
  .tier { grid-template-columns: 64px 1fr; }
  .tier-label { font-size: 22px; }
}
