:root {
  --ink: #161719;
  --muted: #5f6670;
  --paper: #f5f1e8;
  --paper-strong: #fffaf0;
  --line: rgba(22, 23, 25, 0.14);
  --night: #101317;
  --night-2: #1b2025;
  --steel: #8fa3b5;
  --blue: #2d7fae;
  --amber: #d89a35;
  --amber-2: #f4c873;
  --green: #5b8e72;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(16, 19, 23, 0.18);
  --radius: 8px;
  --header-h: 72px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100vw - 1160px) / 2));
  color: var(--white);
  background: linear-gradient(180deg, rgba(16, 19, 23, 0.72), rgba(16, 19, 23, 0));
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header[data-elevated="true"],
.site-header:has(.site-nav.is-open) {
  background: rgba(16, 19, 23, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.site-nav .nav-cta {
  margin-left: 8px;
  color: #1f1b13;
  background: var(--amber-2);
  font-weight: 800;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #1f1b13;
  background: #ffd889;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 72px) 0 54px;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  background-image: url("assets/hero-tlo.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(16, 19, 23, 0.92) 0%, rgba(16, 19, 23, 0.76) 36%, rgba(16, 19, 23, 0.26) 70%, rgba(16, 19, 23, 0.52) 100%),
    linear-gradient(180deg, rgba(16, 19, 23, 0.2) 0%, rgba(16, 19, 23, 0.94) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  max-width: 790px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 11vw, 8.2rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero__support {
  max-width: 700px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
}

.hero__actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button--primary {
  color: #1f1b13;
  background: var(--amber-2);
  box-shadow: 0 12px 30px rgba(216, 154, 53, 0.25);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #ffd889;
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.button--dark {
  color: var(--white);
  background: var(--night);
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero__checks span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
}

.intro-band {
  padding: 46px 0;
  color: var(--white);
  background: var(--night-2);
}

.intro-grid,
.split-grid,
.audience-grid,
.cta-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.split-grid h2,
.audience-grid h2,
.legal-box h2,
.cta-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.intro-copy {
  display: grid;
  gap: 14px;
}

.intro-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.section {
  padding: 86px 0;
}

.section--light {
  background: var(--paper-strong);
}

.video-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(45, 127, 174, 0.2), transparent 42%),
    linear-gradient(315deg, rgba(216, 154, 53, 0.14), transparent 34%),
    #12161b;
}

.video-section .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 24px;
  align-items: stretch;
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #070a0d;
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #070a0d;
}

.video-points {
  display: grid;
  gap: 14px;
}

.video-points article {
  min-height: 148px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.video-points span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #1f1b13;
  background: var(--amber-2);
  font-size: 0.76rem;
  font-weight: 900;
}

.video-points h3 {
  margin: 0;
  font-size: 1.08rem;
}

.video-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:last-child,
.split-grid > div:last-child > p,
.audience-grid > div:first-child > p,
.cta-grid p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.feature-card,
.audience-list article,
.access-grid article,
.legal-box,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-card {
  min-height: 282px;
  padding: 24px;
  box-shadow: 0 12px 26px rgba(22, 23, 25, 0.06);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #1f1b13;
  background: #f1c46d;
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-card h3,
.audience-list h3 {
  margin: 22px 0 10px;
  font-size: 1.18rem;
}

.feature-card p,
.audience-list p,
.access-grid p,
.faq-list p,
.legal-box p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.section--split {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(45, 127, 174, 0.18), transparent 38%),
    var(--night);
}

.panel-preview {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: #20262c;
  box-shadow: var(--shadow);
}

.preview-top {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  background: #15191e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--steel);
  opacity: 0.75;
}

.preview-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px;
}

.metric {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.metric strong {
  font-size: 3rem;
  line-height: 1;
}

.metric span {
  color: rgba(255, 255, 255, 0.65);
}

.metric--accent {
  background: rgba(216, 154, 53, 0.16);
}

.preview-list {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
}

.preview-list span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.04);
}

.preview-list b {
  color: var(--amber-2);
  font-size: 0.88rem;
  white-space: nowrap;
}

.split-grid > div:last-child > p {
  color: rgba(255, 255, 255, 0.72);
}

.steps {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.steps li {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.steps span {
  color: rgba(255, 255, 255, 0.68);
}

.section--audience {
  background: #ece3d2;
}

.showcase-section {
  padding-top: 86px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 46px;
  align-items: center;
}

.showcase-grid > div:first-child p {
  color: var(--muted);
  font-size: 1.04rem;
}

.showcase-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.03;
}

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

.showcase-shot {
  position: relative;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 19, 23, 0.12);
  border-radius: var(--radius);
  background: #11161d;
  box-shadow: 0 12px 30px rgba(22, 23, 25, 0.12);
}

.showcase-shot--large {
  grid-row: span 2;
  min-height: 440px;
}

.showcase-shot img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.showcase-shot figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(244, 200, 115, 0.24);
  border-radius: 999px;
  color: #1f1b13;
  background: rgba(244, 200, 115, 0.92);
  font-size: 0.86rem;
  font-weight: 900;
}

.showcase-screen {
  min-height: 370px;
  display: grid;
  grid-template-columns: 170px 1fr;
  overflow: hidden;
  border: 1px solid rgba(16, 19, 23, 0.12);
  border-radius: var(--radius);
  background: #171b20;
  box-shadow: var(--shadow);
}

.screen-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  color: rgba(255, 255, 255, 0.7);
  background: #111419;
}

.screen-sidebar strong {
  margin-bottom: 18px;
  color: var(--white);
}

.screen-sidebar span {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.screen-main {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.screen-header,
.screen-table span,
.screen-stats span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.screen-header {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: var(--white);
  font-weight: 850;
}

.screen-header b,
.screen-table b {
  color: var(--amber-2);
}

.screen-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.screen-stats span {
  min-height: 90px;
  display: grid;
  align-content: end;
  padding: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.screen-stats b {
  display: block;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.screen-table {
  display: grid;
  gap: 10px;
}

.screen-table span {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.82);
}

.audience-list {
  display: grid;
  gap: 14px;
}

.audience-list article {
  padding: 22px;
}

.audience-list h3 {
  margin-top: 0;
}

.access-section {
  padding-top: 0;
}

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

.access-grid article {
  min-height: 238px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.access-grid span {
  width: max-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #1f1b13;
  background: #f1c46d;
  font-size: 0.78rem;
  font-weight: 900;
}

.access-grid h3 {
  margin: 6px 0 0;
}

.access-grid strong {
  margin-top: 8px;
  color: var(--green);
}

.legal-section {
  padding-top: 0;
}

.legal-box {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  padding: 30px;
  border-left: 6px solid var(--green);
}

.legal-box div:last-child {
  display: grid;
  gap: 14px;
}

.faq-section {
  background: #f0ede6;
}

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

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0 22px;
  font-weight: 850;
}

.faq-list summary::marker {
  color: var(--amber);
}

.faq-list p {
  padding: 0 22px 20px;
}

.cta-section {
  padding: 76px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(216, 154, 53, 0.2), transparent 36%),
    #22272c;
}

.cta-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  align-items: start;
}

.cta-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-actions {
  justify-content: flex-start;
  margin-top: 24px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 750;
}

.contact-form .hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--white);
  background: rgba(12, 14, 17, 0.72);
  font: inherit;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--amber-2);
  box-shadow: 0 0 0 3px rgba(244, 200, 115, 0.16);
}

.contact-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.form-status.is-success {
  color: #bce3c9;
}

.form-status.is-error {
  color: #ffd0c7;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.8);
  background: #0e1013;
}

.footer-grid {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.site-footer p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
  outline: none;
}

.legal-page {
  background: var(--paper-strong);
}

.legal-page .site-header {
  position: sticky;
}

.legal-nav {
  display: flex;
}

.legal-content {
  padding: 74px 0 96px;
}

.legal-content .container {
  max-width: 860px;
}

.legal-content h1 {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1;
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-size: 1.35rem;
}

.legal-content p {
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-content a {
  color: #1d6c91;
  font-weight: 800;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(16, 19, 23, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .intro-grid,
  .split-grid,
  .video-layout,
  .showcase-grid,
  .audience-grid,
  .cta-grid,
  .legal-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 640px) {
  :root {
    --header-h: 64px;
  }

  .container,
  .hero__content {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    padding: 0 14px;
  }

  .brand span {
    font-size: 0.98rem;
  }

  .hero {
    min-height: 90svh;
    padding-bottom: 36px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 18vw, 5.5rem);
  }

  .hero__lead {
    font-size: 1.02rem;
  }

  .hero__support {
    font-size: 0.96rem;
  }

  .hero__actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero__checks span {
    font-size: 0.82rem;
  }

  .section {
    padding: 64px 0;
  }

  .intro-band,
  .cta-section {
    padding: 46px 0;
  }

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

  .feature-card {
    min-height: auto;
  }

  .preview-body {
    grid-template-columns: 1fr;
  }

  .showcase-screen {
    grid-template-columns: 1fr;
  }

  .showcase-gallery {
    grid-template-columns: 1fr;
  }

  .showcase-shot,
  .showcase-shot--large {
    min-height: 260px;
  }

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

  .screen-sidebar strong {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .screen-stats {
    grid-template-columns: 1fr;
  }

  .preview-list {
    grid-column: auto;
  }

  .preview-list span {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 12px 14px;
  }

  .steps li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .legal-box {
    padding: 22px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
