:root {
  --ink: #180c24;
  --ink-soft: #3c2b4d;
  --plum: #260834;
  --violet: #4b155e;
  --rose: #e7b6ba;
  --gold: #c59a63;
  --mint: #59d4c9;
  --ivory: #fff9f1;
  --paper: #ffffff;
  --line: rgba(24, 12, 36, 0.14);
  --shadow: 0 24px 70px rgba(18, 7, 28, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 10px 18px;
  color: #fff;
  background: #b24762;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.urgency-bar p {
  margin: 0;
}

.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.68fr);
  min-height: calc(100vh - 42px);
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(89, 212, 201, 0.34), transparent 23%),
    linear-gradient(132deg, #16061f 0%, #320947 48%, #5a2148 100%);
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 1;
  align-self: center;
  min-width: 0;
  width: min(720px, 100%);
  padding: 34px clamp(32px, 5vw, 84px);
}

.hero-kicker {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.webinar-logo {
  width: min(560px, 100%);
  margin: 0 0 22px -6px;
  border-radius: 4px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.4rem, 7.5vw, 7.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

p {
  font-size: 1.02rem;
}

.subheadline {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  font-weight: 600;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 0;
}

.hero__meta span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  padding: 24px clamp(14px, 3vw, 42px) 24px 0;
}

.hero__visual img {
  position: relative;
  width: min(480px, 100%);
  transform: translateY(-4px);
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.34));
}

.signup-form {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 0;
  gap: 12px;
  max-width: 540px;
  margin-top: 24px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.signup-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
}

.signup-form input {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  font: inherit;
}

.signup-form button {
  grid-column: 1 / -1;
  min-height: 56px;
  border: 0;
  border-radius: 6px;
  color: #231313;
  background: linear-gradient(135deg, #f0cf91, #c99551);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
  font: 800 1rem/1 "Inter", Arial, sans-serif;
  cursor: pointer;
}

.form-time {
  margin: 0;
  padding: 10px 12px;
  border-radius: 6px;
  color: #fff;
  background: rgba(197, 154, 99, 0.22);
  font-size: 0.92rem;
  font-weight: 900;
  text-align: center;
}

.live-note {
  margin: 16px 0 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.signup-form p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  text-align: center;
}

.signup-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-message {
  min-height: 1.2em;
  font-weight: 800;
}

.form-message.is-success {
  color: #8ff0d9;
}

.form-message.is-error {
  color: #ffd2d2;
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  max-width: 100%;
  margin: 0 auto;
  padding: 74px 0;
}

.schedule-section {
  background: #fff;
}

.schedule-layout {
  min-height: 64vh;
  display: grid;
  align-content: center;
}

.schedule-layout h2 {
  text-transform: uppercase;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-width: 0;
  gap: 14px;
  margin-top: 28px;
}

.schedule-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--ivory);
  box-shadow: 0 14px 34px rgba(33, 14, 42, 0.06);
}

.schedule-grid span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.schedule-grid .flag {
  margin-bottom: 10px;
  color: inherit;
  font-size: 1.85rem;
  line-height: 1;
}

.schedule-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--violet);
  font-size: 1.75rem;
  line-height: 1;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 360px);
  min-height: 54px;
  margin-top: 30px;
  border-radius: 6px;
  color: #231313;
  background: linear-gradient(135deg, #f0cf91, #c99551);
  box-shadow: 0 14px 24px rgba(33, 14, 42, 0.14);
  font-weight: 900;
  text-decoration: none;
}

.inline-cta--light {
  margin-top: 12px;
}

.two-column {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: start;
}

.pain-section {
  background: #fff;
}

.pain-list,
.panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pain-list li,
.panel li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
  font-weight: 600;
}

.pain-list li::before,
.panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
}

.transformation {
  color: #fff;
  background: linear-gradient(135deg, #241032, #4d1645);
}

.transformation .section-inner {
  max-width: 930px;
  text-align: center;
}

.transformation p:not(.eyebrow) {
  margin: 22px auto 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
}

.benefits {
  background: var(--ivory);
}

.benefit-grid,
.lesson-list,
.objection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.benefit-grid article,
.lesson-list article,
.objection-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(33, 14, 42, 0.06);
}

.benefit-grid p,
.lesson-list p,
.objection-grid p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.fit-section {
  background: #fff;
}

.split-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.panel {
  border-radius: 8px;
  padding: clamp(26px, 4vw, 42px);
}

.panel h2 {
  margin-bottom: 26px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.panel--yes {
  background: #f4fffc;
  border: 1px solid rgba(89, 212, 201, 0.42);
}

.panel--no {
  background: #fff4f2;
  border: 1px solid rgba(178, 71, 98, 0.28);
}

.panel--no li::before {
  background: #b24762;
}

.expert-section {
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(197, 154, 99, 0.26), transparent 22%),
    linear-gradient(125deg, #14071d, #371148 58%, #1a0d29 100%);
}

.expert-section .section-inner {
  min-height: 92vh;
}

.expert-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 48px;
  align-items: center;
}

.expert-photo {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.expert-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.authority-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.authority-list span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 700;
}

.curriculum {
  background: var(--ivory);
}

.lesson-list article {
  display: grid;
  gap: 12px;
}

.lesson-list span {
  color: var(--gold);
  font-weight: 800;
}

.objections {
  background: #fff;
}

.objection-grid {
  grid-template-columns: repeat(3, 1fr);
}

.final-cta {
  color: #fff;
  background:
    radial-gradient(circle at 86% 16%, rgba(89, 212, 201, 0.3), transparent 20%),
    linear-gradient(135deg, #210831, #5c1c4d);
}

.final-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.brand-logo {
  width: 210px;
  margin-bottom: 24px;
  border-radius: 6px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.deadline {
  display: inline-flex;
  margin-top: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
}

.signup-form--light {
  grid-template-columns: 1fr;
  max-width: none;
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 980px) {
  .hero,
  .two-column,
  .expert-layout,
  .final-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    display: block;
    min-height: auto;
  }

  .hero__content {
    width: min(760px, 100%);
    margin: 0 auto;
    padding-bottom: 22px;
  }

  .hero__visual {
    display: none;
  }

  .hero__visual img {
    max-width: 300px;
  }

  .benefit-grid,
  .lesson-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .expert-photo {
    max-width: 360px;
  }
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }

  .urgency-bar {
    font-size: 0.82rem;
  }

  .hero {
    background: #16061f url("assets/expert.png") center top / cover no-repeat;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(14, 4, 22, 0.68);
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: 16px 16px 22px;
    text-align: center;
  }

  .webinar-logo {
    width: min(310px, 82vw);
    margin: 0 auto 10px;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
    line-height: 1.08;
  }

  .subheadline {
    width: min(100%, 540px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 9px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(20, 7, 29, 0.58);
    backdrop-filter: blur(10px);
    font-size: 1.2rem;
    line-height: 1.42;
    text-align: justify;
    text-align-last: justify;
  }

  .signup-form,
  .schedule-grid,
  .split-panels,
  .benefit-grid,
  .lesson-list,
  .objection-grid {
    grid-template-columns: 1fr;
  }

  .section-inner {
    width: min(100% - 32px, 1120px);
    padding: 62px 0;
  }

  .hero__meta span {
    width: auto;
    flex: 1 1 120px;
    text-align: center;
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .hero__meta {
    gap: 8px;
    margin: 10px 0 0;
  }

  .signup-form {
    width: min(100%, 540px);
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
    margin-top: 12px;
    padding: 10px;
  }

  .signup-form input {
    min-height: 48px;
  }

  .signup-form button {
    min-height: 50px;
    font-size: 0.94rem;
  }

  .live-note {
    font-size: 0.92rem;
  }

  .schedule-layout {
    min-height: auto;
  }

  .schedule-grid {
    gap: 10px;
    margin-top: 20px;
  }

  .schedule-grid article {
    padding: 16px;
  }

  .schedule-grid strong {
    font-size: 1.45rem;
  }

  .expert-layout {
    gap: 24px;
  }

  .signup-form p {
    font-size: 0.8rem;
  }

  .brand-logo {
    width: 178px;
  }
}
