:root {
  --ink: #f5f7fb;
  --muted: #aeb9cf;
  --paper: #071126;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.14);
  --blue: #7aa7ff;
  --coral: #f26a4b;
  --gold: #d8ae5e;
  --teal: #158b84;
  --navy: #071126;
  --panel: #0d1832;
  --panel-2: #111f3d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  margin: 0;
}

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

.site-header {
  align-items: center;
  background: rgba(7, 17, 38, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 58px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 18px;
  font-weight: 900;
  gap: 10px;
}

.brand img {
  height: 38px;
  object-fit: contain;
  width: 32px;
}

nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2.6vw, 28px);
  justify-content: flex-end;
}

nav a,
footer a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

nav a:hover,
footer a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--coral);
  color: var(--white);
  padding: 10px 14px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
  min-height: calc(100svh - 74px);
  padding: clamp(44px, 7vw, 94px) clamp(22px, 5vw, 72px);
}

.hero-copy {
  max-width: 760px;
}

.kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(42px, 6.6vw, 88px);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(34px, 5.6vw, 68px);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.lead,
.section-heading p,
.contact p {
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  max-width: 720px;
}

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

.button {
  align-items: center;
  border: 1px solid var(--line);
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
}

.button.primary {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero-media {
  aspect-ratio: 4 / 5;
  background: var(--navy);
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.hero-media::after {
  background: linear-gradient(180deg, rgba(36, 82, 214, 0), rgba(36, 82, 214, 0.28));
  bottom: 0;
  content: "";
  height: 34%;
  left: 0;
  position: absolute;
  right: 0;
}

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

.trust-strip {
  background: #050d20;
  color: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.trust-strip div {
  background: rgba(255, 255, 255, 0.045);
  padding: 24px clamp(20px, 4vw, 56px);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 20px;
  margin-bottom: 4px;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.72);
}

.section,
.split-section,
.image-feature,
.instagram-section,
.podcast-section,
.contact {
  padding: clamp(78px, 9vw, 128px) clamp(22px, 5vw, 72px);
  scroll-margin-top: 96px;
}

.section-heading {
  max-width: 820px;
}

.event-grid,
.choice-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.event-card,
.choice-grid a,
.contact-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
  padding: 28px;
}

.event-card span {
  color: var(--gold);
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 28px;
}

.steps span {
  color: var(--muted);
}

.event-card.highlight {
  background: var(--ink);
  color: var(--white);
}

.event-card.highlight p {
  color: rgba(255, 255, 255, 0.72);
}

.split-section {
  background: var(--panel);
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
}

.steps {
  counter-reset: steps;
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  counter-increment: steps;
  display: grid;
  gap: 5px;
  min-height: 86px;
  padding: 22px 22px 22px 76px;
  position: relative;
}

.steps li::before {
  color: var(--teal);
  content: counter(steps, decimal-leading-zero);
  font-size: 16px;
  font-weight: 900;
  left: 24px;
  position: absolute;
  top: 24px;
}

.offer-choice {
  background: #050d20;
}

.choice-grid a {
  display: grid;
  gap: 12px;
  min-height: 230px;
  overflow: hidden;
  transition: border-color 160ms ease, transform 160ms ease;
}

.choice-grid a:hover {
  border-color: rgba(216, 174, 94, 0.62);
  transform: translateY(-3px);
}

.choice-grid span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.choice-grid strong {
  font-size: 26px;
  line-height: 1.05;
}

.choice-grid p {
  color: var(--muted);
  margin: 0;
}

.choice-card.with-image {
  gap: 0;
  grid-template-rows: 160px 1fr;
  padding: 0;
}

.choice-card.with-image img {
  height: 100%;
  object-fit: cover;
  object-position: 54% 32%;
  width: 100%;
}

.choice-card.with-image:first-child img {
  object-position: 58% 8%;
}

.choice-card.with-image:nth-child(2) img {
  object-position: 54% 4%;
}

.choice-card.with-image div {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.image-feature {
  align-items: center;
  background: var(--panel);
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(300px, 0.82fr) minmax(320px, 1fr);
}

.image-feature img {
  aspect-ratio: 3 / 2;
  box-shadow: var(--shadow);
  height: auto;
  object-fit: cover;
  object-position: 46% center;
  width: 100%;
}

.image-feature p {
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  max-width: 720px;
}

.instagram-section {
  background: #050d20;
  color: var(--white);
}

.contact,
.instagram-section,
.podcast-section {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 0.7fr);
}

.instagram-section p,
.podcast-section p {
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  max-width: 720px;
}

.instagram-card {
  align-self: start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
  color: var(--white);
  display: block;
  min-height: 0;
  overflow: hidden;
  position: relative;
  width: min(100%, 360px);
}

.instagram-card img {
  display: block;
  height: auto;
  object-fit: contain;
  position: static;
  width: 100%;
}

.instagram-label {
  background: rgba(7, 17, 38, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 900;
  left: 18px;
  padding: 12px 14px;
  position: absolute;
  top: 18px;
  z-index: 1;
}

.podcast-section {
  background: var(--panel);
}

.podcast-card {
  align-self: start;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: block;
  overflow: hidden;
  position: relative;
  width: min(100%, 360px);
}

.podcast-card img {
  display: block;
  height: auto;
  width: 100%;
}

.podcast-card span {
  background: rgba(7, 17, 38, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-weight: 900;
  left: 18px;
  padding: 12px 14px;
  position: absolute;
  top: 18px;
  z-index: 1;
}

.contact-card {
  display: grid;
  gap: 12px;
}

.contact-card .button {
  width: 100%;
}

footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 30px clamp(22px, 5vw, 72px);
}

footer p {
  color: var(--muted);
  margin: 0;
}

footer div {
  display: flex;
  gap: 18px;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .split-section,
  .image-feature,
  .contact,
  .instagram-section,
  .podcast-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    aspect-ratio: 4 / 5;
    min-height: 0;
    order: -1;
  }

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

  .trust-strip,
  .event-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  nav {
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .brand span {
    font-size: 16px;
  }
}
