:root {
  color-scheme: dark;
  --bg: #090b0f;
  --bg-2: #10151a;
  --panel: #151b20;
  --panel-2: #1b2227;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f3f7f8;
  --muted: #a9b5ba;
  --cyan: #23d6ff;
  --lime: #b7ff3c;
  --gold: #ffba49;
  --pink: #ff5cac;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--lime);
  color: #0b0f12;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(7, 9, 12, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

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

.site-nav a {
  color: var(--muted);
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 700;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 520px);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
  overflow: hidden;
  padding: 118px clamp(18px, 5vw, 76px) 56px;
  background:
    radial-gradient(circle at 78% 24%, rgba(35, 214, 255, 0.13), transparent 31%),
    radial-gradient(circle at 20% 82%, rgba(190, 255, 77, 0.11), transparent 34%),
    linear-gradient(90deg, rgba(9, 11, 15, 0.98), rgba(9, 11, 15, 0.72) 54%, rgba(9, 11, 15, 0.96)),
    #090b0f;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 80px),
    linear-gradient(132deg, transparent 0 19%, rgba(35, 214, 255, 0.12) 19% 19.25%, transparent 19.25% 48%, rgba(190, 255, 77, 0.1) 48% 48.22%, transparent 48.22%),
    linear-gradient(23deg, transparent 0 62%, rgba(255, 186, 73, 0.08) 62% 62.24%, transparent 62.24%);
  opacity: 0.78;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(700px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 8.8vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.1;
}

.hero-copy {
  margin: 24px 0 0;
  max-width: 610px;
  color: #d8e3e6;
  font-size: clamp(1.06rem, 2.4vw, 1.35rem);
}

.hero-board {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(18, 27, 31, 0.96), rgba(8, 12, 15, 0.96)),
    rgba(12, 17, 20, 0.92);
  border: 1px solid rgba(35, 214, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(12px);
}

.hero-board::before {
  content: "";
  position: absolute;
  inset: -22px;
  z-index: -1;
  background: radial-gradient(circle at 50% 10%, rgba(35, 214, 255, 0.18), rgba(9, 11, 15, 0.92) 58%);
  border-radius: 12px;
}

.hero-board-body {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2vw, 26px);
}

.hero-product-art {
  position: relative;
  min-height: 280px;
  padding: 28px;
  background:
    radial-gradient(circle at 78% 18%, rgba(183, 255, 60, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(35, 214, 255, 0.12), transparent 40%),
    #0b1115;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cover-card {
  position: relative;
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 224px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(218, 250, 255, 0.86)),
    #f4fbff;
  color: #071013;
  border: 1px solid rgba(35, 214, 255, 0.44);
  border-radius: 8px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.cover-card::before {
  content: "";
  position: absolute;
  inset: 22px 22px auto;
  height: 7px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  border-radius: 999px;
}

.cover-card span,
.product-visual span {
  color: rgba(7, 16, 19, 0.62);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.cover-card strong {
  max-width: 280px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.9;
}

.cover-card p {
  margin: 0;
  color: rgba(7, 16, 19, 0.72);
  font-weight: 800;
}

.cover-card i {
  display: block;
  width: 64%;
  height: 8px;
  background: rgba(35, 214, 255, 0.35);
  border-radius: 999px;
}

.cover-card i:nth-of-type(2) {
  width: 78%;
}

.cover-card i:nth-of-type(3) {
  width: 52%;
}

.hero-metric {
  position: absolute;
  right: 46px;
  top: 46px;
  display: grid;
  gap: 2px;
  min-width: 124px;
  padding: 14px 16px;
  background: rgba(7, 13, 16, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.hero-metric span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.hero-metric strong {
  color: var(--lime);
  font-size: 3.4rem;
  line-height: 0.86;
}

.hero-board h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.45rem);
  line-height: 1.02;
}

.hero-board p {
  margin: 0;
  color: #d7e2e5;
}

.board-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.board-points span {
  color: #dbe6e8;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-actions,
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, #c8ff56, var(--lime));
  border-color: rgba(190, 255, 77, 0.8);
  color: #0a0d10;
  box-shadow: 0 12px 36px rgba(183, 255, 60, 0.12);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.signal-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.signal-strip div {
  min-height: 120px;
  padding: 22px clamp(18px, 4vw, 46px);
  background: #0e1216;
}

.signal-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.signal-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 76px);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading.compact {
  max-width: 620px;
  margin-bottom: 0;
}

.products-section {
  background: #0d1115;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 170ms ease, border-color 170ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(190, 255, 77, 0.34);
}

.product-card.featured {
  grid-column: span 2;
}

.product-visual {
  position: relative;
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 250px;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 16%, rgba(183, 255, 60, 0.28), transparent 24%),
    linear-gradient(145deg, rgba(245, 253, 255, 0.98), rgba(213, 247, 255, 0.9)),
    #f4fbff;
  color: #071013;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.product-visual::before {
  inset: 24px 22px auto;
  height: 7px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  border-radius: 999px;
}

.product-visual::after {
  right: 22px;
  bottom: 22px;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(7, 16, 19, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(7, 16, 19, 0.12) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(7, 16, 19, 0.12) 49% 51%, transparent 52%);
}

.product-visual strong {
  position: relative;
  z-index: 1;
  max-width: 270px;
  color: #071013;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 0.92;
}

.product-visual em {
  position: relative;
  z-index: 1;
  max-width: 240px;
  color: rgba(7, 16, 19, 0.72);
  font-style: normal;
  font-weight: 800;
}

.product-visual.operator {
  background:
    radial-gradient(circle at 84% 16%, rgba(35, 214, 255, 0.32), transparent 24%),
    linear-gradient(145deg, rgba(245, 253, 255, 0.98), rgba(230, 236, 255, 0.9));
}

.product-visual.cashflow {
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 186, 73, 0.34), transparent 24%),
    linear-gradient(145deg, rgba(255, 252, 244, 0.98), rgba(235, 251, 239, 0.9));
}

.product-visual.launch {
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 92, 172, 0.3), transparent 24%),
    linear-gradient(145deg, rgba(255, 246, 252, 0.98), rgba(222, 247, 255, 0.9));
}

.product-card-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.product-card p,
.method-list p,
.briefing-band p,
.site-footer p,
.legal-content p,
.legal-content li {
  color: var(--muted);
}

.tag {
  justify-self: start;
  color: #081012;
  background: var(--cyan);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tag.lime {
  background: var(--lime);
}

.tag.gold {
  background: var(--gold);
}

.tag.pink {
  background: var(--pink);
}

.product-meta {
  display: grid;
  gap: 6px;
  color: #d1dade;
  font-size: 0.9rem;
}

.text-link {
  color: var(--lime);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
  background: #101418;
}

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

.method-list > div,
.briefing-panel,
.signup-form,
.video-panel,
.included-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 28px);
}

.method-list > div {
  min-height: 132px;
}

.step {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--cyan);
  font-weight: 900;
}

.briefing-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: 30px;
  align-items: center;
  background: #0c1013;
}

.briefing-band h2 {
  max-width: 900px;
}

.briefing-band p {
  max-width: 760px;
}

.briefing-panel ul,
.legal-content ul,
.included-panel ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.briefing-panel li + li,
.legal-content li + li,
.included-panel li + li {
  margin-top: 10px;
}

.first-access {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: start;
  background: #11161a;
}

.signup-form label {
  display: block;
  margin-bottom: 8px;
  color: #dbe4e7;
  font-weight: 800;
}

.signup-form .form-row {
  margin-top: 0;
  flex-wrap: nowrap;
}

input {
  min-width: 0;
  width: 100%;
  min-height: 48px;
  background: #0a0e11;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  padding: 0 14px;
}

input:focus {
  outline: 2px solid rgba(190, 255, 77, 0.38);
  outline-offset: 2px;
}

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

.hidden {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 76px);
  background: #080a0d;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 5px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
}

.product-hero {
  min-height: 76svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: 112px clamp(18px, 5vw, 76px) 62px;
  background:
    linear-gradient(120deg, rgba(35, 214, 255, 0.12), transparent 34%),
    linear-gradient(300deg, rgba(190, 255, 77, 0.08), transparent 38%),
    #0d1115;
}

.product-hero h1 {
  font-size: clamp(3rem, 9vw, 7rem);
}

.product-hero p {
  color: #dce6e8;
  font-size: clamp(1.02rem, 2.2vw, 1.28rem);
}

.product-cover {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 24px;
  background: #101418;
}

.product-story {
  display: grid;
  gap: 22px;
}

.video-panel {
  min-height: 280px;
  display: grid;
  align-content: center;
  background:
    linear-gradient(135deg, rgba(255, 186, 73, 0.12), transparent 42%),
    var(--panel);
}

.video-panel span {
  color: var(--cyan);
  font-weight: 900;
}

.included-panel {
  position: sticky;
  top: 90px;
}

.legal-hero,
.legal-content {
  padding: 120px clamp(18px, 5vw, 76px) 60px;
}

.legal-content {
  padding-top: 20px;
  max-width: 980px;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 110px;
    gap: 28px;
  }

  .hero-content {
    width: min(720px, 100%);
    max-width: calc(100vw - 36px);
    padding-bottom: 0;
  }

  .hero-board {
    width: 100%;
    max-width: 720px;
    margin-top: 18px;
  }

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

  .split-section,
  .briefing-band,
  .first-access,
  .product-hero,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .section-heading.compact {
    margin-bottom: 24px;
  }

  .included-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-inline: 14px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 65px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: rgba(16, 21, 26, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-inline: 24px;
    padding-bottom: 34px;
  }

  .hero-content,
  .hero-board,
  .hero-actions {
    width: 100%;
    max-width: 100%;
  }

  .hero-product-art {
    min-height: auto;
    padding: 18px;
  }

  .cover-card {
    min-height: 190px;
    padding: 18px;
  }

  .cover-card strong {
    max-width: 210px;
    font-size: 2.15rem;
  }

  .hero-metric {
    right: 28px;
    top: 28px;
    min-width: 92px;
    padding: 10px 11px;
  }

  .hero-metric span {
    font-size: 0.64rem;
  }

  .hero-metric strong {
    font-size: 2.4rem;
  }

  .product-visual {
    min-height: 220px;
  }

  .hero-board h2 {
    font-size: 1.65rem;
  }

  .hero-board-body {
    padding: 18px;
  }

  h1 {
    font-size: 3.1rem;
    line-height: 0.96;
  }

  .product-hero h1 {
    font-size: 2.7rem;
    line-height: 1;
  }

  .hero-actions .button,
  .form-row .button {
    width: 100%;
    max-width: 100%;
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }

  .signal-strip div {
    min-height: auto;
  }

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

  .product-card.featured {
    grid-column: auto;
  }

  .signup-form .form-row {
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
  }
}
