/* ===============================
   MICRO READING WAITLIST PAGE
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0d1b3d;
  --green: #4f7a5f;
  --green-soft: #eaf3ed;

  --text: #111111;
  --muted: #344252;
  --soft-muted: #4b5966;

  --cream: #f7f5ef;
  --card: rgba(255, 255, 255, 0.82);

  --border: rgba(13, 27, 61, 0.08);
  --border-strong: rgba(13, 27, 61, 0.12);

  --shadow: 0 28px 70px rgba(0, 0, 0, 0.12);
}

body {
  min-height: 100vh;
  font-family: Georgia, serif;
  color: var(--text);

  background:
    radial-gradient(circle at top left, rgba(79, 122, 95, 0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(13, 27, 61, 0.08), transparent 30%),
    linear-gradient(135deg, #f4f2ef 0%, #e8ebe8 45%, #d6e0dc 100%);
}

/* ===============================
   PAGE LAYOUT
================================ */

.waitlist-page {
  min-height: 100vh;
  padding: 42px 22px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.waitlist-container {
  width: min(1120px, 100%);

  padding: 42px;

  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 34px;

  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ===============================
   NAVIGATION
================================ */

.waitlist-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;

  margin-bottom: 54px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;

  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;

  object-fit: contain;

  background: white;
  border-radius: 14px;

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.brand-text strong {
  display: block;

  color: var(--navy);

  font-size: 22px;
}

.brand-text span {
  color: #52635c;

  font-size: 15px;
}

.back-link {
  padding: 10px 16px;

  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(13, 27, 61, 0.14);
  border-radius: 999px;

  color: var(--navy);

  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  transition: 0.25s ease;
}

.back-link:hover {
  background: var(--navy);
  color: white;
}

/* ===============================
   HERO
================================ */

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-block;

  padding: 8px 13px;
  margin-bottom: 18px;

  background: var(--navy);
  border-radius: 999px;

  color: white;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-text h1 {
  max-width: 760px;

  margin-bottom: 22px;

  color: var(--navy);

  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-text p {
  max-width: 690px;

  margin-bottom: 30px;

  color: #2f3d4c;

  font-size: 24px;
  line-height: 1.62;
  font-weight: 500;
}

/* ===============================
   BENEFITS
================================ */

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;

  margin: 30px 0;
}

.benefit-card {
  padding: 20px;

  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 20px;

  transition: 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.benefit-card strong {
  display: block;

  margin-bottom: 10px;

  color: var(--navy);

  font-size: 19px;
  line-height: 1.25;
}

.benefit-card span {
  color: #3f4e5c;

  font-size: 17px;
  line-height: 1.5;
}

/* ===============================
   HERO VISUAL
================================ */

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 24px;
}

.app-card {
  width: 100%;
  max-width: 340px;

  padding: 26px;

  background: white;
  border: 1px solid var(--border);
  border-radius: 32px;

  text-align: center;

  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

.app-logo {
  width: 140px;
  margin-bottom: 18px;
}

.app-card h2 {
  margin-bottom: 10px;

  color: var(--navy);

  font-size: 28px;
}

.app-card p {
  color: var(--muted);

  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
}

.mascot {
  width: 130px;
  height: auto;
}

/* ===============================
   COMING SECTION
================================ */

.coming-section {
  margin-top: 56px;
  padding-top: 42px;

  border-top: 1px solid rgba(13, 27, 61, 0.10);
}

.coming-header {
  max-width: 780px;
  margin-bottom: 26px;
}

.coming-header h2 {
  margin-bottom: 14px;

  color: var(--navy);

  font-size: 36px;
  line-height: 1.15;
}

.coming-header p {
  color: #344252;

  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
}

.coming-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.coming-card {
  padding: 20px;

  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 22px;

  transition: 0.25s ease;
}

.coming-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.coming-card strong {
  display: block;

  margin-bottom: 8px;

  color: var(--navy);

  font-size: 18px;
  line-height: 1.25;
}

.coming-card span {
  color: #3f4e5c;

  font-size: 16.5px;
  line-height: 1.55;
}

/* ===============================
   UPDATES SECTION
================================ */

.updates-section {
  margin-top: 42px;
  padding: 28px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;

  background:
    linear-gradient(135deg, rgba(13, 27, 61, 0.97), rgba(44, 69, 62, 0.94));
  border-radius: 28px;

  color: white;

  box-shadow: 0 18px 45px rgba(13, 27, 61, 0.18);
}

.updates-section .section-label {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.updates-copy h2 {
  margin-bottom: 14px;

  color: white;

  font-size: 36px;
  line-height: 1.15;
}

.updates-copy p {
  max-width: 660px;

  color: rgba(255, 255, 255, 0.9);

  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
}

.youtube-update-btn {
  flex-shrink: 0;

  padding: 14px 20px;

  background: white;
  border-radius: 999px;

  color: var(--navy);

  font-size: 16px;
  font-weight: 800;
  text-decoration: none;

  transition: 0.25s ease;
}

.youtube-update-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

/* ===============================
   FORM SECTION
================================ */

.form-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;

  margin-top: 56px;
  padding-top: 42px;

  border-top: 1px solid rgba(13, 27, 61, 0.10);
}

.form-intro h2 {
  margin-bottom: 14px;

  color: var(--navy);

  font-size: 34px;
  line-height: 1.15;
}

.form-intro p {
  margin-bottom: 16px;

  color: #344252;

  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
}

.form-box {
  min-height: 520px;

  padding: 10px 14px;

  background: white;
  border-radius: 24px;

  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);

  overflow: hidden;
}

.form-box iframe {
  display: block;
  width: 100%;
  border: none;
}



/* ===============================
   FOOTER
================================ */

.waitlist-footer {
  margin-top: 42px;

  color: #4b5966;

  text-align: center;
  font-size: 15px;
  line-height: 1.5;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .waitlist-container {
    padding: 28px;
    border-radius: 28px;
  }

  .waitlist-nav {
    flex-direction: column;
    align-items: flex-start;

    margin-bottom: 34px;
  }

  .hero,
  .form-section {
    grid-template-columns: 1fr;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .coming-grid {
    grid-template-columns: 1fr 1fr;
  }

  .updates-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .youtube-update-btn {
    width: 100%;
    text-align: center;
  }

  .hero-text p {
    font-size: 20px;
  }

  .form-intro p,
  .coming-header p,
  .updates-copy p {
    font-size: 18px;
  }

  .form-box {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .waitlist-page {
    padding: 20px 12px;
  }

  .waitlist-container {
    padding: 22px;
    border-radius: 24px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-text strong {
    font-size: 19px;
  }

  .back-link {
    width: 100%;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text p {
    font-size: 18px;
    line-height: 1.6;
  }

  .benefit-card span,
  .coming-card span {
    font-size: 16px;
  }

  .form-intro p,
  .coming-header p,
  .updates-copy p {
    font-size: 17px;
  }

  .coming-grid {
    grid-template-columns: 1fr;
  }

  .coming-header h2,
  .updates-copy h2 {
    font-size: 28px;
  }

  .app-card {
    border-radius: 24px;
  }

  .mascot {
    width: 110px;
  }
}