:root {
  color-scheme: dark;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  --background: #090c11;
  --panel: #121720;
  --panel-light: #18202b;
  --border: #273241;
  --text: #f5f7fa;
  --muted: #99a7b8;
  --blue: #2f85e8;
  --blue-light: #69aef8;
  --green: #39ca78;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
}

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

.site-header {
  min-height: 72px;
  padding: 14px max(22px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 12, 17, 0.96);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}


.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.69rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #c4ced9;
  font-size: 0.82rem;
}

.nav-button,
.primary-button,
.secondary-button {
  display: inline-block;
  padding: 11px 16px;
  border-radius: 6px;
  font-weight: 700;
}

.nav-button,
.primary-button {
  background: var(--blue);
  color: white;
}

.secondary-button {
  border: 1px solid var(--border);
  background: var(--panel);
}

.hero {
  width: min(1240px, calc(100% - 40px));
  min-height: 650px;
  margin: auto;
  padding: 80px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--blue-light);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero-copy > p {
  max-width: 720px;
  margin: 26px 0;
  color: #b5c0cd;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero-copy .access-note {
  color: #7f8c9c;
  font-size: 0.77rem;
}

.hero-panel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--panel);
}

.panel-top {
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  color: #aeb9c7;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.preview-box {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background:
    linear-gradient(
      135deg,
      #0b0f15 25%,
      #101620 25%,
      #101620 50%,
      #0b0f15 50%,
      #0b0f15 75%,
      #101620 75%
    );
  background-size: 30px 30px;
  color: #778698;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
}

.story-details {
  padding: 5px 16px;
}

.story-details > div {
  padding: 13px 0;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid var(--border);
}

.story-details small {
  color: var(--muted);
}

.story-details strong {
  font-size: 0.79rem;
  text-align: right;
}

.acceptance-row {
  padding: 15px 16px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  background: var(--panel-light);
  color: var(--muted);
  font-size: 0.69rem;
}

.acceptance-row strong {
  color: var(--green);
}

.section,
.request-section {
  width: min(1240px, calc(100% - 40px));
  margin: auto;
  padding: 85px 0;
}

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

.section-heading h2,
.request-copy h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.12;
}

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

.steps article,
.audience-grid article {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
}

.step-number {
  color: var(--blue-light);
  font-size: 0.72rem;
  font-weight: 800;
}

h3 {
  margin: 15px 0 10px;
}

.steps p,
.audience-grid p,
.request-copy p {
  color: var(--muted);
  line-height: 1.65;
}

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

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border);
}

.feature-list span {
  padding: 18px 5px;
  border-bottom: 1px solid var(--border);
  color: #c3ccd7;
}

.request-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.access-form {
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--panel);
}

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

label {
  display: block;
  margin-bottom: 15px;
  color: #cbd3dc;
  font-size: 0.78rem;
  font-weight: 650;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px;
  border: 1px solid #344256;
  border-radius: 5px;
  background: #0c1118;
  color: white;
  font: inherit;
}

textarea {
  min-height: 125px;
  resize: vertical;
}

.access-form button {
  padding: 12px 17px;
  border: 0;
  border-radius: 6px;
  background: var(--blue);
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.access-form button:disabled {
  opacity: 0.55;
  cursor: wait;
}

#form-message {
  min-height: 20px;
  margin-bottom: 0;
  color: var(--green);
  font-size: 0.78rem;
}

#form-message.error {
  color: #ff8585;
}

footer {
  padding: 28px max(22px, calc((100vw - 1240px) / 2));
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.75rem;
}

footer strong,
footer span {
  display: block;
}

footer strong {
  color: white;
  letter-spacing: 0.1em;
}

footer span {
  margin-top: 4px;
}

@media (max-width: 900px) {
  nav a:not(.nav-button) {
    display: none;
  }

  .hero,
  .request-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 55px;
  }

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

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

@media (max-width: 620px) {
  .hero {
    width: min(100% - 28px, 1240px);
    gap: 40px;
  }

  .section,
  .request-section {
    width: min(100% - 28px, 1240px);
    padding: 60px 0;
  }

  .steps,
  .form-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .story-details > div,
  .acceptance-row,
  footer {
    flex-direction: column;
  }

  .story-details strong {
    text-align: left;
  }
}
