/* ============================================
   GREAT LIFE LESSONS — Main Stylesheet
   Deep Navy + Warm Gold Premium Design
   ============================================ */

:root {
  --navy: #0A0F1E;
  --navy-mid: #111827;
  --navy-card: #141B2D;
  --navy-border: #1E2A40;
  --gold: #C9A84C;
  --gold-light: #E8C96D;
  --gold-dark: #A8892A;
  --white: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-300: #CBD5E1;
  --gray-500: #64748B;
  --gray-700: #334155;
  --success: #22C55E;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-gold: 0 0 0 1px rgba(201,168,76,0.2), 0 8px 32px rgba(201,168,76,0.08);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

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

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

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

/* ---- Utility ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--ghost {
  background: transparent;
  color: var(--gray-300);
}
.btn--ghost:hover { color: var(--white); }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; border-radius: 10px; }
.btn--sm { padding: 0.45rem 1rem; font-size: 0.8rem; }
.btn--full { width: 100%; justify-content: center; }

/* ---- Navigation ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(10,15,30,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--navy-border);
}
.nav__inner {
  max-width: 1180px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 2rem;
}
.nav__logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  flex-shrink: 0;
}
.nav__links {
  display: flex; list-style: none; gap: 2rem; margin-left: auto;
}
.nav__links a {
  color: var(--gray-300); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__cta { display: flex; align-items: center; gap: 0.75rem; margin-left: 1rem; }
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  background: var(--navy-card);
  border-top: 1px solid var(--navy-border);
  padding: 1.5rem;
}
.nav__mobile ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.nav__mobile a { color: var(--gray-300); text-decoration: none; font-weight: 500; }
.nav__mobile a:hover { color: var(--white); }

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 10rem 0 4rem;
  overflow: hidden;
  min-height: 100vh;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
#waveform {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.3;
}
.hero__gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%),
              linear-gradient(to bottom, rgba(10,15,30,0) 0%, var(--navy) 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 800px; margin: 0 auto;
}
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  padding: 0.4rem 1rem; border-radius: 99px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em;
}
.hero__badge { margin-bottom: 1.5rem; }
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero__headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 1.15rem; color: var(--gray-300);
  max-width: 560px; margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero__social-proof {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  color: var(--gray-500); font-size: 0.85rem;
}
.avatars { display: flex; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--navy);
  margin-left: -8px; background: var(--navy-card);
}
.avatars .avatar:first-child { margin-left: 0; }
.hero__social-proof strong { color: var(--white); }

/* Hero Demo */
.hero__demo {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 280px;
  gap: 1.5rem; margin-top: 4rem;
}
.demo-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.demo-card__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.75rem;
}
.demo-card__platform {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--gray-300); font-weight: 500;
}
.demo-card__tag {
  background: rgba(201,168,76,0.1);
  color: var(--gold); font-size: 0.75rem; font-weight: 600;
  padding: 0.2rem 0.6rem; border-radius: 99px;
}
.demo-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem;
}
.idea-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.idea-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 0.75rem; border-radius: 8px;
  background: rgba(255,255,255,0.02);
  border: 1px solid transparent;
  transition: all var(--transition);
  cursor: default;
}
.idea-item:hover { border-color: var(--navy-border); background: rgba(255,255,255,0.04); }
.idea-item__bullet {
  font-size: 0.7rem; font-weight: 700; color: var(--gold);
  background: rgba(201,168,76,0.1);
  border-radius: 4px; padding: 0.2rem 0.45rem;
  flex-shrink: 0; margin-top: 2px;
  letter-spacing: 0.05em;
}
.idea-item__content { flex: 1; }
.idea-item__content p { font-size: 0.88rem; color: var(--gray-300); margin-bottom: 0.5rem; }
.idea-item__actions { display: flex; gap: 0.5rem; align-items: center; }
.timestamp-btn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.78rem; font-weight: 600; color: var(--gold);
  text-decoration: none;
  background: rgba(201,168,76,0.08);
  padding: 0.25rem 0.6rem; border-radius: 99px;
  border: 1px solid rgba(201,168,76,0.2);
  transition: all var(--transition);
}
.timestamp-btn:hover { background: rgba(201,168,76,0.18); border-color: var(--gold); }
.add-todo-btn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.78rem; font-weight: 600; color: var(--gray-500);
  background: none; border: 1px solid var(--navy-border);
  padding: 0.25rem 0.6rem; border-radius: 99px; cursor: pointer;
  transition: all var(--transition); font-family: var(--font-body);
}
.add-todo-btn:hover { color: var(--white); border-color: var(--gray-500); }
.demo-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--navy-border);
}
.demo-card__more { font-size: 0.8rem; color: var(--gray-500); }

/* Mini TODO Panel */
.demo-todo {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  height: fit-content;
}
.demo-todo__header {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 700;
  color: var(--gold); margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--navy-border);
}
.todo-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.todo-empty { font-size: 0.8rem; color: var(--gray-700); text-align: center; padding: 1rem 0; font-style: italic; }
.todo-list-item {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.8rem; color: var(--gray-300);
  background: rgba(255,255,255,0.02);
  padding: 0.5rem 0.6rem; border-radius: 6px;
  animation: slideIn 0.3s ease;
}
.todo-list-item svg { flex-shrink: 0; margin-top: 2px; }
@keyframes slideIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ---- Logos ---- */
.logos {
  padding: 3rem 0;
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}
.logos__label { text-align: center; font-size: 0.8rem; color: var(--gray-500); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem; }
.logos__row { display: flex; justify-content: center; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.logo-pill {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--navy-card); border: 1px solid var(--navy-border);
  padding: 0.5rem 1.25rem; border-radius: 99px;
  font-size: 0.85rem; font-weight: 600; color: var(--gray-300);
  transition: all var(--transition);
}
.logo-pill:hover { border-color: rgba(201,168,76,0.3); color: var(--white); }

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 1rem;
}
.section-sub { color: var(--gray-300); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

/* ---- Features ---- */
.features { padding: 6rem 0; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card--large { grid-column: span 2; }
.feature-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.feature-card--accent {
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.02) 100%);
  border-color: rgba(201,168,76,0.15);
}
.feature-card__icon { margin-bottom: 1.25rem; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem;
}
.feature-card p { color: var(--gray-300); font-size: 0.92rem; line-height: 1.65; }
.feature-card__demo { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.mini-chip {
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold); font-size: 0.75rem; font-weight: 600;
  padding: 0.25rem 0.75rem; border-radius: 99px;
}

/* ---- How It Works ---- */
.how-it-works { padding: 6rem 0; background: var(--navy-mid); }
.steps { display: flex; flex-direction: column; gap: 5rem; margin-top: 2rem; }
.step {
  display: grid; grid-template-columns: 60px 1fr 1fr;
  gap: 2rem; align-items: center;
}
.step--reverse { direction: rtl; }
.step--reverse > * { direction: ltr; }
.step__number {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 900;
  color: rgba(201,168,76,0.15); line-height: 1;
}
.step__content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem;
}
.step__content p { color: var(--gray-300); line-height: 1.7; }
.step__visual { display: flex; justify-content: center; }

/* Step Demos */
.step-demo {
  background: var(--navy-card); border: 1px solid var(--navy-border);
  border-radius: var(--radius); padding: 1.5rem;
  width: 100%; max-width: 320px;
}
.step-demo--add { display: flex; align-items: center; gap: 0.75rem; }
.input-mock {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.04); border: 1px solid var(--navy-border);
  border-radius: 6px; padding: 0.5rem 0.75rem;
  font-size: 0.78rem; color: var(--gray-500); flex: 1;
}
.step-demo--process { text-align: center; }
.processing-bar {
  height: 6px; background: var(--navy-border); border-radius: 99px;
  overflow: hidden; margin-bottom: 0.75rem;
}
.processing-fill {
  height: 100%; width: 94%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 99px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }
.processing-label { font-size: 0.8rem; color: var(--gray-300); }
.step-demo--timestamp { display: flex; align-items: center; gap: 1rem; justify-content: center; }
.ts-chip {
  display: flex; align-items: center; gap: 0.4rem;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold); font-size: 0.85rem; font-weight: 600;
  padding: 0.4rem 0.9rem; border-radius: 99px;
}
.ts-arrow { color: var(--gray-500); font-size: 1.2rem; }
.step-demo--todo { display: flex; flex-direction: column; gap: 0.5rem; }
.todo-item-mock {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--gray-300); padding: 0.4rem;
}
.todo-item-mock--done { color: var(--gray-500); text-decoration: line-through; }

/* ---- Testimonials ---- */
.testimonials { padding: 6rem 0; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.testimonial-card--featured {
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0.02) 100%);
  border-color: rgba(201,168,76,0.2);
  transform: scale(1.02);
}
.testimonial-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.testimonial-card--featured:hover { transform: scale(1.02) translateY(-2px); }
.testimonial-card__stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p { color: var(--gray-300); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; color: var(--navy);
  flex-shrink: 0;
}
.testimonial-card__author strong { display: block; font-size: 0.9rem; }
.testimonial-card__author span { font-size: 0.78rem; color: var(--gray-500); }

/* ---- Pricing ---- */
.pricing { padding: 6rem 0; background: var(--navy-mid); }
.pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; align-items: stretch; margin-bottom: 2rem;
}
.pricing-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.pricing-card--popular {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 16px 48px rgba(201,168,76,0.15);
}
.pricing-card--unlimited {
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, rgba(201,168,76,0.01) 100%);
  border-color: rgba(201,168,76,0.2);
}
.pricing-card__badge {
  position: absolute; top: 0; right: 0;
  background: var(--gold); color: var(--navy);
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.35rem 1rem; border-radius: 0 var(--radius-lg) 0 8px;
}
.pricing-card__tier { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 1rem; }
.pricing-card__price { display: flex; align-items: baseline; gap: 0.2rem; margin-bottom: 1rem; }
.price-amount { font-family: var(--font-display); font-size: 3rem; font-weight: 900; line-height: 1; }
.price-period { color: var(--gray-500); font-size: 0.9rem; }
.pricing-card__desc { color: var(--gray-300); font-size: 0.88rem; line-height: 1.65; margin-bottom: 1.75rem; }
.pricing-card__features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; flex: 1; }
.pricing-card__features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--gray-300); }
.pricing-card__feature--muted { color: var(--gray-700) !important; }
.pricing__note { text-align: center; font-size: 0.82rem; color: var(--gray-500); }

/* ---- CTA Banner ---- */
.cta-banner { padding: 6rem 0; }
.cta-banner__inner {
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0.02) 100%);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner__waveform { position: absolute; left: 2rem; top: 50%; transform: translateY(-50%); opacity: 0.3; }
.cta-banner__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; margin-bottom: 1rem;
}
.cta-banner__inner p { color: var(--gray-300); margin-bottom: 2rem; font-size: 1.05rem; }

/* ---- Footer ---- */
.footer { padding: 4rem 0 2rem; border-top: 1px solid var(--navy-border); }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer__brand .nav__logo { margin-bottom: 1rem; font-size: 1rem; }
.footer__brand p { color: var(--gray-500); font-size: 0.85rem; line-height: 1.6; max-width: 220px; }
.footer__links h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-500); margin-bottom: 1rem; }
.footer__links ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { color: var(--gray-300); text-decoration: none; font-size: 0.88rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--navy-border);
  font-size: 0.8rem; color: var(--gray-700);
}

/* ---- Auth Pages ---- */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%),
              var(--navy);
}
.auth-card {
  background: var(--navy-card); border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg); padding: 3rem;
  width: 100%; max-width: 420px;
}
.auth-card__logo { text-align: center; margin-bottom: 2rem; }
.auth-card__logo a { text-decoration: none; }
.auth-card h1 {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 800;
  text-align: center; margin-bottom: 0.5rem;
}
.auth-card__sub { text-align: center; color: var(--gray-500); font-size: 0.9rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray-300); margin-bottom: 0.4rem; }
.form-input {
  width: 100%; padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.04); border: 1.5px solid var(--navy-border);
  border-radius: 8px; color: var(--white);
  font-family: var(--font-body); font-size: 0.92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-input::placeholder { color: var(--gray-700); }
.form-divider {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.78rem; color: var(--gray-700); margin: 1.5rem 0;
}
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--navy-border); }
.google-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  width: 100%; padding: 0.75rem; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: 1.5px solid var(--navy-border);
  color: var(--white); font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition); text-decoration: none;
}
.google-btn:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); }
.auth-card__footer { text-align: center; margin-top: 1.5rem; font-size: 0.85rem; color: var(--gray-500); }
.auth-card__footer a { color: var(--gold); text-decoration: none; font-weight: 600; }
.plan-badge {
  display: flex; align-items: center; gap: 0.5rem; justify-content: center;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold); font-size: 0.8rem; font-weight: 600;
  padding: 0.4rem 1rem; border-radius: 99px; margin-bottom: 1.5rem;
}

/* ---- Dashboard Teaser ---- */
.dashboard-page {
  min-height: 100vh;
  background: var(--navy);
  padding-top: 80px;
}
.dashboard-coming {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; min-height: calc(100vh - 80px);
  text-align: center; padding: 2rem;
}
.dashboard-coming h1 {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem;
}
.dashboard-coming p { color: var(--gray-300); max-width: 400px; margin-bottom: 2rem; }
.dashboard-preview {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 0; height: calc(100vh - 80px); overflow: hidden;
}
.sidebar {
  background: var(--navy-card); border-right: 1px solid var(--navy-border);
  padding: 1.5rem;
}
.sidebar__logo { margin-bottom: 2rem; }
.sidebar__nav { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; }
.sidebar__nav li a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 0.9rem; border-radius: 8px;
  color: var(--gray-300); text-decoration: none; font-size: 0.88rem; font-weight: 500;
  transition: all var(--transition);
}
.sidebar__nav li a:hover, .sidebar__nav li a.active {
  background: rgba(201,168,76,0.08); color: var(--white);
}
.sidebar__nav li a.active { color: var(--gold); }
.main-content { overflow-y: auto; padding: 2rem; }
.dashboard-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.dashboard-header h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.podcast-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.25rem; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero__demo { grid-template-columns: 1fr; }
  .demo-todo { display: none; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--large { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .step { grid-template-columns: 40px 1fr; }
  .step__visual { display: none; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile.open { display: block; }
  .hero { padding: 8rem 0 3rem; }
  .features__grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial-card--featured { transform: none; }
  .pricing__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero__actions { flex-direction: column; align-items: center; }
  .step { grid-template-columns: 1fr; }
  .step__number { font-size: 2rem; }
  .dashboard-preview { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}
@media (max-width: 480px) {
  .auth-card { padding: 2rem 1.5rem; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--navy-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-700); }

/* Focus */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Selection */
::selection { background: rgba(201,168,76,0.25); color: var(--white); }
