@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Space+Grotesk:wght@400;500;700&display=swap");

:root {
  --bg: #08111f;
  --bg-soft: #10223f;
  --bg-card: rgba(8, 18, 34, 0.84);
  --bg-card-strong: rgba(9, 18, 32, 0.96);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --border: rgba(37, 130, 255, 0.22);
  --border-soft: rgba(255, 255, 255, 0.08);
  --text: #edf4ff;
  --muted: #a1b1c9;
  --accent: #1f7de8;
  --accent-strong: #3a94ff;
  --accent-2: #ff7411;
  --warm: #ffae73;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --screen-bg: #f8fbff;
  --screen-border: #c7d7ec;
  --screen-text: #173b68;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(31, 125, 232, 0.18), transparent 30%),
    radial-gradient(circle at 76% 18%, rgba(255, 116, 17, 0.16), transparent 24%),
    linear-gradient(160deg, #050d18 0%, #0a1629 48%, #08111f 100%);
}

a {
  color: inherit;
}

.site-shell {
  width: min(1320px, calc(100% - 32px));
  margin: 16px auto;
  background: rgba(10, 17, 31, 0.74);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.site-header,
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-soft);
}

.site-footer {
  border-bottom: 0;
  border-top: 1px solid var(--border-soft);
  color: var(--muted);
  font-size: 14px;
}

.site-footer strong {
  color: var(--text);
  margin-right: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: url("../Marketing/Netloom%20Icon.png") center/contain no-repeat;
}

.brand-text {
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 19px;
}

.brand-text span {
  color: var(--accent-2);
}

.top-nav,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.top-nav a,
.footer-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  border: 1px solid transparent;
}

.top-nav a[aria-current="page"],
.top-nav a:hover,
.footer-nav a:hover {
  color: var(--text);
  border-color: var(--border-soft);
  background: rgba(255, 255, 255, 0.04);
}

main {
  padding: 28px;
  display: grid;
  gap: 22px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  padding: 20px 0 8px;
}

.hero.hero-narrow {
  grid-template-columns: 1fr;
}

.hero-copy.full-width {
  max-width: 920px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.section-kicker {
  background: var(--accent-2);
  color: #fff;
  border-color: transparent;
}

h1 {
  margin: 18px 0 16px;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.hero.hero-narrow h1 {
  max-width: 16ch;
}

.lead {
  margin: 0 0 24px;
  max-width: 66ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid var(--border-soft);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  color: #fefefe;
  border-color: rgba(93, 169, 255, 0.45);
  box-shadow: 0 14px 34px rgba(31, 125, 232, 0.34);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.14);
}

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

.btn-primary:hover {
  background: linear-gradient(180deg, #60acff, #2d86ee);
  box-shadow: 0 18px 40px rgba(31, 125, 232, 0.42);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn:focus-visible {
  outline: 2px solid rgba(255, 174, 115, 0.9);
  outline-offset: 3px;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.signal-grid,
.feature-grid,
.screenshot-grid,
.steps-grid,
.tour-grid,
.story-grid,
.roadmap-grid {
  display: grid;
  gap: 16px;
}

.signal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.hero-launch {
  align-items: stretch;
}

.hero-clean {
  align-items: center;
  padding-top: 34px;
}

.launch-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.eyebrow-strong {
  border-color: rgba(31, 125, 232, 0.28);
  color: var(--text);
  background: rgba(31, 125, 232, 0.14);
}

.launch-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 116, 17, 0.14);
  border: 1px solid rgba(255, 116, 17, 0.24);
  color: #ffd6b8;
  font-size: 13px;
  line-height: 1.4;
}

.hero-logo {
  display: block;
  max-width: min(440px, 100%);
  margin: 26px 0 8px;
}

.hero-support {
  margin: 0 0 26px;
  max-width: 68ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.proof-item {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.proof-item span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.signal-card,
.feature-card,
.step-card,
.tour-card,
.roadmap-column,
.story-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
}

.signal-card,
.feature-card,
.step-card,
.tour-card,
.roadmap-column {
  padding: 18px;
}

.signal-card strong,
.feature-card h3,
.step-card h3,
.tour-card h3,
.roadmap-column h3,
.story-copy h3,
.shot-card h3 {
  margin: 0 0 10px;
}

.signal-card span,
.feature-card p,
.step-card p,
.tour-card p,
.roadmap-list li,
.section-heading p,
.story-copy p,
.shot-card p,
.cta-band p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-preview {
  display: flex;
  align-items: stretch;
}

.launch-preview {
  min-width: 0;
}

.hero-panel {
  display: grid;
  gap: 22px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 16%, rgba(31, 125, 232, 0.12), transparent 28%),
    radial-gradient(circle at 78% 24%, rgba(255, 116, 17, 0.12), transparent 24%),
    rgba(8, 18, 34, 0.82);
}

.hero-panel-icon-wrap {
  display: grid;
  place-items: center;
  min-height: 240px;
  border-radius: 22px;
  background:
    linear-gradient(140deg, rgba(31, 125, 232, 0.08), rgba(255, 116, 17, 0.1)),
    rgba(255, 255, 255, 0.02);
}

.hero-panel-icon {
  width: min(100%, 290px);
  height: auto;
}

.hero-panel-copy {
  display: grid;
  gap: 16px;
}

.release-line {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.release-line strong {
  font-size: 18px;
}

.release-line span,
.hero-panel-note {
  color: var(--muted);
  line-height: 1.7;
}

.hero-panel-note {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 116, 17, 0.08);
  border: 1px solid rgba(255, 116, 17, 0.14);
}

.weave-stage {
  position: relative;
  width: 100%;
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 20% 14%, rgba(31, 125, 232, 0.2), transparent 26%),
    radial-gradient(circle at 78% 24%, rgba(255, 116, 17, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(6, 12, 22, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 22px;
}

.stage-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.28;
}

.stage-glow-blue {
  top: 22px;
  right: 48px;
  background: rgba(31, 125, 232, 0.72);
}

.stage-glow-orange {
  bottom: 30px;
  left: 32px;
  background: rgba(255, 116, 17, 0.6);
}

.stage-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  margin-top: 18px;
}

.stage-card {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 18, 34, 0.74);
  backdrop-filter: blur(10px);
  padding: 18px;
}

.stage-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
}

.stage-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.stage-card-icon {
  display: grid;
  place-items: center;
  min-height: 250px;
  background:
    linear-gradient(140deg, rgba(31, 125, 232, 0.08), rgba(255, 116, 17, 0.1)),
    rgba(255, 255, 255, 0.02);
}

.stage-icon {
  width: min(100%, 340px);
  height: auto;
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.4));
}

.stage-card-date {
  min-height: 250px;
}

.stage-card-date.alt {
  background: rgba(18, 25, 41, 0.84);
}

.stage-card-checklist {
  grid-column: 1 / -1;
}

.stage-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 700;
}

.stage-list,
.release-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.preview-frame {
  width: 100%;
  min-height: 460px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(95, 208, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(6, 12, 22, 0.78);
  border: 1px solid var(--border-soft);
  padding: 22px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
}

.preview-head {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.frame-tag {
  margin-left: auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 12px;
}

.preview-body {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 14px;
}

.preview-sidebar,
.preview-main {
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
}

.preview-sidebar {
  display: grid;
  gap: 10px;
  align-content: start;
}

.bar {
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(95, 208, 255, 0.82), rgba(78, 141, 255, 0.22));
}

.bar-short { width: 46%; }
.bar-mid { width: 68%; }
.bar-long { width: 88%; }
.bar.accent {
  background: linear-gradient(90deg, rgba(255, 116, 17, 0.82), rgba(31, 125, 232, 0.24));
}

.preview-panels,
.graph-grid {
  display: grid;
  gap: 12px;
}

.preview-panels {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 12px;
}

.panel-block,
.graph-node {
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.panel-block {
  min-height: 96px;
}

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

.graph-node {
  min-height: 116px;
}

.preview-caption {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 24px;
}

.section-simple {
  padding-top: 28px;
  padding-bottom: 28px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 20px;
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading h2,
.cta-band h2 {
  margin: 16px 0 12px;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

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

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

.shot-card {
  padding: 16px;
  border-radius: 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
}

.shot-window {
  min-height: 220px;
  border-radius: 18px;
  border: 1px solid var(--screen-border);
  background:
    linear-gradient(180deg, rgba(95, 208, 255, 0.08), rgba(255, 255, 255, 0.82)),
    var(--screen-bg);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  padding: 16px;
}

.shot-window.large {
  min-height: 280px;
}

.shot-label {
  text-align: center;
  color: var(--screen-text);
  font-weight: 700;
  line-height: 1.5;
  max-width: 18ch;
}

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

.step-index,
.tour-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: rgba(95, 208, 255, 0.12);
  color: var(--accent);
  font-weight: 700;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

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

.story-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
  padding: 18px;
}

.story-card.reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.story-card.reverse .story-copy {
  order: 2;
}

.story-card.reverse .shot-window {
  order: 1;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.roadmap-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.roadmap-pill {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.roadmap-pill.live {
  background: rgba(95, 208, 255, 0.14);
  color: var(--accent);
}

.roadmap-pill.next {
  background: rgba(31, 125, 232, 0.14);
  color: #8fc0ff;
}

.roadmap-pill.later {
  background: rgba(255, 154, 108, 0.14);
  color: var(--warm);
}

.roadmap-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

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

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

.simple-card {
  padding: 0;
}

.simple-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.simple-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.release-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
}

.release-card h3,
.interest-copy h3 {
  margin: 16px 0 12px;
}

.release-card p,
.interest-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.release-card-preview {
  box-shadow: inset 0 0 0 1px rgba(31, 125, 232, 0.14);
}

.release-card-full {
  box-shadow: inset 0 0 0 1px rgba(255, 116, 17, 0.14);
}

.access-section {
  display: grid;
  gap: 22px;
}

.access-section-compact .interest-grid {
  align-items: start;
}

.interest-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.interest-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  background:
    linear-gradient(180deg, rgba(31, 125, 232, 0.06), rgba(255, 116, 17, 0.04)),
    var(--bg-card);
}

.interest-form label {
  display: grid;
  gap: 8px;
}

.interest-form span {
  font-size: 13px;
  color: var(--muted);
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 13px 14px;
  font: inherit;
}

.interest-form select {
  background: #0d1a30;
  color-scheme: dark;
}

.interest-form select option {
  background: #0d1a30;
  color: var(--text);
}

.interest-form input::placeholder,
.interest-form textarea::placeholder {
  color: #7e92b0;
}

.interest-form textarea {
  resize: vertical;
  min-height: 130px;
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.checkbox-row span {
  font-size: 14px;
  line-height: 1.7;
}

.captcha-slot {
  min-height: 72px;
}

.form-note,
.form-status {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.form-note {
  color: var(--muted);
}

.form-status {
  min-height: 24px;
  color: var(--muted);
}

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

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

.form-status.is-muted {
  color: var(--muted);
}

.interest-form .form-span {
  grid-column: 1 / -1;
}

.interest-form .btn {
  min-width: 0;
}

/* ─── Label help button ───────────────────────────────────────── */

.label-with-help {
  display: flex;
  align-items: center;
  gap: 6px;
}

.help-btn {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(58, 148, 255, 0.4);
  background: rgba(31, 125, 232, 0.12);
  color: var(--accent-strong);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  font-family: inherit;
}

.help-btn:hover {
  border-color: var(--accent-strong);
  background: rgba(31, 125, 232, 0.22);
  color: #fff;
}

/* ─── Info dialog ─────────────────────────────────────────────── */

dialog.info-dialog {
  background: linear-gradient(180deg, rgba(31, 125, 232, 0.08), rgba(255, 116, 17, 0.04)), #0d1829;
  border: 1px solid rgba(37, 130, 255, 0.22);
  border-radius: 20px;
  padding: 24px 28px;
  color: var(--text);
  max-width: 380px;
  width: calc(100% - 32px);
  box-shadow: var(--shadow);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.info-dialog::backdrop {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
}

.info-dialog h3 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.info-dialog p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.info-dialog-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.15s;
}

.info-dialog-close:hover {
  color: var(--text);
}

/* ─── Nav CTA ─────────────────────────────────────────────────── */

.top-nav a.nav-cta {
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  color: #fefefe;
  border-color: rgba(93, 169, 255, 0.45);
  font-weight: 700;
}

.top-nav a.nav-cta:hover {
  background: linear-gradient(180deg, #60acff, #2d86ee);
}

/* ─── Image / screenshot placeholders ────────────────────────── */

.img-placeholder {
  min-height: 300px;
  border-radius: 22px;
  border: 2px dashed rgba(255, 174, 115, 0.38);
  background: rgba(255, 116, 17, 0.04);
  display: grid;
  place-items: center;
  padding: 28px;
}

.img-placeholder.large {
  min-height: 380px;
}

.img-placeholder.full-width {
  grid-column: 1 / -1;
}

.img-placeholder-label {
  display: grid;
  gap: 14px;
  text-align: center;
  max-width: 52ch;
}

.img-what {
  font-weight: 700;
  color: var(--warm);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.img-prompt {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  font-style: italic;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  text-align: left;
}

.img-prompt strong {
  color: var(--text);
  display: block;
  margin-bottom: 6px;
  font-style: normal;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── Screenshot carousel ────────────────────────────────────── */

.screenshot-carousel {
  display: grid;
  gap: 16px;
}

.carousel-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8, 18, 34, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(6px);
  font-family: inherit;
}

.carousel-arrow:hover {
  background: rgba(31, 125, 232, 0.35);
  border-color: rgba(31, 125, 232, 0.55);
}

.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

.carousel-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.carousel-dot.active {
  background: var(--accent-strong);
  transform: scale(1.35);
}

.carousel-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Stat strip ──────────────────────────────────────────────── */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  overflow: hidden;
  background: var(--border-soft);
}

.stat-item {
  display: grid;
  gap: 8px;
  padding: 24px 22px;
  background: var(--bg-card);
}

.stat-number {
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent-strong);
}

.stat-label {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ─── Persona cards ───────────────────────────────────────────── */

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

.persona-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  display: grid;
  gap: 14px;
}

.persona-role {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(31, 125, 232, 0.12);
  color: var(--accent-strong);
  border: 1px solid rgba(31, 125, 232, 0.2);
}

.persona-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.persona-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.persona-outcomes {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ─── Protocol / capability grid ─────────────────────────────── */

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

.protocol-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  display: grid;
  gap: 8px;
}

.protocol-name {
  font-weight: 700;
  font-size: 16px;
}

.protocol-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.protocol-tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: rgba(95, 208, 255, 0.1);
  color: #7fd6f7;
  border: 1px solid rgba(95, 208, 255, 0.18);
  width: fit-content;
}

/* ─── Architecture layout ─────────────────────────────────────── */

.arch-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.arch-node {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  text-align: center;
  display: grid;
  gap: 10px;
  place-items: center;
}

.arch-node-label {
  font-weight: 700;
  font-size: 16px;
}

.arch-node-sub {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.arch-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 22px;
  padding: 0 4px;
}

.arch-connector {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin: 4px 0;
}

.arch-connector-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.arch-connector-text {
  color: var(--muted);
  font-size: 11px;
  padding: 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

/* ─── Deployment targets strip ────────────────────────────────── */

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

.deploy-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  display: grid;
  gap: 8px;
}

.deploy-target {
  font-weight: 700;
  font-size: 15px;
}

.deploy-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* ─── Pricing ─────────────────────────────────────────────────── */

.beta-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: 18px;
  background: rgba(255, 116, 17, 0.08);
  border: 1px solid rgba(255, 116, 17, 0.22);
  color: var(--warm);
  line-height: 1.6;
  font-size: 15px;
}

.beta-banner strong {
  color: #ffd8b8;
}

.beta-banner-kicker {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 116, 17, 0.18);
  color: var(--warm);
  border: 1px solid rgba(255, 116, 17, 0.28);
  flex-shrink: 0;
}

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

.pricing-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  display: grid;
  gap: 20px;
}

.pricing-card-featured {
  border-color: rgba(31, 125, 232, 0.42);
  background:
    radial-gradient(circle at 20% 10%, rgba(31, 125, 232, 0.1), transparent 30%),
    var(--bg-card);
  box-shadow: 0 0 0 1px rgba(31, 125, 232, 0.18), 0 18px 50px rgba(31, 125, 232, 0.12);
}

.pricing-tier-header {
  display: grid;
  gap: 12px;
}

.pricing-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(31, 125, 232, 0.16);
  color: var(--accent-strong);
  border: 1px solid rgba(31, 125, 232, 0.28);
  width: fit-content;
}

.pricing-tier-name {
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.pricing-tier-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.pricing-price-block {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-amount {
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}

.pricing-amount sup {
  font-size: 0.5em;
  vertical-align: top;
  margin-top: 0.3em;
  font-weight: 700;
}

.pricing-period {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

.pricing-preview-note {
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 116, 17, 0.08);
  border: 1px solid rgba(255, 116, 17, 0.16);
  color: #ffd8b8;
  font-size: 13px;
  line-height: 1.5;
}

.pricing-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.pricing-feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-feature-list li::before {
  content: "✓";
  color: var(--accent-strong);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-feature-list li.dimmed {
  opacity: 0.45;
}

.pricing-feature-list li.dimmed::before {
  content: "—";
  color: var(--muted);
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border-soft);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  transition: background 160ms ease, border-color 160ms ease;
}

.pricing-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing-cta-primary {
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  border-color: rgba(93, 169, 255, 0.45);
  box-shadow: 0 12px 28px rgba(31, 125, 232, 0.28);
}

.pricing-cta-primary:hover {
  background: linear-gradient(180deg, #60acff, #2d86ee);
}

.pricing-divider {
  height: 1px;
  background: var(--border-soft);
}

.pricing-section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 2px;
}

/* ─── FAQ ─────────────────────────────────────────────────────── */

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

.faq-item {
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  display: grid;
  gap: 10px;
}

.faq-q {
  font-weight: 700;
  font-size: 17px;
  margin: 0;
}

.faq-a {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  font-size: 15px;
}

/* ─── Sign-up tracks ──────────────────────────────────────────── */

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

.track-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  display: grid;
  gap: 12px;
}

.track-card-preview {
  border-color: rgba(31, 125, 232, 0.32);
  background:
    radial-gradient(circle at 80% 10%, rgba(31, 125, 232, 0.08), transparent 40%),
    var(--bg-card);
}

.track-pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: fit-content;
}

.track-pill-preview {
  background: rgba(95, 208, 255, 0.12);
  color: #7fd6f7;
  border: 1px solid rgba(95, 208, 255, 0.2);
}

.track-pill-release {
  background: rgba(255, 116, 17, 0.12);
  color: var(--warm);
  border: 1px solid rgba(255, 116, 17, 0.22);
}

.track-pill-updates {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.track-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
}

.track-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.track-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ─── Responsive additions ────────────────────────────────────── */

@media (max-width: 1100px) {
  .hero,
  .story-card,
  .story-card.reverse,
  .cta-band {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .preview-body,
  .feature-grid,
  .screenshot-grid,
  .steps-grid,
  .tour-grid,
  .roadmap-grid,
  .release-grid,
  .interest-grid,
  .simple-grid,
  .hero-proof-grid,
  .stage-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .stage-card-checklist {
    grid-column: auto;
  }

  .story-card.reverse .story-copy,
  .story-card.reverse .shot-window {
    order: initial;
  }

  .stat-strip,
  .pricing-grid,
  .protocol-grid,
  .arch-row,
  .deploy-grid,
  .persona-grid,
  .track-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: calc(100% - 16px);
    margin: 8px auto;
    border-radius: 20px;
  }

  .site-header,
  .site-footer,
  main,
  .section {
    padding: 18px;
  }

  .preview-body,
  .feature-grid,
  .screenshot-grid,
  .steps-grid,
  .tour-grid,
  .roadmap-grid,
  .release-grid,
  .interest-grid,
  .simple-grid,
  .hero-proof-grid,
  .proof-strip,
  .stage-grid,
  .interest-form {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(36px, 12vw, 60px);
  }

  .top-nav,
  .footer-nav {
    width: 100%;
  }

  .top-nav a,
  .footer-nav a {
    padding-left: 0;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-logo {
    max-width: 320px;
  }

  .launch-tag {
    border-radius: 18px;
  }

  .weave-stage {
    min-height: 0;
  }

  .stat-strip,
  .pricing-grid,
  .protocol-grid,
  .arch-row,
  .deploy-grid,
  .persona-grid,
  .track-grid {
    grid-template-columns: 1fr;
  }

  .arch-connector {
    display: none;
  }
}
