:root {
  color-scheme: light;
  --ink: #080e1a;
  --ink-2: #1a2433;
  --muted: #5d6878;
  --blue: #075cff;
  --blue-2: #0042c9;
  --red: #f02d2d;
  --dark: #071121;
  --dark-2: #0a1729;
  --surface: #ffffff;
  --line: #dfe5ee;
  --soft-blue: #eff5ff;
  --soft-red: #fff2f2;
  --soft: #f7f9fc;
  --shadow: 0 24px 70px rgba(8, 14, 26, 0.12);
  --max: 1200px;
  --header: 72px;
  --radius: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--surface);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header);
  padding: 15px clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(260px, auto) 1fr auto;
  align-items: center;
  gap: 28px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
  min-width: 0;
  width: clamp(230px, 22vw, 330px);
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

.main-nav a {
  color: var(--ink-2);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 3px 0;
  background: var(--ink);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1;
  padding: 13px 22px;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.button-primary {
  background: var(--blue);
  color: var(--surface);
  box-shadow: 0 14px 26px rgba(7, 92, 255, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-2);
}

.button-outline {
  background: var(--surface);
  border-color: var(--blue);
  color: var(--blue);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--soft-blue);
}

.button-light {
  background: var(--surface);
  color: var(--blue);
}

.button-blue-outline {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--surface);
}

.small-button {
  min-height: 40px;
  padding: 10px 15px;
  font-size: 0.82rem;
}

.red-outline {
  border-color: var(--red);
  color: var(--red);
  background: var(--surface);
}

.play-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.play-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  border-left: 7px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.section-anchor {
  scroll-margin-top: calc(var(--header) + 18px);
}

.hero {
  position: relative;
  max-width: 1280px;
  min-height: 500px;
  margin: 0 auto;
  padding: 36px 48px 0;
  display: grid;
  grid-template-columns: minmax(500px, 0.9fr) minmax(540px, 1fr);
  gap: 86px;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 54%;
  width: 42%;
  background:
    linear-gradient(90deg, rgba(7, 92, 255, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 14, 26, 0.07) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.85), transparent);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 610px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  font-size: clamp(3.1rem, 3.55vw, 3.85rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero h1 span:last-child {
  color: var(--red);
}

.hero-claim {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 850;
  line-height: 1.1;
}

.hero-lead {
  max-width: 570px;
  margin: 18px 0 0;
  color: var(--ink-2);
  font-size: 1.1rem;
  line-height: 1.6;
}

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

.scroll-cue {
  width: max-content;
  margin-top: 38px;
  display: grid;
  grid-template-columns: 28px auto;
  gap: 10px;
  align-items: center;
  color: var(--ink-2);
  font-size: 0.8rem;
  font-weight: 800;
}

.scroll-cue span {
  width: 28px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 99px;
  position: relative;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 7px;
  border-radius: 99px;
  background: var(--ink);
  transform: translateX(-50%);
}

.hero-collage {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
}

.concept-collage {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.collage-tile {
  position: absolute;
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.collage-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-main {
  inset: 0 0 auto 8%;
  height: 48%;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.tile-main img {
  object-position: 82% 42%;
}

.tile-zoom {
  left: 0;
  bottom: 0;
  width: 46%;
  height: 50%;
  clip-path: polygon(18% 0, 100% 0, 80% 100%, 0 100%);
}

.tile-zoom img {
  object-position: 15% 82%;
}

.tile-event {
  right: 0;
  bottom: 0;
  width: 58%;
  height: 50%;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.tile-event img {
  object-position: 65% 46%;
}

.network-card {
  position: absolute;
  right: 0;
  top: 0;
  width: 36%;
  height: 48%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.network-card svg,
.cta-network {
  width: 82%;
  height: auto;
  overflow: visible;
}

.network-card path,
.cta-network path {
  fill: none;
  stroke: rgba(8, 14, 26, 0.25);
  stroke-width: 2;
}

.network-card circle,
.cta-network circle {
  fill: var(--surface);
  stroke: var(--blue);
  stroke-width: 5;
}

.network-card circle:nth-of-type(2n),
.cta-network circle:nth-of-type(2n) {
  stroke: var(--red);
}

.format-section,
.benefits,
.application,
.faq {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 48px;
}

.format-section h2,
.benefits h2,
.application h2,
.faq h2 {
  margin: 0 0 34px;
  text-align: center;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1;
  text-transform: uppercase;
}

.format-section h2 span,
.benefit-icon,
.quiz-kicker {
  color: var(--blue);
}

.format-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.format-card {
  min-height: 330px;
  padding: 42px 52px 36px 145px;
  position: relative;
}

.zoom-card {
  background: linear-gradient(120deg, #eaf3ff, #ffffff 78%);
}

.live-card {
  background: linear-gradient(120deg, #fff3f3, #ffffff 78%);
}

.format-icon {
  position: absolute;
  left: 42px;
  top: 44px;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--surface);
}

.format-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.red-icon {
  background: var(--red);
}

.format-card h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.1;
}

.format-card p {
  margin: 8px 0 0;
  color: var(--ink-2);
  font-weight: 650;
}

.format-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 14px 42px rgba(8, 14, 26, 0.16);
  text-align: center;
  transform: translate(-50%, -50%);
}

.format-center svg {
  width: 52px;
  height: 52px;
  margin-bottom: 4px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.format-center strong {
  font-size: 0.9rem;
  line-height: 1.15;
}

.check-list {
  margin: 20px 0 28px;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.08em;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--surface);
  font-size: 0.72rem;
  font-weight: 900;
}

.blue-checks li::before {
  background: var(--blue);
}

.red-checks li::before {
  background: var(--red);
}

.benefits {
  padding-top: 24px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.benefit-grid article {
  min-height: 160px;
  padding: 24px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.benefit-grid article:last-child {
  border-right: 0;
}

.benefit-icon {
  display: block;
  margin-bottom: 14px;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.benefit-grid h3 {
  margin: 0;
  color: var(--blue);
  font-size: 0.98rem;
}

.benefit-grid p {
  margin: 10px 0 0;
  color: var(--ink-2);
  font-size: 0.82rem;
  line-height: 1.42;
}

.events {
  max-width: none;
  padding: 64px max(48px, calc((100vw - var(--max)) / 2 + 48px));
  display: grid;
  grid-template-columns: minmax(430px, 1.08fr) minmax(500px, 1fr) minmax(250px, 0.58fr);
  gap: 36px;
  align-items: center;
  background:
    radial-gradient(circle at 90% 10%, rgba(7, 92, 255, 0.24), transparent 28%),
    linear-gradient(120deg, #071121, #0a1729 65%, #101a2a);
  color: var(--surface);
}

.events-media {
  display: grid;
  gap: 10px;
  align-self: center;
}

.events-media img {
  width: 100%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.82);
}

.event-large {
  aspect-ratio: 16 / 8.6;
}

.event-small-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 10px;
}

.event-small-grid img {
  aspect-ratio: 1.35 / 1;
}

.event-small-grid img:first-child {
  object-position: center;
}

.events-copy h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  max-width: 620px;
  font-size: clamp(2.35rem, 3vw, 3.35rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.events-copy > p {
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
  line-height: 1.65;
}

.event-timeline {
  display: grid;
  gap: 14px;
  position: relative;
}

.event-timeline::before {
  content: "";
  position: absolute;
  left: 93px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: rgba(255, 255, 255, 0.22);
}

.event-timeline div {
  position: relative;
  display: grid;
  grid-template-columns: 76px 34px 1fr;
  column-gap: 10px;
  align-items: start;
}

.event-timeline time {
  grid-row: 1 / span 2;
  color: var(--surface);
  font-weight: 900;
}

.event-timeline time::after {
  content: "";
  position: absolute;
  left: 85px;
  top: 0.18rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid rgba(255, 255, 255, 0.9);
}

.event-timeline strong {
  grid-column: 3;
  font-size: 0.98rem;
}

.event-timeline span {
  grid-column: 3;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.why-box {
  padding: 25px 24px;
  border: 1px solid rgba(255, 255, 255, 0.78);
}

.why-box h3 {
  margin: 0 0 18px;
  font-size: 1rem;
}

.why-box .check-list {
  margin: 0;
}

.why-box li {
  color: rgba(255, 255, 255, 0.88);
}

.membership {
  max-width: var(--max);
  margin: 0 auto;
  padding: 62px 48px;
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(260px, 0.48fr) minmax(330px, 0.74fr);
  gap: 34px;
  align-items: center;
}

.membership h2 {
  margin: 0 0 4px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  font-size: clamp(2.3rem, 3.4vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1;
}

.price-line {
  display: flex;
  align-items: end;
  gap: 12px;
}

.price-line strong {
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  line-height: 0.92;
  font-weight: 900;
}

.price-line span {
  padding-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 900;
}

.membership-copy > p {
  margin: 4px 0 16px;
  color: var(--ink-2);
}

.application-note {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.info-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

.application-note h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  text-transform: uppercase;
}

.application-note p {
  margin: 0 0 24px;
  color: var(--ink-2);
  font-size: 0.95rem;
}

.membership-photo {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.membership-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: 55% 46%;
}

.membership-photo div {
  position: absolute;
  right: 30px;
  top: 42px;
  max-width: 190px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.membership-photo strong {
  display: block;
}

.membership-photo strong:last-child {
  color: var(--red);
}

.application {
  padding-top: 28px;
}

.application-head {
  text-align: center;
}

.application-head h2 {
  margin-bottom: 8px;
}

.application-head p {
  margin: 0 0 28px;
  color: var(--muted);
}

.quiz-shell {
  display: grid;
  grid-template-columns: 220px 1fr 210px;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.quiz-steps ol {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  list-style: none;
}

.quiz-steps li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 13px;
  align-items: center;
  color: var(--ink-2);
  font-size: 0.82rem;
  font-weight: 750;
}

.quiz-steps span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf2f8;
  color: var(--ink);
  font-size: 0.78rem;
}

.quiz-steps li.is-active span {
  background: var(--blue);
  color: var(--surface);
}

.quiz-main {
  padding: 0 28px;
  border-inline: 1px solid var(--line);
}

.quiz-progress,
.mini-progress {
  height: 8px;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6ebf2;
}

.quiz-progress span,
.mini-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--blue);
  transition: width 220ms ease;
}

.quiz-kicker {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.quiz-title {
  margin: 0 0 18px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.option-list {
  display: grid;
  gap: 9px;
}

.option-button {
  width: 100%;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  padding: 3px 0;
}

.option-dot {
  width: 14px;
  height: 14px;
  margin-top: 3px;
  border: 1px solid #9aa5b3;
  border-radius: 50%;
}

.option-button.is-selected .option-dot {
  border: 4px solid var(--blue);
}

.option-title {
  display: block;
  font-size: 0.92rem;
}

.option-copy {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.quiz-actions {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.text-button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.quiz-status {
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

.quiz-status span {
  color: var(--ink-2);
  font-size: 0.86rem;
  font-weight: 800;
}

.quiz-status strong {
  display: block;
  margin-top: 12px;
  font-size: 2.2rem;
  line-height: 1;
}

.quiz-status .mini-progress {
  margin: 12px 0 16px;
}

.quiz-status p {
  margin: 9px 0;
  color: var(--ink-2);
  font-size: 0.82rem;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

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

.field label {
  font-size: 0.82rem;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px;
  background: var(--surface);
  color: var(--ink);
}

.field textarea {
  min-height: 92px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(7, 92, 255, 0.14);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.success-panel {
  min-height: 310px;
  display: grid;
  place-items: center;
  text-align: center;
}

.success-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--surface);
  font-weight: 900;
}

.success-panel h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.12;
}

.success-panel p {
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 52px 48px;
  display: grid;
  place-items: center;
  background: linear-gradient(100deg, #034eda, var(--blue));
  color: var(--surface);
  text-align: center;
}

.final-cta h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.final-cta p {
  margin: 9px 0 24px;
  font-weight: 700;
}

.final-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.cta-network {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 260px;
}

.cta-network path {
  stroke: rgba(255, 255, 255, 0.5);
}

.cta-network circle {
  fill: var(--blue);
  stroke: var(--surface);
}

.faq {
  padding-block: 56px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.faq-grid h3 {
  margin: 0 0 8px;
}

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

.founder-section {
  padding: 78px 48px 86px;
  background:
    linear-gradient(90deg, rgba(7, 92, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 14, 26, 0.045) 1px, transparent 1px),
    #f7f9fd;
  background-size: 78px 78px;
}

.founder-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: start;
}

.founder-heading {
  position: sticky;
  top: calc(var(--header) + 28px);
}

.founder-heading h2 {
  margin: 0;
  max-width: 560px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  font-size: clamp(2.15rem, 3.3vw, 3.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.founder-letter {
  position: relative;
  padding: 8px 0 0 34px;
  border-left: 4px solid var(--red);
}

.founder-letter::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  width: 4px;
  height: 42%;
  background: var(--blue);
}

.founder-letter p {
  margin: 0 0 20px;
  color: var(--ink-2);
  font-size: clamp(1.04rem, 1.3vw, 1.22rem);
  line-height: 1.72;
}

.founder-signature {
  margin-top: 34px;
  display: grid;
  gap: 4px;
}

.founder-signature span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-signature strong {
  color: var(--ink);
  font-family: "Brush Script MT", "Segoe Script", "Apple Chancery", cursive;
  font-size: clamp(2.35rem, 4.2vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
  transform: rotate(-2deg);
  transform-origin: left center;
}

.site-footer {
  padding: 34px 48px;
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  gap: 32px;
  background: #05080f;
  color: rgba(255, 255, 255, 0.86);
}

.footer-brand {
  width: min(100%, 300px);
  padding: 10px;
  background: var(--surface);
}

.footer-brand img {
  width: 100%;
  height: auto;
  display: block;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-size: 0.85rem;
}

.footer-contact {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
}

.legal-page {
  min-height: calc(100svh - var(--header));
  padding: 96px 48px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(7, 92, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 14, 26, 0.045) 1px, transparent 1px),
    var(--surface);
  background-size: 78px 78px;
}

.legal-card {
  width: min(100%, 820px);
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.legal-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-card h1 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.legal-content {
  margin: 36px 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 16px;
  font-size: 1.1rem;
}

.legal-content address {
  color: var(--ink-2);
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.8;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% + 8px);
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
    justify-content: stretch;
  }

  .header-actions {
    justify-self: end;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-collage {
    height: 560px;
  }

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

  .benefit-grid article:nth-child(3n) {
    border-right: 0;
  }

  .events,
  .membership,
  .quiz-shell,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quiz-main {
    border-inline: 0;
    padding: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 70px;
  }

  .site-header {
    padding: 12px 20px;
  }

  .brand {
    width: min(230px, 64vw);
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .format-section,
  .benefits,
  .application,
  .faq,
  .membership {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-top: 42px;
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4.1rem);
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  .hero-claim {
    font-size: 1.34rem;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions,
  .final-actions,
  .quiz-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .hero-collage {
    min-height: 440px;
    height: 440px;
  }

  .tile-main {
    left: 0;
    height: 45%;
  }

  .network-card {
    width: 44%;
    height: 45%;
  }

  .format-section h2,
  .benefits h2,
  .application h2,
  .faq h2,
  .events-copy h2,
  .final-cta h2 {
    text-align: left;
  }

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

  .format-card {
    padding: 104px 24px 28px;
  }

  .format-icon {
    left: 24px;
    top: 24px;
  }

  .format-center {
    position: static;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 44px 1fr;
    place-items: start;
    align-items: center;
    padding: 18px;
    border-radius: 0;
    transform: none;
  }

  .format-center svg {
    grid-row: span 3;
  }

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

  .benefit-grid article {
    border-bottom: 1px solid var(--line);
  }

  .benefit-grid article:nth-child(2n) {
    border-right: 0;
  }

  .events {
    padding: 48px 20px;
    grid-template-columns: 1fr;
  }

  .membership-photo {
    min-height: 240px;
  }

  .field-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .founder-section {
    padding: 56px 20px 64px;
  }

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

  .founder-heading {
    position: static;
  }

  .founder-letter {
    padding-left: 22px;
  }

  .quiz-shell {
    padding: 20px;
  }

  .quiz-status {
    order: -1;
  }

  .site-footer {
    padding: 32px 20px;
  }

  .legal-page {
    padding: 62px 20px;
  }
}
