:root {
  --ink: #0b0d11;
  --ink-850: #11141a;
  --ink-800: #181c24;
  --mist-500: #6e737e;
  --mist-300: #b5b8be;
  --mist-200: #d6d7da;
  --linen-50: #fafaf7;
  --linen-100: #f4f4f0;
  --linen-200: #ecece7;
  --signal: #34d399;
  --signal-dark: #1f8a65;
  --gold: #e5a951;
  --gold-dark: #8f6320;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(11, 13, 17, 0.16);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--linen-100);
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-size: 42px;
  max-width: 760px;
}

.headline-value {
  color: var(--gold);
  text-shadow: 0 10px 34px rgba(229, 169, 81, 0.2);
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 22px;
}

p {
  color: rgba(11, 13, 17, 0.74);
}

strong {
  color: inherit;
  font-weight: 700;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.top-strip {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 8px 14px;
  background: #c90d17;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.top-strip p {
  color: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.spots-pill {
  display: inline-flex;
  min-width: 52px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  padding: 0 11px;
  border-radius: 999px;
  background: #d9dedc;
  color: #c90d17;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.header-cta {
  border: 1px solid rgba(229, 169, 81, 0.5);
  background: var(--gold);
  color: var(--ink);
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.site-header {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--container));
  margin: 18px auto 0;
  color: var(--linen-100);
}

.logo-slot {
  display: inline-flex;
  align-items: center;
  width: 238px;
  height: 64px;
}

.logo-slot__image {
  display: block;
  width: 100%;
  height: auto;
}

.header-cta {
  display: none;
}

.section-dark {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: 104px 104px;
  color: var(--linen-100);
}

.section-dark p,
.section-ink p {
  color: rgba(244, 244, 240, 0.72);
}

.hero {
  padding: 92px 0 32px;
  overflow: hidden;
}

.hero__inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--signal) !important;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero__copy {
  padding-top: 24px;
}

.hero__lead {
  margin-top: 20px;
  font-size: 18px;
  color: rgba(244, 244, 240, 0.84) !important;
}

.hero__lead + .button {
  margin-top: 28px;
}

.barrier-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.barrier-list li {
  position: relative;
  padding: 10px 12px 10px 34px;
  border: 1px solid rgba(244, 244, 240, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(244, 244, 240, 0.88);
}

.barrier-list li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(229, 169, 81, 0.22);
}

.button-primary:hover {
  background: #f0b862;
}

.microcopy {
  margin-top: 12px;
  color: rgba(244, 244, 240, 0.6) !important;
  font-size: 13px;
}

.hero__microcopy {
  display: grid;
  gap: 3px;
  justify-items: center;
  max-width: 520px;
  color: rgba(244, 244, 240, 0.84) !important;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.hero__date {
  margin-top: 2px;
}

.hero__microcopy strong {
  color: var(--linen-100);
  font-weight: 800;
}

.photo-slot,
.testimonial-slot {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  border: 1px dashed rgba(244, 244, 240, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    rgba(255, 255, 255, 0.035);
  background-size: 44px 44px;
  text-align: center;
}

.photo-slot__label,
.testimonial-slot span {
  color: var(--linen-100);
  font-size: 22px;
  font-weight: 700;
}

.photo-slot p,
.testimonial-slot p {
  max-width: 360px;
  font-size: 14px;
}

.hero-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 244, 240, 0.16);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.proof-strip {
  width: min(100% - 32px, var(--container));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.proof-card {
  position: relative;
  display: grid;
  min-height: 76px;
  align-content: center;
  gap: 4px;
  overflow: hidden;
  padding: 16px 14px;
  border: 1px solid rgba(244, 244, 240, 0.13);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: center;
}

.proof-card::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.78;
}

.proof-card strong {
  color: var(--linen-100);
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  line-height: 1;
}

.proof-card small {
  color: rgba(244, 244, 240, 0.62);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  line-height: 1.25;
  text-transform: uppercase;
}

.section {
  padding: 64px 0;
}

.section-light {
  background: var(--linen-50);
}

.section-lino {
  background: var(--linen-100);
}

.section-ink {
  background: var(--ink-850);
  color: var(--linen-100);
}

.split {
  display: grid;
  gap: 28px;
}

.split--center {
  align-items: center;
}

.text-flow {
  display: grid;
  gap: 16px;
}

.quote-block {
  padding: 20px;
  border-left: 4px solid var(--signal);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--linen-100);
  font-size: 18px;
  line-height: 1.45;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading p {
  margin-top: 14px;
  font-size: 18px;
}

.flow-diagram {
  display: grid;
  gap: 12px;
}

.flow-step {
  min-height: 118px;
  padding: 20px;
  border: 1px solid rgba(244, 244, 240, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.flow-step span,
.card-number,
.night-card__tag {
  display: block;
  margin-bottom: 10px;
  color: var(--signal);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.flow-step strong {
  color: var(--linen-100);
  font-size: 22px;
}

.flow-step--accent {
  border-color: rgba(229, 169, 81, 0.65);
}

.flow-arrow {
  width: 1px;
  height: 24px;
  margin-left: 24px;
  background: var(--signal);
}

.testimonial-grid,
.metric-grid,
.fit-grid {
  display: grid;
  gap: 12px;
}

.night-card,
.fit-block,
details {
  border: 1px solid var(--linen-200);
  border-radius: var(--radius);
  background: var(--white);
}

.night-card,
.fit-block {
  padding: 20px;
}

.night-card p {
  margin-top: 12px;
}

.center-cta {
  margin-top: 28px;
}

.night-stack {
  display: grid;
  gap: 14px;
}

.testimonial-slot {
  min-height: 240px;
  border-color: var(--mist-200);
  background:
    linear-gradient(rgba(11, 13, 17, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 13, 17, 0.045) 1px, transparent 1px),
    var(--linen-50);
  background-size: 40px 40px;
}

.testimonial-slot span {
  color: var(--ink);
}

.testimonial-video-card {
  width: min(100%, 310px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--linen-200);
  border-radius: var(--radius);
  background: var(--white);
}

.testimonial-video-card--square {
  width: 100%;
}

.testimonial-trigger {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: pointer;
  aspect-ratio: 9 / 16;
  background: var(--ink);
}

.testimonial-trigger--square {
  aspect-ratio: 1 / 1;
}

.testimonial-trigger img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.testimonial-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 13, 17, 0.08), rgba(11, 13, 17, 0.26));
}

.testimonial-trigger:hover img {
  transform: scale(1.025);
}

.testimonial-trigger__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 70px;
  height: 70px;
  border-radius: 22px;
  transform: translate(-50%, -50%);
  background: rgba(11, 13, 17, 0.86);
  box-shadow: 0 18px 48px rgba(11, 13, 17, 0.32);
}

.testimonial-trigger__play::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 22px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 18px solid var(--white);
}

.photo-slot--authority {
  min-height: 440px;
  border-color: rgba(244, 244, 240, 0.22);
}

.authority-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 244, 240, 0.14);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.authority-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: 52% 18%;
}

.metric-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
}

.metric-grid span {
  padding: 14px;
  border: 1px solid rgba(244, 244, 240, 0.12);
  border-radius: var(--radius);
  color: var(--linen-100);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.fit-block ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.fit-block li {
  position: relative;
  margin-top: 12px;
  padding-left: 24px;
  color: rgba(11, 13, 17, 0.78);
}

.fit-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mist-300);
}

.fit-block--yes {
  border-color: rgba(52, 211, 153, 0.42);
}

.fit-block--yes li::before {
  background: var(--signal);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  padding: 0;
  overflow: hidden;
}

summary {
  min-height: 58px;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  padding: 0 20px 20px;
}

.final-cta {
  padding: 72px 0;
  text-align: center;
}

.final-cta .container {
  max-width: 760px;
}

.final-cta p:not(.eyebrow) {
  margin: 18px auto 26px;
  max-width: 660px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 17, 0.78);
}

.modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100% - 24px, 460px);
  transform: translate(-50%, -50%);
  padding: 26px;
  border-radius: var(--radius);
  background: var(--linen-50);
  box-shadow: var(--shadow);
}

.modal__panel h2 {
  font-size: 28px;
}

.modal__panel > p:not(.eyebrow) {
  margin-top: 12px;
}

.event-date-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 7px;
  border: 1px solid rgba(11, 13, 17, 0.16);
  border-radius: 999px;
  background: var(--ink);
  color: var(--linen-100);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 32px rgba(11, 13, 17, 0.12);
}

.event-date-pill__icon {
  position: relative;
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: var(--linen-100);
  box-shadow: inset 0 0 0 1px rgba(11, 13, 17, 0.16);
  overflow: hidden;
  line-height: 1;
}

.event-date-pill__icon::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: #d96b6b;
}

.event-date-pill__icon::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: rgba(11, 13, 17, 0.18);
  box-shadow: 0 -4px 0 rgba(11, 13, 17, 0.12);
}

.modal-date-pill {
  margin-bottom: 18px;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--linen-200);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.video-modal.is-open {
  display: block;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 17, 0.86);
}

.video-modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100% - 28px, 430px);
  transform: translate(-50%, -50%);
}

.video-modal__panel--square {
  width: min(100% - 28px, 560px);
}

.video-modal__frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(244, 244, 240, 0.16);
  border-radius: var(--radius);
  aspect-ratio: 9 / 16;
  background: var(--ink);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
}

.video-modal__panel--square .video-modal__frame {
  aspect-ratio: 1 / 1;
}

.video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal__close {
  position: absolute;
  right: -10px;
  top: -46px;
  z-index: 1;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(244, 244, 240, 0.18);
  border-radius: 999px;
  background: var(--linen-50);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.signup-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.signup-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
}

.signup-form input {
  width: 100%;
  height: 52px;
  border: 1px solid var(--mist-200);
  border-radius: var(--radius);
  padding: 0 14px;
  background: var(--white);
  color: var(--ink);
}

.signup-form input:focus {
  outline: 2px solid rgba(52, 211, 153, 0.35);
  border-color: var(--signal-dark);
}

.signup-form small {
  color: var(--mist-500);
  font-size: 12px;
  line-height: 1.4;
}

@media (min-width: 760px) {
  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 44px;
  }

  .button {
    width: auto;
    min-width: 250px;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
  }

  .hero {
    padding-top: 116px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.72fr);
    align-items: center;
  }

  .barrier-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .split {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .flow-diagram {
    grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
    align-items: center;
  }

  .flow-arrow {
    width: 28px;
    height: 1px;
    margin: 0;
  }

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

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

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

}

@media (max-width: 520px) {
  .top-strip {
    min-height: 42px;
    padding: 7px 10px;
  }

  .top-strip p {
    font-size: 13px;
  }

  .spots-pill {
    min-width: 45px;
    min-height: 25px;
    margin-inline: 4px;
    padding-inline: 9px;
    font-size: 16px;
  }

  .site-header {
    margin-top: 13px;
  }

  .logo-slot {
    width: 214px;
    height: 58px;
  }

  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 28px;
  }

  .hero__copy {
    padding-top: 0;
  }

  .hero {
    padding-top: 82px;
  }

  .hero__lead {
    margin-top: 16px;
    font-size: 17px;
  }

  .barrier-list {
    gap: 7px;
    margin: 16px 0 20px;
  }

  .barrier-list li {
    padding: 8px 10px 8px 32px;
  }

  .barrier-list li::before {
    top: 15px;
  }

  .photo-slot--hero {
    min-height: 286px;
  }

  .photo-slot {
    padding: 20px;
  }

  .section {
    padding: 54px 0;
  }

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