:root {
  --sky: #8ec8e8;
  --sky-light: #c5e3f2;
  --sky-pale: #eaf5fb;
  --sky-deep: #5ba3c9;
  --fuchsia: #c96bb5;
  --fuchsia-light: #e8a8da;
  --purple: #9b6bb5;
  --purple-light: #d4b8e8;
  --white: #ffffff;
  --cream: #f8f5ff;
  --dark: #1a1a2e;
  --text: #2d2d4e;
  --text-light: #6b6b8a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* TOP BAR */
.top-bar {
  background: linear-gradient(135deg, var(--purple) 0%, var(--fuchsia) 100%);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.top-bar span {
  opacity: 0.9;
}
#countdown {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
}

/* NAV */
nav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--sky-light);
  box-shadow: 0 2px 20px rgba(142, 200, 232, 0.15);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: 0.5px;
}
.nav-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
}
.nav-logo-text {
  line-height: 1;
}
.nav-logo span {
  color: var(--fuchsia);
  font-style: italic;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #eaf5fb 0%, #f4eeff 50%, #fbe9f4 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 60px 60px;
  gap: 60px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(142, 200, 232, 0.25) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(201, 107, 181, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--sky-light), var(--purple-light));
  border: 1px solid rgba(142, 200, 232, 0.4);
  color: var(--purple);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeDown 0.6s ease both;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--fuchsia);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--fuchsia);
  margin-bottom: 12px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--sky-deep), var(--fuchsia));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeUp 0.6s 0.4s ease both;
}

.event-date-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1.5px solid var(--sky-light);
  border-radius: 12px;
  padding: 12px 22px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(142, 200, 232, 0.2);
  animation: fadeUp 0.6s 0.5s ease both;
}
.event-date-pill .icon {
  font-size: 20px;
}
.event-date-pill .date-text {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}
.event-date-pill .date-text strong {
  color: var(--fuchsia);
}

/* FORM */
.hero-form {
  background: white;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow:
    0 20px 60px rgba(91, 163, 201, 0.15),
    0 4px 20px rgba(201, 107, 181, 0.1);
  border: 1px solid rgba(142, 200, 232, 0.3);
  position: relative;
  z-index: 2;
  animation: fadeIn 0.8s 0.4s ease both;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}
.form-header .form-emoji {
  font-size: 32px;
  margin-bottom: 10px;
  display: block;
}
.form-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-group input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e0eef7;
  border-radius: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: #fafcff;
  transition: all 0.3s ease;
  outline: none;
}
.form-group input:focus {
  border-color: var(--sky-deep);
  background: white;
  box-shadow: 0 0 0 4px rgba(142, 200, 232, 0.15);
}
.form-group input::placeholder {
  color: #b0c4d4;
}

.btn-primary {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, var(--fuchsia) 0%, var(--purple) 100%);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(201, 107, 181, 0.4);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 107, 181, 0.5);
}
.btn-primary:hover::after {
  left: 100%;
}
.btn-primary:disabled,
.btn-primary:disabled:hover {
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 8px 30px rgba(201, 107, 181, 0.2);
  opacity: 0.65;
}

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 14px;
  text-align: center;
}
.form-trust .lock {
  font-size: 14px;
}

/* SUCCESS */
.success-msg {
  display: none;
  text-align: center;
  padding: 20px;
}
.success-msg .success-icon {
  font-size: 50px;
  margin-bottom: 16px;
}
.success-msg h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 8px;
}
.success-msg p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* SECTION BASE */
section {
  padding: 90px 40px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}
.container-sm {
  max-width: 780px;
  margin: 0 auto;
}

.section-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: 16px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700;
  text-align: center;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--fuchsia);
}

.section-sub {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* QUOTE BAND */
.quote-band {
  background: linear-gradient(135deg, var(--sky-deep) 0%, var(--purple) 100%);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 30px;
  font-family: "Playfair Display", serif;
  font-size: 250px;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  pointer-events: none;
}
.quote-band blockquote {
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-style: italic;
  color: white;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.quote-band blockquote span {
  color: var(--fuchsia-light);
  font-style: normal;
  font-weight: 600;
}

/* WHAT YOU LEARN */
.learn-section {
  background: var(--cream);
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.learn-card {
  background: white;
  border-radius: 20px;
  padding: 36px 30px;
  border: 1px solid rgba(142, 200, 232, 0.25);
  box-shadow: 0 4px 24px rgba(91, 163, 201, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.learn-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky-deep), var(--fuchsia));
}
.learn-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(91, 163, 201, 0.18);
}

.learn-number {
  font-family: "Playfair Display", serif;
  font-size: 54px;
  font-weight: 700;
  font-style: italic;
  color: var(--sky-light);
  line-height: 1;
  margin-bottom: 16px;
}
.learn-emoji {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.learn-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.learn-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-light);
}

/* FOR WHOM */
.for-whom {
  background: white;
}

.checks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 780px;
  margin: 0 auto;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  background: var(--sky-pale);
  border-radius: 14px;
  border: 1px solid rgba(142, 200, 232, 0.3);
  transition: all 0.3s;
}
.check-item:hover {
  background: white;
  box-shadow: 0 6px 24px rgba(142, 200, 232, 0.2);
  transform: translateX(4px);
}

.check-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--sky-deep), var(--fuchsia));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: white;
  font-weight: 700;
}
.check-item p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text);
  padding-top: 4px;
}

/* ABOUT */
.about-section {
  background: linear-gradient(160deg, #eaf5fb 0%, #f4eeff 100%);
  padding: 90px 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image-wrap {
  position: relative;
}
.about-image-wrap::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--sky-light), var(--purple-light));
  z-index: 0;
}
.about-image {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(91, 163, 201, 0.25);
  display: block;
}
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 8px 30px rgba(201, 107, 181, 0.2);
  text-align: center;
  z-index: 2;
  border: 1px solid var(--fuchsia-light);
}
.about-badge-float strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--fuchsia);
  font-weight: 700;
}
.about-badge-float span {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.3;
}

.about-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: 10px;
}
.about-name {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.1;
}
.about-title-line {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
  color: var(--fuchsia);
  margin-bottom: 28px;
}
.about-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 14px;
}
.about-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 10px;
  border-left: 4px solid var(--fuchsia);
  box-shadow: 0 2px 12px rgba(201, 107, 181, 0.1);
}
.about-highlight span {
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}

/* HOW IT WORKS */
.steps-section {
  background: white;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 200px;
  position: relative;
  padding: 20px;
}

.step-num {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--sky-deep), var(--fuchsia));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(201, 107, 181, 0.3);
  flex-shrink: 0;
}
.step-item h4 {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.step-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.step-arrow {
  align-self: center;
  font-size: 24px;
  color: var(--sky-light);
  padding-bottom: 40px;
}

/* CTA FINAL */
.cta-final {
  background: linear-gradient(150deg, var(--dark) 0%, #2d1b4e 100%);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(142, 200, 232, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.cta-final::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(201, 107, 181, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cta-final .section-label {
  color: var(--sky-light);
}
.cta-final .section-title {
  color: white;
}
.cta-final .section-sub {
  color: rgba(255, 255, 255, 0.65);
}

.cta-form {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-form input {
  width: 100%;
  padding: 16px 22px;
  border: 1.5px solid rgba(142, 200, 232, 0.3);
  border-radius: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.07);
  color: white;
  margin-bottom: 12px;
  outline: none;
  transition: all 0.3s;
}
.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.cta-form input:focus {
  border-color: var(--sky-light);
  background: rgba(255, 255, 255, 0.12);
}
.cta-final .form-trust {
  color: rgba(255, 255, 255, 0.4);
  margin-top: 18px;
}

/* FOOTER */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px;
  text-align: center;
}
footer p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.8;
}
footer a {
  color: var(--sky-light);
  text-decoration: none;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 40px;
    min-height: auto;
  }
  .hero-form {
    padding: 30px 24px;
  }
  .learn-grid {
    grid-template-columns: 1fr;
  }
  .checks-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image-wrap {
    max-width: 320px;
    margin: 0 auto;
  }
  section {
    padding: 60px 24px;
  }
  .steps-row {
    gap: 0;
  }
  .step-arrow {
    display: none;
  }
  .about-badge-float {
    right: 0;
  }
}
