:root {
  --bg: #f6faf8;
  --ink: #10201c;
  --muted: #60726d;
  --line: #dce8e4;
  --card: #ffffff;
  --primary: #0f9f87;
  --primary-dark: #06725f;
  --accent: #e8a526;
  --dark: #142a35;
  --shadow: 0 24px 70px rgba(16, 32, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #080c18;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
}

.brand,
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
}

.text-link {
  font-size: 0.92rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  padding: 0 22px;
  box-shadow: 0 12px 28px rgba(15, 159, 135, 0.25);
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.funnel-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(30px, 5vw, 56px) 16px 42px;
}

.funnel-hero .hero-media img {
  filter: saturate(1.08) contrast(1.02);
  object-position: 55% center;
}

.funnel-hero .hero-scrim {
  background:
    radial-gradient(circle at 70% 18%, rgba(114, 53, 206, 0.38), rgba(114, 53, 206, 0) 32%),
    radial-gradient(circle at 16% 78%, rgba(232, 165, 38, 0.24), rgba(232, 165, 38, 0) 30%),
    linear-gradient(180deg, rgba(5, 8, 18, 0.88) 0%, rgba(5, 8, 18, 0.92) 56%, rgba(5, 8, 18, 0.98) 100%),
    linear-gradient(90deg, rgba(5, 8, 18, 0.95), rgba(5, 8, 18, 0.45), rgba(5, 8, 18, 0.9));
}

.funnel-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  margin: 0 auto;
  color: #fff;
}

.funnel-title {
  text-align: center;
}

.funnel-title h1 {
  max-width: 100%;
  margin: 8px auto 14px;
  color: #fff;
  font-size: clamp(2.35rem, 12vw, 4.35rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.headline-stack {
  display: grid;
  justify-items: center;
  gap: 0.06em;
}

.headline-stack span {
  display: block;
  max-width: 100%;
  white-space: nowrap;
}

.funnel-title p:last-child {
  width: min(100%, 360px);
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.48;
}

.video-placeholder {
  display: grid;
  min-height: clamp(174px, 44vw, 220px);
  place-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 159, 135, 0.16), rgba(114, 53, 206, 0.18)),
    rgba(7, 12, 24, 0.82);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  padding: 24px;
  text-align: center;
}

.video-placeholder strong {
  font-size: 1rem;
}

.video-placeholder span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.video-ready {
  display: block;
  min-height: 0;
  padding: 0;
  position: relative;
}

.video-ready video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #050812;
  object-fit: cover;
}

.video-toggle {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(5, 8, 18, 0.72);
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}

.video-toggle:hover,
.video-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  outline: none;
}

.sound-overlay {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(5, 8, 18, 0.82);
  color: #fff;
  font-weight: 900;
  padding: 12px 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.play-mark {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 9px rgba(15, 159, 135, 0.18);
  position: relative;
}

.play-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-42%, -50%);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 17px solid #fff;
}

.capture-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(7, 12, 24, 0.94);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.44);
  padding: 18px;
}

.form-heading {
  text-align: left;
}

.form-heading h2 {
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.08;
}

.form-heading p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
  line-height: 1.45;
}

.capture-form label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.capture-form input,
.capture-form select {
  min-height: 46px;
  border-color: rgba(255, 255, 255, 0.12);
  background: #0e1628;
  color: #fff;
}

.capture-form input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.hidden-field {
  display: none;
}

.phone-row {
  display: grid;
  grid-template-columns: minmax(112px, 0.42fr) 1fr;
  gap: 8px;
}

.capture-form .button {
  width: 100%;
  margin-top: 4px;
  background: linear-gradient(135deg, var(--primary), #7353ce);
  text-transform: uppercase;
}

.secure-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.capture-form .form-note {
  color: rgba(255, 255, 255, 0.48);
  text-align: center;
}

.dark-section {
  color: #fff;
}

.dark-section h2 {
  color: #fff;
}

.closing-band {
  color: #fff;
  text-align: center;
}

.closing-band h2 {
  color: #fff;
  margin: 10px auto 22px;
  max-width: 720px;
}

.hosts-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(15, 159, 135, 0.12), rgba(15, 159, 135, 0) 30%),
    radial-gradient(circle at 84% 20%, rgba(114, 83, 206, 0.1), rgba(114, 83, 206, 0) 34%),
    #f7faf9;
  color: #111827;
  padding: clamp(56px, 8vw, 104px) 18px;
}

.hosts-inner {
  display: grid;
  width: min(1120px, 100%);
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  margin: 0 auto;
}

.hosts-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.14);
}

.hosts-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(247, 250, 249, 0.88) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hosts-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 53% center;
}

.hosts-kicker {
  margin: 0 0 8px;
  color: #7353ce;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hosts-copy h2 {
  color: #111827;
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.hosts-copy {
  text-align: center;
}

.host-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px 0;
}

.host-badges span {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #27323f;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 9px 15px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}

.hosts-detail {
  display: grid;
  gap: 16px;
  color: #4b5563;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.75;
  text-align: center;
}

.hosts-detail p {
  margin: 0;
}

.webinar-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(15, 159, 135, 0.2), rgba(15, 159, 135, 0) 32%),
    radial-gradient(circle at 84% 18%, rgba(115, 83, 206, 0.34), rgba(115, 83, 206, 0) 38%),
    linear-gradient(180deg, #101323 0%, #080c18 100%);
  color: #fff;
  padding: clamp(62px, 9vw, 112px) 16px clamp(28px, 5vw, 56px);
}

.webinar-inner {
  display: grid;
  width: min(100%, 980px);
  gap: 34px;
  margin: 0 auto;
}

.webinar-copy {
  text-align: center;
}

.webinar-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(100%, 650px);
  min-height: 78px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, #7353ce, #5d75ff);
  box-shadow: 0 18px 54px rgba(92, 106, 255, 0.28);
  padding: 18px 28px;
  color: #fff;
  font-size: clamp(1rem, 2.4vw, 1.45rem);
  line-height: 1.35;
  text-align: center;
}

.webinar-pill span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff4f8b;
  box-shadow: 0 0 0 5px rgba(255, 79, 139, 0.12);
  flex: 0 0 auto;
}

.webinar-intro {
  margin: 42px 0 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.2rem, 3vw, 1.75rem);
}

.webinar-copy h2 {
  display: grid;
  gap: 2px;
  justify-items: center;
  color: #fff;
  font-size: clamp(2.25rem, 8vw, 4.85rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.webinar-copy h2 small {
  color: rgba(255, 255, 255, 0.72);
  font-family: Inter, sans-serif;
  font-size: 0.46em;
  font-weight: 500;
  text-transform: lowercase;
}

.webinar-copy h2 strong {
  color: #7353ce;
  text-shadow: 0 0 30px rgba(115, 83, 206, 0.28);
}

.webinar-line {
  width: 72px;
  height: 3px;
  margin: 34px auto 20px;
  border-radius: 999px;
  background: #7353ce;
}

.webinar-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
}

.webinar-form {
  width: min(100%, 540px);
  margin: 0 auto;
  border-radius: 12px;
  padding: clamp(24px, 5vw, 34px);
}

.webinar-form .form-heading h2 {
  font-size: clamp(1.9rem, 5vw, 2.55rem);
}

.protected-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
  font-weight: 700;
}

.fit-section {
  background: #f7faf9;
}

.fit-intro {
  display: grid;
  justify-items: center;
  gap: 26px;
  background:
    radial-gradient(circle at 32% 54%, rgba(232, 165, 38, 0.16), rgba(232, 165, 38, 0) 28%),
    linear-gradient(180deg, #080c18 0%, #050812 100%);
  color: #fff;
  padding: clamp(42px, 6vw, 72px) 18px clamp(58px, 8vw, 96px);
  text-align: center;
}

.fit-intro h2 {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: clamp(1.28rem, 2.6vw, 1.9rem);
  font-weight: 900;
}

.fit-intro p {
  width: min(100%, 1040px);
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2.1vw, 1.45rem);
  line-height: 1.65;
}

.fit-intro strong {
  color: #fff;
}

.fit-cards {
  display: grid;
  width: min(1180px, calc(100% - 36px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 84px) 0;
}

.fit-card {
  min-height: 300px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  padding: clamp(26px, 4vw, 42px);
}

.reveal-card {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fit-card-featured {
  background: #fff;
  box-shadow: 0 24px 70px rgba(37, 99, 235, 0.12);
}

.fit-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.fit-number {
  color: #4d78ff;
  font-size: clamp(3rem, 6vw, 4.6rem);
  font-weight: 900;
  line-height: 1;
}

.fit-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(77, 120, 255, 0.16);
  border-radius: 12px;
  background: rgba(77, 120, 255, 0.08);
  color: #4d78ff;
  font-size: 1.25rem;
}

.fit-card h3 {
  max-width: 360px;
  color: #121826;
  font-family: Inter, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-transform: uppercase;
}

.fit-accent-line {
  width: 100%;
  height: 4px;
  margin: 12px 0 14px;
  border-radius: 999px;
  background: #5d75ff;
}

.fit-card p {
  margin: 24px 0 0;
  color: #6b7280;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  background:
    radial-gradient(circle at 36% 42%, rgba(232, 165, 38, 0.12), rgba(232, 165, 38, 0) 30%),
    radial-gradient(circle at 76% 28%, rgba(115, 83, 206, 0.18), rgba(115, 83, 206, 0) 34%),
    linear-gradient(180deg, #080c18 0%, #050812 100%);
  color: #fff;
  padding: clamp(60px, 9vw, 112px) 18px;
  text-align: center;
}

.final-cta h2 {
  max-width: 980px;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.final-cta-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 8px;
  background: #1677f2;
  color: #fff;
  box-shadow: 0 18px 36px rgba(22, 119, 242, 0.28);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 900;
  padding: 0 34px;
  transition: transform 160ms ease, background 160ms ease;
}

.final-cta-button:hover {
  background: #0f63d8;
  transform: translateY(-1px);
}

.final-cta small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 1rem;
}

@media (min-width: 900px) {
  .funnel-hero {
    display: grid;
    min-height: 100vh;
    align-items: center;
    padding: 64px 24px;
  }

  .funnel-shell {
    display: grid;
    width: min(100%, 1060px);
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 440px);
    gap: 52px;
    align-items: center;
    margin: 0 auto;
  }

  .funnel-title,
  .video-placeholder {
    grid-column: 1;
  }

  .capture-form {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .funnel-title h1 {
    font-size: clamp(3.35rem, 4.5vw, 4.25rem);
  }

  .funnel-title .eyebrow {
    font-size: 1.18rem;
  }

  .funnel-title p:last-child {
    width: min(100%, 420px);
  }

  .video-placeholder {
    min-height: 250px;
  }

  .capture-form {
    padding: 22px;
  }
}

@media (max-width: 820px) {
  .hosts-section {
    padding: 52px 16px 64px;
  }

  .hosts-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hosts-photo {
    width: min(100%, 390px);
    margin: 0 auto;
  }

  .hosts-photo img {
    aspect-ratio: 16 / 11;
  }

  .host-badges {
    gap: 8px;
  }

  .host-badges span {
    font-size: 0.88rem;
    padding: 8px 12px;
  }

  .webinar-pill {
    width: 100%;
    min-height: 86px;
    border-radius: 34px;
    padding-inline: 18px;
    font-size: 1.08rem;
  }

  .webinar-copy h2 {
    font-size: clamp(2.05rem, 10vw, 3.2rem);
  }

  .webinar-inner {
    gap: 30px;
  }

  .webinar-form {
    width: 100%;
  }

  .fit-intro {
    padding: 36px 18px 54px;
  }

  .fit-cards {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 430px);
    padding: 38px 0 58px;
  }

  .fit-card {
    min-height: auto;
  }

  .final-cta-button {
    width: min(100%, 340px);
  }
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.hero-scrim {
  background:
    radial-gradient(circle at 78% 22%, rgba(114, 53, 206, 0.32), rgba(114, 53, 206, 0) 34%),
    radial-gradient(circle at 12% 82%, rgba(232, 165, 38, 0.3), rgba(232, 165, 38, 0) 30%),
    linear-gradient(90deg, rgba(4, 10, 13, 0.98) 0%, rgba(8, 16, 20, 0.9) 38%, rgba(8, 16, 20, 0.44) 68%, rgba(8, 16, 20, 0.14) 100%),
    linear-gradient(0deg, rgba(4, 10, 13, 0.78), rgba(4, 10, 13, 0.08) 46%);
}

.hero-content {
  position: relative;
  width: min(790px, calc(100% - 36px));
  padding: 112px 0 6vh clamp(18px, 7vw, 92px);
  color: #fff;
}

.eyebrow,
.section-kicker,
.host-label {
  color: var(--accent);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Montserrat, Inter, sans-serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 730px;
  margin-top: 14px;
  font-size: clamp(2.15rem, 4.8vw, 3.9rem);
}

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

h3 {
  font-size: 1.8rem;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.session-strip {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  border-left: 4px solid var(--accent);
  padding: 10px 0 10px 16px;
  color: rgba(255, 255, 255, 0.8);
}

.session-strip strong {
  color: #fff;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 72px);
}

.intro-grid {
  display: grid;
  gap: 14px;
}

.benefit {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  padding: 22px;
  box-shadow: 0 10px 28px rgba(16, 32, 28, 0.06);
}

.benefit strong {
  display: block;
  margin-bottom: 6px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 22px;
}

.panel,
.host-card,
.form {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dark-panel {
  background: var(--dark);
  color: #fff;
  padding: clamp(28px, 5vw, 56px);
}

.agenda-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.agenda-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.86);
}

.agenda-list span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  font-weight: 800;
}

.host-card {
  align-self: stretch;
  background: #fff;
  padding: 30px;
}

.host-card p {
  color: var(--muted);
  line-height: 1.65;
}

.trust-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.trust-list span {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  font-weight: 800;
}

.register-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.register-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: #fff;
  padding: clamp(22px, 4vw, 34px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfefd;
  color: var(--ink);
  font: inherit;
  padding: 0 14px;
}

input:focus,
select:focus {
  border-color: var(--primary);
  outline: 3px solid rgba(15, 159, 135, 0.16);
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--muted);
  font-weight: 700;
}

.footer a {
  color: var(--primary-dark);
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
  }

  .header-actions .text-link {
    display: none;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-scrim {
    background:
      radial-gradient(circle at 72% 18%, rgba(114, 53, 206, 0.38), rgba(114, 53, 206, 0) 34%),
      radial-gradient(circle at 18% 86%, rgba(232, 165, 38, 0.32), rgba(232, 165, 38, 0) 32%),
      linear-gradient(180deg, rgba(4, 10, 13, 0.34) 0%, rgba(4, 10, 13, 0.28) 34%, rgba(4, 10, 13, 0.88) 64%, rgba(4, 10, 13, 0.98) 100%);
  }

  .hero-content {
    width: min(100% - 32px, 680px);
    padding-left: 16px;
    padding-bottom: 52px;
  }

  .hero-media img {
    object-position: 57% center;
  }

  .intro,
  .split,
  .register-section,
  .form {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}
