:root {
  --bg: #070A10;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.09);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted2: rgba(255, 255, 255, 0.55);

  --gradA: #64f0c8;
  --gradB: #b38cff;
  --gradC: #ffd37a;

  --radius: 18px;
  --radius2: 26px;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
  --shadow2: 0 10px 30px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 30% -10%, rgba(179, 140, 255, 0.16), transparent 60%),
    radial-gradient(900px 500px at 80% 0%, rgba(100, 240, 200, 0.14), transparent 55%),
    radial-gradient(900px 800px at 60% 110%, rgba(255, 211, 122, 0.10), transparent 60%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

.wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: transparent;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn--primary {
  border-color: transparent;
  background: linear-gradient(135deg, rgba(100, 240, 200, 0.9), rgba(179, 140, 255, 0.92));
  color: #061016;
}

.btn--primary:hover {
  background: linear-gradient(135deg, rgba(100, 240, 200, 1), rgba(179, 140, 255, 1));
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
}

.btn--big {
  padding: 14px 18px;
  font-size: 15px;
}

.kicker {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
}

h1,
h2,
h3 {
  letter-spacing: -0.03em;
  margin: 0
}

h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.9;
  margin-top: 14px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.grad {
  background: linear-gradient(90deg, var(--gradA), var(--gradB), var(--gradC));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subhead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 68ch;
  margin-top: 14px;
}

.lead {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.84);
}

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

.tiny {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted2);
}

/* Topbar */
.topbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(7, 10, 16, 0.30);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transform: translateY(-6px);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}

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

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  transition: opacity .15s ease;
}

.brand:hover {
  opacity: 0.8;
}

.brand__logo {
  height: 48px;
  width: auto;
  display: block;
}

.footer__logo {
  height: 40px;
}

.nav {
  display: flex;
  gap: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
}

.nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.nav a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.nav__cta {
  display: flex;
  gap: 10px;
}

.hamburger {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  margin: 4px 0;
  border-radius: 99px;
}

.mobile {
  display: none;
  padding: 10px 0 16px;
}

.mobile a {
  display: block;
  padding: 12px 24px;
  color: rgba(255, 255, 255, 0.86);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile .btn {
  margin: 12px 24px 0;
  width: calc(100% - 48px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 110px 0 70px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.layer {
  position: absolute;
  inset: -6%;
  will-change: transform;
}

.layer--glow {
  background:
    radial-gradient(520px 420px at 20% 20%, rgba(100, 240, 200, 0.16), transparent 60%),
    radial-gradient(560px 420px at 75% 25%, rgba(179, 140, 255, 0.16), transparent 62%),
    radial-gradient(640px 520px at 55% 85%, rgba(255, 211, 122, 0.10), transparent 62%);
  filter: blur(6px);
}

.layer--noise {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.35;
}

.layer--poster {
  inset: -8% -6%;
  background:
    radial-gradient(900px 520px at 55% 55%, rgba(0, 0, 0, 0.0), rgba(7, 10, 16, 0.60) 60%, rgba(7, 10, 16, 0.90) 78%),
    url("./hero.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
  opacity: 0.9;
}

.layer--orbs .orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, rgba(100, 240, 200, 0.18), transparent 65%);
  filter: blur(1px);
  opacity: 0.55;
}

.layer--orbs .orb:nth-child(1) {
  left: -120px;
  top: 10%;
}

.layer--orbs .orb:nth-child(2) {
  right: -160px;
  top: 20%;
  background: radial-gradient(circle at 35% 30%, rgba(179, 140, 255, 0.18), transparent 65%);
}

.layer--orbs .orb:nth-child(3) {
  left: 18%;
  bottom: -190px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 35% 30%, rgba(255, 211, 122, 0.14), transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.stat {
  min-width: 160px;
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow2);
}

.stat__num {
  font-size: 20px;
  font-weight: 800;
}

.stat__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.70);
  margin-top: 4px;
}

.scrollhint {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.scrollhint__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.18);
  animation: bounce 1.35s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.65;
  }

  50% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

/* Sections */
.section {
  padding: 84px 0;
  position: relative;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 35%, transparent 70%, rgba(255, 255, 255, 0.03));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section__head {
  margin-bottom: 26px;
}

.section__head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.section__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
}

.card {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow2);
  padding: 22px;
}

.glass {
  backdrop-filter: blur(12px);
}

.pillrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.80);
  font-weight: 600;
}

.checklist {
  margin: 12px 0 0;
  padding-left: 18px;
}

.checklist li {
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.mini-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.step {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 18px 16px;
  box-shadow: var(--shadow2);
}

.step__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.badge {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

/* Video Grid */
.videoGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.videoCard {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  box-shadow: var(--shadow2);
}

.videoCard__media {
  aspect-ratio: 16/9;
  background: rgba(0, 0, 0, 0.3);
}

.videoCard__media iframe,
.videoCard__media video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.videoCard__body {
  padding: 14px 16px 16px;
}

.videoCard__body h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

/* Chips */
.chiprow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

/* Audience */
.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.audienceCard {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  box-shadow: var(--shadow2);
}

.audienceCard h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.formats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.formatRow {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.format__title {
  font-weight: 800;
}

.format__desc {
  color: rgba(255, 255, 255, 0.74);
  margin-top: 4px;
}

/* Quotes */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.quote {
  margin: 0;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  box-shadow: var(--shadow2);
}

.quote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.quote footer {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

/* CTA */
.section--cta {
  padding: 72px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(900px 460px at 25% 30%, rgba(100, 240, 200, 0.12), transparent 60%),
    radial-gradient(900px 460px at 78% 30%, rgba(179, 140, 255, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.02);
}

.cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.cta--stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.cta__header {
  max-width: 800px;
}

.cta__header h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 12px;
}

.cta__actions--bottom {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta__form {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  box-shadow: var(--shadow);
  padding: 40px;
  width: 100%;
  max-width: 100%;
  /* Fill the container */
  text-align: left;
  display: flex;
  flex-direction: column;
}

.cta--stacked .cta__form-container {
  width: 100%;
  display: flex;
  justify-content: center;
  min-height: auto;
}

.cta__form button[type="submit"] {
  align-self: center;
  margin-top: 24px;
  min-width: 240px;
}

.cta__form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  margin: 10px 0 6px;
}

.cta__form input,
.cta__form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  padding: 12px 12px;
  outline: none;
}

.cta__form input:focus,
.cta__form textarea:focus {
  border-color: rgba(100, 240, 200, 0.55);
  box-shadow: 0 0 0 3px rgba(100, 240, 200, 0.12);
}

.cta__form-container {
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.form-success {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius2);
  animation: fadeInForm 0.4s ease forwards;
}

.form-success__icon {
  font-size: 48px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px var(--gradA));
}

.form-success h3 {
  font-size: 24px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--gradA), var(--gradB));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.form-success p {
  max-width: 300px;
  margin-bottom: 24px;
}

@keyframes fadeInForm {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ */
.faq {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

details {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 14px 16px;
  box-shadow: var(--shadow2);
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin: 10px 0 0;
}

/* Footer */
.footer {
  padding: 26px 0 34px;
  color: rgba(255, 255, 255, 0.70);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
  font-size: 13px;
}

.footer__links a:hover {
  color: rgba(255, 255, 255, 0.92);
}

/* Event Grid */
.event-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
  margin-top: 24px;
}

.event-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.event-info__item {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

.event-info__item strong {
  color: var(--gradA);
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.event-subsections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.event-subsection h4 {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--gradB);
}

.event-subsection .checklist li {
  font-size: 13px;
  margin: 6px 0;
}

/* Responsive */
@media (max-width: 980px) {
  .section__grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .videoGrid {
    grid-template-columns: 1fr;
  }

  .event-grid {
    grid-template-columns: 1fr;
  }

  .event-subsections {
    grid-template-columns: 1fr;
  }

  .audience {
    grid-template-columns: 1fr 1fr;
  }

  .quotes {
    grid-template-columns: 1fr;
  }

  .formats {
    grid-template-columns: 1fr;
  }

  .cta {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .hamburger {
    display: inline-block;
  }

  .mobile {
    display: block;
  }
}

@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .audience {
    grid-template-columns: 1fr;
  }
}