:root {
  --bg: #07131f;
  --bg-soft: #0b1c2d;
  --panel: rgba(11, 22, 36, 0.92);
  --panel-strong: #0d1f31;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #ecf4ff;
  --muted: #a7bfd8;
  --teal: #19c4b1;
  --teal-soft: #8cf4e8;
  --blue: #4f89ff;
  --amber: #ffbf53;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius-lg: 26px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(25, 196, 177, 0.18), transparent 42%),
    radial-gradient(circle at 88% 14%, rgba(79, 137, 255, 0.22), transparent 40%),
    radial-gradient(circle at 52% 86%, rgba(255, 191, 83, 0.08), transparent 46%),
    linear-gradient(180deg, #06101b 0%, #08131f 44%, #071019 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
  opacity: 0.35;
  z-index: -1;
}

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

.site-shell {
  width: min(100%, calc(var(--content) + 48px));
  margin: 0 auto;
  padding: 14px 24px 48px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 12px 14px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  background: rgba(9, 18, 30, 0.72);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", "Segoe UI Variable Display", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(25, 196, 177, 0.95), rgba(79, 137, 255, 0.95));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), 0 0 0 4px rgba(25, 196, 177, 0.12);
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: rgba(7, 19, 31, 0.92);
  transform-origin: left;
}

.brand-mark::before {
  top: 17px;
  transform: rotate(-13deg);
}

.brand-mark::after {
  top: 11px;
  transform: rotate(18deg);
}

.brand-text {
  margin: 0;
  font-weight: 700;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nav a {
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--muted);
  transition: background-color 140ms ease, color 140ms ease;
}

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

.nav a.active {
  color: var(--text);
  background: rgba(25, 196, 177, 0.1);
  border: 1px solid rgba(25, 196, 177, 0.2);
}

.nav-cta {
  display: flex;
  gap: 10px;
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-strong);
  transform: translateY(-1px);
  outline: none;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 160ms ease, opacity 160ms ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  font-weight: 700;
  padding: 12px 16px;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
  cursor: pointer;
}

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

.btn[aria-disabled="true"] {
  opacity: 0.75;
  pointer-events: none;
}

.btn-solid {
  color: #031118;
  background: linear-gradient(135deg, var(--teal-soft), var(--teal));
  box-shadow: 0 10px 22px rgba(25, 196, 177, 0.28);
}

.btn-solid.alt {
  background: linear-gradient(135deg, #d3e5ff, #7ab2ff);
  box-shadow: 0 10px 22px rgba(79, 137, 255, 0.28);
}

.btn-solid:hover,
.btn-solid:focus-visible {
  box-shadow: 0 14px 28px rgba(25, 196, 177, 0.34);
}

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

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
}

.btn.wide {
  width: 100%;
}

.section {
  margin-top: 24px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12, 24, 38, 0.82), rgba(9, 19, 30, 0.82));
  box-shadow: var(--shadow);
}

.page-hero {
  display: grid;
  gap: 18px;
  padding: 26px 28px;
  background:
    radial-gradient(circle at 12% 18%, rgba(25, 196, 177, 0.12), transparent 42%),
    radial-gradient(circle at 86% 16%, rgba(79, 137, 255, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(12, 24, 38, 0.9), rgba(9, 19, 30, 0.85));
}

.page-hero h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.95rem, 3.1vw, 2.85rem);
  line-height: 1.05;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 78ch;
}

.hero-tags-text {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-bullets {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
  line-height: 1.55;
}

.hero-bullets li::marker {
  color: var(--teal);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.86rem;
}

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

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

.benefit-card {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 16px;
}

.benefit-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.benefit-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.link-card {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 14px;
  display: grid;
  gap: 6px;
  transition: border-color 140ms ease, background-color 140ms ease, transform 140ms ease;
}

.link-card:hover,
.link-card:focus-visible {
  outline: none;
  border-color: rgba(25, 196, 177, 0.24);
  background: rgba(25, 196, 177, 0.04);
  transform: translateY(-1px);
}

.link-card strong {
  font-family: "Space Grotesk", sans-serif;
}

.link-card span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.callout {
  border-radius: 16px;
  border: 1px solid rgba(25, 196, 177, 0.24);
  background:
    radial-gradient(circle at 15% 20%, rgba(25, 196, 177, 0.09), transparent 44%),
    rgba(255, 255, 255, 0.015);
  padding: 16px;
}

.callout h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.callout p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.contact-card {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 18px;
}

.contact-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.contact-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-card .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.contact-support-note {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.channel-card {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 14px;
  display: grid;
  gap: 6px;
}

.channel-card strong {
  font-family: "Space Grotesk", sans-serif;
}

.channel-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid rgba(79, 137, 255, 0.24);
  background: rgba(79, 137, 255, 0.08);
  color: #cfe0ff;
  font-size: 0.8rem;
  font-weight: 700;
}

.form-shell {
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 14%, rgba(25, 196, 177, 0.08), transparent 45%),
    rgba(255, 255, 255, 0.018);
  padding: 18px;
}

.form-shell h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.form-shell p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.form-grid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-weight: 700;
  color: #d6e7fb;
  font-size: 0.9rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(5, 12, 20, 0.65);
  color: var(--text);
  padding: 11px 12px;
  font: inherit;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #89a4bf;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: rgba(25, 196, 177, 0.35);
  box-shadow: 0 0 0 4px rgba(25, 196, 177, 0.08);
}

.field-help {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.modal-shell[hidden] {
  display: none;
}

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 120;
  padding: 16px;
  display: grid;
  place-items: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 17, 0.72);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(90vh, 940px);
  overflow: auto;
  border-radius: 20px;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 12% 12%, rgba(25, 196, 177, 0.08), transparent 44%),
    rgba(8, 17, 28, 0.96);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
  padding: 18px;
}

.modal-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  margin-bottom: 10px;
}

.modal-header h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.modal-subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.modal-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.modal-close:hover,
.modal-close:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line-strong);
  transform: translateY(-1px);
  outline: none;
}

body.modal-open {
  overflow: hidden;
}

.contact-note-list {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.contact-note-list li::marker {
  color: var(--teal);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
  padding: 34px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI Variable Display", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-notes {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-notes span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-panel {
  position: relative;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(25, 196, 177, 0.14), transparent 56%),
    radial-gradient(circle at 80% 18%, rgba(79, 137, 255, 0.18), transparent 52%);
  z-index: 0;
}

.mock-window {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(9, 19, 30, 0.96), rgba(8, 15, 25, 0.96));
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
}

.mock-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-titlebar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.mock-titlebar span:first-child { background: #ff6b6b; }
.mock-titlebar span:nth-child(2) { background: #ffc85e; }
.mock-titlebar span:nth-child(3) { background: #3fd07f; }

.mock-titlebar p {
  margin: 0 0 0 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.mock-left {
  display: grid;
  gap: 10px;
}

.mini-card {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.mini-card h3 {
  margin: 0;
  font-size: 0.95rem;
  font-family: "Space Grotesk", sans-serif;
}

.mini-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.45;
}

.mock-chart {
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
  padding: 12px 12px 10px;
}

.chart-grid {
  position: absolute;
  inset: 12px 12px 70px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 32px 28px;
  border-radius: 10px;
}

.mock-chart svg {
  position: relative;
  width: 100%;
  height: 180px;
  display: block;
}

.mock-chart svg path {
  fill: none;
  stroke: #4ef4dd;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 6px 10px rgba(25, 196, 177, 0.35));
}

.mock-chart svg circle {
  fill: #c7fff8;
  stroke: rgba(25, 196, 177, 0.55);
  stroke-width: 4;
}

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

.chart-stats > div {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: 10px;
}

.chart-stats strong {
  display: block;
  font-size: 1.05rem;
  font-family: "Space Grotesk", sans-serif;
}

.chart-stats span {
  color: var(--muted);
  font-size: 0.76rem;
}

.cred-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.cred-item {
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.025);
}

.cred-item span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.section-header h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
  line-height: 1.08;
}

.section-header p {
  color: var(--muted);
  line-height: 1.7;
  margin: 10px 0 0;
  max-width: 74ch;
}

.suite-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 18px;
}

.product-card.featured {
  border-color: rgba(25, 196, 177, 0.32);
  background: linear-gradient(180deg, rgba(25, 196, 177, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 0 1px rgba(25, 196, 177, 0.08);
}

.card-top h3 {
  margin: 10px 0 0;
  font-size: 1.18rem;
  font-family: "Space Grotesk", sans-serif;
}

.subtitle {
  margin: 6px 0 0;
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.pill-free { background: rgba(255, 255, 255, 0.08); color: #d7e7fa; }
.pill-pro { background: rgba(25, 196, 177, 0.16); color: #b8fff5; }
.pill-max { background: rgba(79, 137, 255, 0.16); color: #cfe0ff; }

.product-card ul,
.split-card ul,
.panel .feature-list,
.price-features {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.product-card li::marker,
.split-card li::marker,
.panel .feature-list li::marker,
.price-features li::marker {
  color: var(--teal);
}

.text-link {
  color: var(--teal-soft);
  font-weight: 700;
}

.trial-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(25, 196, 177, 0.25);
  background: rgba(25, 196, 177, 0.08);
  color: #b8fff5;
  font-size: 0.82rem;
  font-weight: 700;
}

.timeline {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.step {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 196, 177, 0.16), transparent 70%);
}

.step-num {
  display: inline-flex;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--teal-soft);
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.step h3 {
  margin: 8px 0 8px;
  font-family: "Space Grotesk", sans-serif;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.step .muted {
  margin-top: 10px;
}

.feature-panels {
  display: grid;
  gap: 16px;
}

.panel {
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 20px;
}

.panel.dark {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  background:
    radial-gradient(circle at 15% 15%, rgba(25, 196, 177, 0.12), transparent 44%),
    radial-gradient(circle at 85% 20%, rgba(79, 137, 255, 0.12), transparent 40%),
    rgba(255, 255, 255, 0.015);
}

.panel.dark h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.panel.dark p {
  color: var(--muted);
  line-height: 1.7;
}

.feature-list {
  padding-left: 18px;
  margin: 8px 0 0;
}

.panel.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: rgba(255, 255, 255, 0.015);
}

.split-card {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 16px;
}

.split-card h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
}

.pricing-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 18px;
}

.price-card.highlight {
  border-color: rgba(25, 196, 177, 0.34);
  background: linear-gradient(180deg, rgba(25, 196, 177, 0.1), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 0 1px rgba(25, 196, 177, 0.08), 0 10px 30px rgba(25, 196, 177, 0.08);
}

.ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.76rem;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(25, 196, 177, 0.14);
  border: 1px solid rgba(25, 196, 177, 0.25);
  color: #c5fff8;
  font-weight: 700;
}

.price-head h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.plan-name {
  margin: 6px 0 0;
  color: var(--muted);
}

.price {
  margin: 12px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.currency {
  font-size: 1.15rem;
  vertical-align: top;
}

.interval {
  font-size: 0.9rem;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
}

.compare-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 740px;
}

.compare-table caption {
  text-align: left;
  padding: 14px 16px 0;
  color: var(--muted);
  font-weight: 600;
}

.compare-table th,
.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.compare-table th {
  color: #d7e7fb;
  background: rgba(255, 255, 255, 0.02);
  font-weight: 700;
}

.compare-table td {
  color: var(--muted);
}

.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.screenshot-section .section-header {
  margin-bottom: 14px;
}

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

.shot {
  margin: 0;
}

.shot-frame {
  min-height: 210px;
  border-radius: 18px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  color: #d5e7fb;
  font-family: "Space Grotesk", sans-serif;
  background: rgba(255, 255, 255, 0.018);
  position: relative;
  overflow: hidden;
}

.shot-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.03) 20%, transparent 45%, rgba(255, 255, 255, 0.03) 70%, transparent 100%),
    radial-gradient(circle at 20% 20%, rgba(25, 196, 177, 0.14), transparent 48%),
    radial-gradient(circle at 80% 18%, rgba(79, 137, 255, 0.12), transparent 44%);
  opacity: 0.8;
}

.shot-frame span {
  position: relative;
  z-index: 1;
  max-width: 26ch;
}

.shot-recorder { background-color: rgba(25, 196, 177, 0.03); }
.shot-cutter { background-color: rgba(255, 191, 83, 0.03); }
.shot-player { background-color: rgba(79, 137, 255, 0.03); }
.shot-metrics { background-color: rgba(132, 235, 208, 0.02); }

.shot figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.faq-list details {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 12px 14px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--teal-soft);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.cta-panel {
  border-radius: 20px;
  border: 1px solid rgba(25, 196, 177, 0.24);
  background:
    radial-gradient(circle at 10% 20%, rgba(25, 196, 177, 0.12), transparent 45%),
    radial-gradient(circle at 85% 18%, rgba(79, 137, 255, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.015);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: center;
}

.cta-panel h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.cta-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.footer {
  margin-top: 24px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 12px;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
  outline: none;
  border-color: var(--line-strong);
}

.fineprint,
.muted {
  color: var(--muted);
}

.fineprint {
  margin: 0;
  line-height: 1.6;
  font-size: 0.85rem;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

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

  .cred-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .suite-grid,
  .pricing-grid,
  .timeline,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .panel.dark,
  .panel.split,
  .cta-panel,
  .grid-2,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 820px) {
  .topbar {
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 10px 12px;
    align-items: center;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .topbar .nav,
  .topbar .nav-cta {
    display: none;
  }

  .topbar.is-mobile-menu-open .nav,
  .topbar.is-mobile-menu-open .nav-cta {
    display: flex;
    grid-column: 1 / -1;
  }

  .topbar.is-mobile-menu-open .nav {
    margin-top: 4px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 10px;
  }

  .topbar.is-mobile-menu-open .nav a {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.92rem;
  }

  .topbar.is-mobile-menu-open .nav-cta {
    margin-top: 8px;
    flex-direction: column;
    gap: 8px;
  }

  .topbar.is-mobile-menu-open .nav-cta .btn {
    width: 100%;
  }

  .topbar.is-mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .topbar.is-mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .topbar.is-mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 26px;
    height: 26px;
    border-radius: 8px;
  }

  .brand-mark::before,
  .brand-mark::after {
    left: 5px;
    right: 5px;
  }

  .brand-mark::before {
    top: 15px;
  }

  .brand-mark::after {
    top: 10px;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .site-shell {
    padding: 12px 14px 36px;
  }

  .section,
  .hero {
    padding: 18px;
  }

  .hero-notes {
    display: grid;
  }

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

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

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

  .modal-shell {
    padding: 10px;
  }

  .modal-panel {
    max-height: 92vh;
    padding: 14px;
    border-radius: 16px;
  }

  .modal-close {
    width: 36px;
    height: 36px;
  }
}
