:root {
  --bg: #070c17;
  --ink: #ebf2ff;
  --muted: #9ab0cc;
  --brand: #1f88ff;
  --brand-deep: #0e57be;
  --accent: #ff8d5f;
  --card: #0e1728;
  --line: rgba(132, 173, 229, 0.24);
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow: 0 22px 48px rgba(2, 7, 16, 0.6);
  --anchor-offset: 7rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Plus Jakarta Sans", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  color-scheme: dark;
  background:
    radial-gradient(circle at 15% -4%, rgba(31, 136, 255, 0.25), transparent 35%),
    radial-gradient(circle at 95% 8%, rgba(255, 141, 95, 0.18), transparent 31%),
    linear-gradient(180deg, #0a1220 0%, #0b1424 52%, #080f1c 100%);
  line-height: 1.5;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(175, 208, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(175, 208, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 80%);
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #85bcff;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: #f2f7ff;
  color: #06101f;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  width: min(1180px, calc(100vw - 2.4rem));
  margin: 1rem auto 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(11, 19, 34, 0.86);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0.8rem;
  z-index: 50;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
}

.brand-logo {
  width: clamp(88px, 11vw, 132px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 7px 18px rgba(0, 74, 150, 0.18));
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.button {
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.66rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button.solid {
  background: linear-gradient(140deg, var(--brand), var(--brand-deep));
  color: #fff;
  box-shadow: 0 10px 24px rgba(12, 79, 172, 0.45);
}

.button.ghost {
  background: rgba(17, 28, 48, 0.9);
  border-color: var(--line);
  color: #d7e7ff;
}

main {
  width: min(1180px, calc(100vw - 2.4rem));
  margin: 2.2rem auto 0;
}

.section {
  margin: 0 0 4.4rem;
  scroll-margin-top: var(--anchor-offset);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
}

.kicker {
  margin: 0 0 0.55rem;
  font-size: 0.84rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--brand-deep);
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.2rem, 4.8vw, 4.3rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.6rem, 3.1vw, 2.5rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.lede {
  margin: 1rem 0 1.2rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.9vw, 1.22rem);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.hero-note {
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.mockup-stack {
  position: relative;
  margin: 0;
  padding: 2rem 0 0;
}

.mockup-stack img {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.mockup-stack img:first-child {
  transform: rotate(-1.5deg);
}

.mockup-stack img:last-child {
  position: absolute;
  right: 0;
  bottom: -1.6rem;
  width: 72%;
  transform: rotate(2deg);
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.proof-card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 18px rgba(16, 34, 57, 0.08);
}

.proof-question {
  margin: 0;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
}

.story {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.5rem);
}

.story__reasons {
  display: grid;
  gap: 1.2rem;
}

.story__reasons .section-heading {
  margin-bottom: 0;
}

.section-heading {
  margin-bottom: 1.2rem;
}

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

.feature-card,
.panel,
.check-item,
.access-request {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 28px rgba(2, 7, 16, 0.45);
}

.access-request--callout {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.access-request__actions {
  display: grid;
  justify-items: start;
  gap: 0.8rem;
}

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(1.4rem, 4vw, 4.5rem);
}

.feature-showcase--reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.feature-showcase--reverse .feature-showcase__copy {
  order: 2;
}

.feature-showcase--reverse .product-frame {
  order: 1;
}

.feature-showcase__copy .lede {
  margin-bottom: 1rem;
}

.feature-showcase__list {
  margin: 0 0 1.1rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.feature-showcase__list li + li {
  margin-top: 0.5rem;
}

.text-link {
  color: #a8cdfd;
  font-weight: 800;
  text-decoration-color: rgba(168, 205, 253, 0.52);
  text-underline-offset: 0.22em;
}

.text-link:hover {
  color: #fff;
}

.product-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(157, 192, 239, 0.38);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #14213a, #0a1220);
  box-shadow: var(--shadow);
}

.product-frame img {
  width: 100%;
  min-height: 0;
  object-fit: cover;
}

.product-frame--recital img {
  aspect-ratio: 1.6;
  object-position: center;
}

.product-frame--viewer img {
  aspect-ratio: 1.6;
  object-position: center;
}

.backstage-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(7.5rem, 0.32fr);
  align-items: end;
  gap: 0.75rem;
}

.product-frame--viewer-mobile img {
  aspect-ratio: 0.5;
  object-position: top center;
}

.product-frame--rehearsal img {
  aspect-ratio: 1.6;
  object-position: center;
}

.product-frame figcaption {
  padding: 0.72rem 0.9rem 0.8rem;
  color: var(--muted);
  font-size: 0.87rem;
}

.track-control__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.track-control__card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: 0 14px 28px rgba(2, 7, 16, 0.45);
}

.track-control__card .kicker,
.track-control__card h3,
.track-control__card p {
  margin: 0;
}

.track-control__card > p:not(.kicker) {
  color: var(--muted);
}

.product-frame--options img {
  aspect-ratio: 1.25;
  object-fit: contain;
  background: #0b1424;
}

.product-frame--metadata img {
  aspect-ratio: 1.72;
  object-position: center;
}

.feature-card {
  padding: 1.2rem;
}

.feature-card h3 {
  margin-bottom: 0.55rem;
}

.feature-card p,
.panel li {
  color: var(--muted);
}

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

.panel {
  padding: 1.25rem;
}

.panel ul {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
}

.readiness {
  position: relative;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.check-item {
  padding: 1rem;
  font-weight: 600;
  background:
    linear-gradient(120deg, rgba(19, 31, 52, 0.92), rgba(13, 23, 40, 0.95)),
    linear-gradient(120deg, rgba(31, 136, 255, 0.15), rgba(255, 141, 95, 0.14));
}

.markets {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.4rem;
  background:
    radial-gradient(circle at 80% 18%, rgba(31, 136, 255, 0.2), transparent 35%),
    #0d182b;
}

.access-request {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  padding: clamp(1.25rem, 3vw, 2.2rem);
  background:
    radial-gradient(circle at 92% 8%, rgba(31, 136, 255, 0.2), transparent 31%),
    linear-gradient(135deg, rgba(16, 30, 52, 0.97), rgba(10, 18, 32, 0.98));
}

.access-request__copy p:not(.kicker) {
  color: var(--muted);
}

.access-request__note {
  font-size: 0.9rem;
}

.access-form {
  display: grid;
  gap: 0.9rem;
}

.access-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.access-form label:not(.access-form__honeypot) {
  display: grid;
  gap: 0.36rem;
  color: #c8daf4;
  font-size: 0.88rem;
  font-weight: 700;
}

.access-form input,
.access-form textarea {
  width: 100%;
  border: 1px solid rgba(145, 181, 229, 0.34);
  border-radius: 10px;
  padding: 0.72rem 0.82rem;
  background: rgba(4, 11, 22, 0.72);
  color: var(--ink);
  font: inherit;
}

.access-form textarea {
  resize: vertical;
  min-height: 7rem;
}

.access-form input::placeholder,
.access-form textarea::placeholder {
  color: #7890ae;
}

.access-form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.access-form__actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.access-form__actions .button {
  cursor: pointer;
  font: inherit;
}

.access-form__actions .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.access-form__privacy,
.access-form__status {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.access-form__privacy {
  max-width: 46ch;
}

.access-form__privacy a {
  color: #b7d5fb;
}

.access-form__status {
  min-height: 1.25rem;
}

.access-form__status.is-error {
  color: #ffc0a7;
}

.access-form__status.is-success {
  color: #a9e4bd;
}

.site-footer {
  margin-top: 1rem;
  padding: 1.8rem 1rem 2.6rem;
  color: #8ea5c2;
  font-size: 0.93rem;
}

.site-footer__inner {
  width: min(1180px, calc(100vw - 2.4rem));
  margin: 0 auto;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
}

.site-footer__identity p {
  margin: 0;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1rem;
}

.site-footer__links a {
  color: #b6cae4;
  text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: #fff;
}

.site-footer__pth img {
  width: 145px;
  height: auto;
}

.footer-logo {
  width: min(175px, 52vw);
  margin: 0 0 0.58rem;
  opacity: 0.95;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

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

  .mockup-stack {
    margin-top: 0.6rem;
  }

  .proof,
  .feature-grid,
  .split,
  .check-grid,
  .feature-showcase,
  .feature-showcase--reverse,
  .access-request,
  .track-control__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-showcase--reverse .feature-showcase__copy,
  .feature-showcase--reverse .product-frame,
  .feature-showcase--reverse .backstage-visuals {
    order: initial;
  }
}

@media (max-width: 760px) {
  :root {
    --anchor-offset: 11rem;
  }

  .site-header {
    border-radius: 20px;
    padding: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand {
    flex-direction: column;
    gap: 0.35rem;
  }

  .site-nav {
    order: 2;
    width: 100%;
    justify-content: center;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(9, 27, 43, 0.1);
  }

  main {
    margin-top: 1.4rem;
  }

  .proof,
  .feature-grid,
  .split,
  .check-grid,
  .feature-showcase,
  .feature-showcase--reverse,
  .access-request,
  .access-form__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer__pth {
    justify-self: center;
  }

  .access-request__actions {
    justify-items: stretch;
  }

  .mockup-stack {
    padding-top: 0.5rem;
  }

  .mockup-stack img:last-child {
    position: relative;
    width: 90%;
    bottom: auto;
    margin: -0.8rem 0 0 auto;
  }
}
