:root {
  color-scheme: dark;
  --bg: #070b12;
  --card: #101827;
  --card-strong: #142035;
  --accent-blue: #3b82f6;
  --accent-cyan: #22d3ee;
  --success-green: #22c55e;
  --warning-amber: #f59e0b;
  --text: #f8fafc;
  --muted: #94a3b8;
  --border: #1e293b;
  --shadow: 0 26px 86px rgba(0, 0, 0, 0.44);
  --window-shadow: 0 36px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(148, 163, 184, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(59, 130, 246, 0.2), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(34, 211, 238, 0.13), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 70%);
}

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

p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(30, 41, 59, 0.82);
  background: rgba(7, 11, 18, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.header-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  flex: 0 0 auto;
  font-size: 17px;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(59, 130, 246, 0.38);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.24), rgba(34, 211, 238, 0.08));
  box-shadow: 0 0 28px rgba(59, 130, 246, 0.24);
  color: var(--accent-cyan);
  font-weight: 950;
}

.nav-links {
  gap: clamp(14px, 2vw, 26px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header-actions {
  gap: 14px;
  flex: 0 0 auto;
}

.login-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  transition: color 160ms ease;
}

.nav-links a,
.site-footer a,
.login-link {
  transition: color 160ms ease;
}

.nav-links a:hover,
.site-footer a:hover,
.login-link:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 18px;
  font-weight: 850;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-blue), #2563eb);
  color: #fff;
  box-shadow: 0 14px 34px rgba(59, 130, 246, 0.32);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(16, 24, 39, 0.78);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(34, 211, 238, 0.58);
  background: rgba(20, 32, 53, 0.92);
}

.hero,
.problem-section,
.product-showcase,
.section-block,
.scope-spotlight,
.comparison-section,
.pricing-hero,
.tier-section,
.comparison-table-section,
.faq-section,
.final-cta,
.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
  min-height: auto;
  padding: clamp(44px, 5vw, 72px) 0 34px;
}

.hero-copy {
  max-width: 970px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.pill,
.stat-card span,
.progress-row span,
.scope-panel-header small {
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  margin-top: 12px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
}

h3 {
  font-size: 20px;
  line-height: 1.18;
}

.hero-subhead,
.problem-section > p,
.spotlight-copy p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
}

.hero-subhead {
  max-width: 820px;
  margin-inline: auto;
  margin-top: 16px;
}

.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.dashboard-mockup,
.mini-window,
.scope-panel,
.pricing-grid article,
.comparison-grid article,
.feature-grid article,
.step-grid article {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(16, 24, 39, 0.98), rgba(10, 16, 27, 0.96));
  box-shadow: var(--shadow);
}

.dashboard-mockup {
  position: relative;
  overflow: hidden;
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 16px;
}

.product-window,
.mini-window {
  border-radius: 28px;
  box-shadow: var(--window-shadow);
}

.dashboard-mockup::before,
.mini-window::before {
  position: absolute;
  inset: -1px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.3), transparent 30%),
    linear-gradient(315deg, rgba(34, 211, 238, 0.18), transparent 34%);
  opacity: 0.74;
}

.dashboard-mockup > * {
  position: relative;
}

.product-screen {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30, 41, 59, 0.82);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(7, 11, 18, 0.96)),
    #070b12;
  box-shadow: inset 0 1px 0 rgba(248, 250, 252, 0.04);
}

.hero-screen {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 12px;
  height: 470px;
  padding: 12px;
}

.compact-screen {
  min-height: 190px;
  margin-bottom: 12px;
  padding: 14px;
}

.screenshot-caption-grid {
  margin-top: 12px;
}

.screen-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(30, 41, 59, 0.72);
  border-radius: 18px;
  background: rgba(7, 11, 18, 0.48);
}

.screen-sidebar strong {
  margin-bottom: 4px;
}

.screen-sidebar span {
  border-radius: 12px;
  padding: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.screen-sidebar .active {
  background: rgba(59, 130, 246, 0.18);
  color: #bfdbfe;
}

.screen-main {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.portal-dashboard-photo {
  align-content: start;
}

.portal-photo-heading,
.portal-dashboard-panels {
  display: grid;
  gap: 10px;
}

.portal-photo-heading {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.portal-photo-heading span,
.portal-metrics-grid span,
.portal-trend-card span,
.portal-status-card span,
.portal-follow-card span,
.portal-file-board span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-photo-heading strong {
  display: block;
  margin-top: 4px;
  font-size: 28px;
  line-height: 1;
}

.portal-photo-heading em,
.portal-follow-card em {
  width: fit-content;
  border: 1px solid rgba(59, 130, 246, 0.28);
  border-radius: 12px;
  padding: 7px 9px;
  background: rgba(59, 130, 246, 0.1);
  color: #bfdbfe;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.portal-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.portal-metrics-grid article,
.portal-trend-card,
.portal-status-card,
.portal-follow-card,
.portal-file-board article {
  border: 1px solid rgba(30, 41, 59, 0.74);
  border-radius: 16px;
  background: rgba(16, 24, 39, 0.68);
}

.portal-metrics-grid article {
  min-height: 84px;
  padding: 11px;
}

.portal-metrics-grid strong {
  display: block;
  margin: 7px 0 4px;
  font-size: 22px;
  line-height: 1;
}

.portal-metrics-grid small,
.portal-follow-card article > span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.portal-dashboard-panels {
  grid-template-columns: 1fr 1fr;
}

.portal-trend-card,
.portal-status-card,
.portal-follow-card {
  padding: 12px;
}

.portal-trend-card strong,
.portal-status-card strong,
.portal-follow-card > div strong {
  display: block;
  margin-top: 5px;
  font-size: 15px;
}

.trend-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 8px;
  height: 92px;
  margin-top: 12px;
}

.trend-bars i {
  display: block;
  min-height: 22px;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-blue));
  box-shadow: 0 10px 22px rgba(59, 130, 246, 0.22);
}

.status-rows {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.status-rows article {
  display: grid;
  grid-template-columns: 116px 1fr auto;
  gap: 8px;
  align-items: center;
}

.status-rows i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
}

.status-rows strong {
  color: #dbeafe;
  font-size: 13px;
}

.portal-follow-card {
  display: grid;
  gap: 8px;
}

.portal-follow-card article {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 10px;
  align-items: center;
  min-height: 38px;
  padding-top: 8px;
  border-top: 1px solid rgba(30, 41, 59, 0.72);
}

.portal-file-board {
  display: grid;
  gap: 8px;
  margin: 10px 0;
}

.portal-file-board article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 9px;
}

.portal-file-board strong {
  font-size: 13px;
}

.screen-header,
.screen-metrics,
.summary-metrics {
  display: grid;
  gap: 9px;
}

.screen-header {
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 82px;
  padding: 18px;
  border: 1px solid rgba(30, 41, 59, 0.74);
  border-radius: 18px;
  background: rgba(16, 24, 39, 0.72);
}

.screen-header span,
.screen-metrics span,
.summary-metrics span,
.gap-total span,
.email-summary span,
.screen-table div:first-child span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.screen-header strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(22px, 3vw, 34px);
}

.screen-header em {
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--accent-cyan);
  font-style: normal;
  font-weight: 900;
}

.screen-metrics,
.summary-metrics {
  grid-template-columns: repeat(3, 1fr);
}

.screen-metrics article,
.summary-metrics article,
.email-summary div {
  border: 1px solid rgba(30, 41, 59, 0.74);
  border-radius: 16px;
  padding: 12px;
  background: rgba(7, 11, 18, 0.48);
}

.screen-metrics strong,
.summary-metrics strong,
.gap-total strong,
.email-summary strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(22px, 3vw, 32px);
}

.screen-table {
  display: grid;
  border: 1px solid rgba(30, 41, 59, 0.74);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(7, 11, 18, 0.34);
}

.screen-table div {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.7fr 1.2fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 0 16px;
  border-top: 1px solid rgba(30, 41, 59, 0.64);
}

.screen-table div:first-child {
  min-height: 44px;
  border-top: 0;
  background: rgba(16, 24, 39, 0.8);
}

.screen-table em {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
  font-style: normal;
  font-weight: 850;
}

.screen-table span {
  color: #cbd5e1;
}

.summary-metrics {
  margin-bottom: 10px;
}

.file-pipeline {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(30, 41, 59, 0.74);
  border-radius: 16px;
  background: rgba(7, 11, 18, 0.42);
}

.file-pipeline span {
  color: #dbeafe;
  font-size: 13px;
  font-weight: 900;
}

.file-pipeline i,
.gap-bars i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
}

.gap-total {
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid rgba(30, 41, 59, 0.74);
  border-radius: 18px;
  background: rgba(7, 11, 18, 0.42);
}

.gap-total small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.gap-bars {
  display: grid;
  gap: 9px;
}

.gap-bars article {
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 9px;
  align-items: center;
}

.gap-bars article > span,
.gap-bars strong {
  color: #cbd5e1;
  font-size: 13px;
}

.email-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.mockup-topbar,
.scope-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mockup-topbar {
  justify-content: flex-start;
  min-height: 38px;
  margin: -4px -4px 12px;
  padding: 9px 11px;
  border: 1px solid rgba(30, 41, 59, 0.72);
  border-radius: 18px;
  background: rgba(7, 11, 18, 0.54);
  color: var(--muted);
  font-size: 13px;
}

.mockup-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fb7185;
}

.mockup-topbar span:nth-child(2) {
  background: #fbbf24;
}

.mockup-topbar span:nth-child(3) {
  background: #34d399;
}

.mockup-topbar strong {
  margin-left: 8px;
  color: var(--text);
}

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

.stat-card,
.builder-panel,
.preview-panel {
  border: 1px solid rgba(30, 41, 59, 0.88);
  border-radius: 18px;
  background: rgba(7, 11, 18, 0.58);
}

.stat-card {
  min-height: 104px;
  padding: 13px;
}

.stat-card strong {
  display: block;
  margin: 8px 0 4px;
  font-size: clamp(24px, 3.4vw, 34px);
}

.stat-card small,
.scope-items span,
.scope-items p,
.feature-grid p,
.step-grid p,
.pricing-grid p,
.pricing-grid li,
.comparison-grid li,
.faq-list p,
.site-footer p,
.site-footer a {
  color: var(--muted);
  line-height: 1.62;
}

.stat-card.blue {
  box-shadow: inset 0 1px 0 rgba(59, 130, 246, 0.35);
}

.stat-card.amber {
  box-shadow: inset 0 1px 0 rgba(245, 158, 11, 0.35);
}

.stat-card.green {
  box-shadow: inset 0 1px 0 rgba(34, 197, 94, 0.35);
}

.stat-card.cyan {
  box-shadow: inset 0 1px 0 rgba(34, 211, 238, 0.35);
}

.mockup-workspace {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 10px;
  margin-top: 12px;
}

.builder-panel,
.preview-panel {
  padding: 14px;
}

.panel-heading {
  display: grid;
  gap: 8px;
}

.pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(34, 211, 238, 0.08);
}

.pill.blue {
  color: #93c5fd;
}

.pill.green {
  color: var(--success-green);
}

.pill.cyan {
  color: var(--accent-cyan);
}

.upload-stack,
.scope-preview-lines {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.upload-stack span,
.scope-preview-lines article {
  border: 1px solid rgba(30, 41, 59, 0.8);
  border-radius: 14px;
  background: rgba(16, 24, 39, 0.72);
}

.upload-stack span {
  padding: 9px;
  color: #cbd5e1;
  font-size: 13px;
}

.progress-row {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.progress-row div {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.88);
}

.progress-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
}

.scope-preview-lines article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
}

.scope-preview-lines strong {
  color: #bfdbfe;
  white-space: nowrap;
}

.credibility-strip {
  position: relative;
  width: min(940px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.credibility-strip::before,
.credibility-strip::after {
  position: absolute;
  z-index: -1;
  width: 118px;
  height: 38px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.08);
  filter: blur(0.2px);
  content: "";
}

.credibility-strip::before {
  top: -12px;
  left: 8%;
  transform: rotate(-5deg);
}

.credibility-strip::after {
  right: 7%;
  bottom: -14px;
  background: rgba(59, 130, 246, 0.1);
  transform: rotate(4deg);
}

.credibility-bubble {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 999px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(16, 24, 39, 0.94), rgba(7, 18, 30, 0.88)),
    rgba(16, 24, 39, 0.78);
  box-shadow:
    0 18px 60px rgba(34, 211, 238, 0.1),
    inset 0 1px 0 rgba(248, 250, 252, 0.06);
}

.credibility-bubble span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(30, 41, 59, 0.9);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(16, 24, 39, 0.82);
  color: #dbeafe;
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(248, 250, 252, 0.05);
}

.credibility-bubble span:nth-child(2) {
  color: #a5f3fc;
}

.credibility-bubble span:nth-child(3) {
  color: #bbf7d0;
}

.problem-section,
.product-showcase,
.section-block,
.scope-spotlight,
.comparison-section,
.faq-section,
.final-cta {
  padding: clamp(38px, 5vw, 64px) 0;
}

.problem-section {
  display: block;
}

.problem-section > div,
.problem-section > p {
  max-width: 720px;
}

.problem-section > p {
  margin-top: 18px;
}

.product-showcase {
  display: grid;
  gap: clamp(18px, 3vw, 32px);
  padding: clamp(8px, 2vw, 16px) 0 clamp(42px, 5vw, 60px);
}

.showcase-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(16px, 3vw, 32px);
  align-items: center;
}

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

.showcase-copy h2 {
  margin-top: 10px;
  font-size: clamp(28px, 3.4vw, 42px);
}

.showcase-copy p:last-child {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.mini-window {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(16, 24, 39, 0.98), rgba(7, 11, 18, 0.95)),
    var(--card);
}

.document-layout {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 10px;
}

.document-layout aside,
.document-layout section,
.compare-list,
.email-draft {
  position: relative;
  display: grid;
  gap: 9px;
}

.document-layout aside {
  align-content: start;
  padding: 10px;
  border: 1px solid rgba(30, 41, 59, 0.72);
  border-radius: 18px;
  background: rgba(7, 11, 18, 0.45);
}

.document-layout aside span {
  border-radius: 12px;
  padding: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.document-layout aside .active {
  background: rgba(59, 130, 246, 0.16);
  color: #bfdbfe;
}

.document-layout section article,
.compare-list article,
.email-draft {
  border: 1px solid rgba(30, 41, 59, 0.78);
  border-radius: 18px;
  background: rgba(16, 24, 39, 0.68);
}

.document-layout section article {
  display: grid;
  gap: 5px;
  min-height: 84px;
  padding: 11px;
}

.document-layout section article div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.document-layout section em {
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--accent-cyan);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.document-layout section span,
.document-layout section small,
.compare-list p,
.email-draft span,
.email-draft p {
  color: var(--muted);
  line-height: 1.42;
}

.document-layout section small {
  font-size: 11px;
}

.compare-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  padding: 13px;
}

.status-dot {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--accent-cyan);
  box-shadow: 0 0 22px currentColor;
}

.status-dot.amber {
  background: var(--warning-amber);
  color: var(--warning-amber);
}

.status-dot.cyan {
  background: var(--accent-cyan);
  color: var(--accent-cyan);
}

.status-dot.green {
  background: var(--success-green);
  color: var(--success-green);
}

.email-draft {
  padding: 13px;
}

.email-draft div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(30, 41, 59, 0.72);
}

.email-draft button {
  min-height: 38px;
  border: 1px solid rgba(34, 211, 238, 0.34);
  border-radius: 12px;
  background: rgba(34, 211, 238, 0.1);
  color: var(--accent-cyan);
  font: inherit;
  font-weight: 850;
}

.problem-section h2,
.section-heading h2,
.spotlight-copy h2,
.final-cta h2 {
  margin-top: 12px;
}

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

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

.faq-section {
  width: min(1280px, calc(100% - 36px));
}

.step-grid,
.feature-grid,
.pricing-grid,
.comparison-grid {
  display: grid;
  gap: 16px;
}

.step-grid {
  grid-template-columns: repeat(4, 1fr);
}

.step-grid article,
.feature-grid article,
.pricing-grid article,
.comparison-grid article {
  padding: 24px;
}

.step-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent-cyan);
  font-size: 13px;
  font-weight: 950;
}

.step-grid h3,
.feature-grid h3,
.pricing-grid h3,
.comparison-grid h3 {
  margin-bottom: 10px;
}

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

.feature-icon {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(34, 211, 238, 0.42));
  box-shadow: 0 0 32px rgba(59, 130, 246, 0.2);
}

.feature-icon::before,
.feature-icon::after {
  position: absolute;
  display: block;
  content: "";
}

.feature-icon[data-icon="scope"]::before {
  width: 18px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 5px;
}

.feature-icon[data-icon="scope"]::after {
  width: 13px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(38deg) translate(2px, -1px);
}

.feature-icon[data-icon="classify"]::before {
  width: 20px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 5px;
}

.feature-icon[data-icon="classify"]::after {
  width: 16px;
  height: 2px;
  background: #fff;
  box-shadow: 0 6px 0 rgba(255, 255, 255, 0.9);
}

.feature-icon[data-icon="gap"]::before {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
}

.feature-icon[data-icon="gap"]::after {
  width: 10px;
  height: 2px;
  background: #fff;
  box-shadow: 0 -6px 0 #fff, 0 6px 0 #fff;
}

.feature-icon[data-icon="dashboard"]::before {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background:
    linear-gradient(#fff, #fff) 0 0 / 8px 8px no-repeat,
    linear-gradient(#fff, #fff) 12px 0 / 8px 8px no-repeat,
    linear-gradient(#fff, #fff) 0 12px / 8px 8px no-repeat,
    linear-gradient(#fff, #fff) 12px 12px / 8px 8px no-repeat;
}

.feature-icon[data-icon="docs"]::before {
  width: 18px;
  height: 21px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  transform: rotate(-4deg);
}

.feature-icon[data-icon="docs"]::after {
  width: 18px;
  height: 21px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 4px;
  transform: translate(5px, 3px) rotate(4deg);
}

.feature-icon[data-icon="email"]::before {
  width: 22px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 5px;
}

.feature-icon[data-icon="email"]::after {
  width: 14px;
  height: 14px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-5px) rotate(45deg);
}

.feature-icon.cyan {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.95), rgba(59, 130, 246, 0.28));
}

.feature-icon.amber {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(59, 130, 246, 0.25));
}

.feature-icon.green {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.95), rgba(34, 211, 238, 0.25));
}

.feature-icon,
.feature-icon.cyan,
.feature-icon.amber,
.feature-icon.green {
  background: #2563eb;
  box-shadow: 0 0 28px rgba(37, 99, 235, 0.24);
}

.feature-icon::before,
.feature-icon::after {
  content: none;
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  color: #ffffff;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.scope-spotlight {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
}

.scope-panel {
  padding: 22px;
}

.scope-panel-header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.scope-panel-header > div {
  display: grid;
  gap: 9px;
}

.scope-items {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.scope-items article {
  display: grid;
  grid-template-columns: minmax(190px, 1.1fr) minmax(220px, 0.9fr);
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(30, 41, 59, 0.78);
  border-radius: 18px;
  background: rgba(7, 11, 18, 0.46);
}

.scope-items article p {
  grid-column: 1 / -1;
}

.scope-items div:first-child {
  display: grid;
  gap: 6px;
}

.scope-items dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
}

.scope-items dl div {
  border: 1px solid rgba(30, 41, 59, 0.75);
  border-radius: 12px;
  padding: 9px;
  background: rgba(16, 24, 39, 0.78);
}

.scope-items dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.scope-items dd {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.comparison-grid,
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.comparison-grid article,
.pricing-grid article {
  box-shadow: none;
}

.comparison-grid ul,
.pricing-grid ul {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.comparison-grid li,
.pricing-grid li {
  position: relative;
  padding-left: 24px;
}

.comparison-grid li::before,
.pricing-grid li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--warning-amber);
  content: "";
}

.after-card li::before,
.pricing-grid li::before {
  background: var(--success-green);
}

.pricing-grid article {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-line,
.tier-price {
  color: var(--text);
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.pricing-grid .button {
  margin-top: auto;
}

.featured-price {
  border-color: rgba(34, 211, 238, 0.48);
  background:
    linear-gradient(180deg, rgba(34, 211, 238, 0.08), transparent 45%),
    var(--card);
}

.pricing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(18px, 4vw, 44px);
  align-items: end;
  padding: clamp(46px, 6vw, 86px) 0 30px;
}

.pricing-hero-copy {
  max-width: 760px;
}

.pricing-hero-copy h1 {
  margin-top: 12px;
}

.pricing-hero-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
}

.pricing-start-card,
.tier-section article {
  border: 1px solid rgba(30, 41, 59, 0.78);
  border-radius: 24px;
  background: rgba(16, 24, 39, 0.78);
  box-shadow: var(--shadow);
}

.pricing-start-card {
  display: grid;
  gap: 12px;
  padding: 28px;
}

.pricing-start-card span,
.pricing-start-card small {
  color: var(--muted);
  font-weight: 850;
}

.pricing-start-card strong {
  font-size: clamp(52px, 7vw, 82px);
  line-height: 0.92;
}

.pricing-start-card .button {
  margin-top: 8px;
}

.tier-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 26px 0 36px;
}

.tier-section article {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
}

.tier-section h2 {
  font-size: 28px;
}

.tier-section p {
  color: var(--muted);
  line-height: 1.6;
}

.tier-section ul {
  display: grid;
  gap: 12px;
  margin-top: 2px;
}

.tier-section li {
  position: relative;
  padding-left: 24px;
}

.tier-section li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success-green);
  content: "";
}

.tier-section .button {
  margin-top: auto;
}

.comparison-table-section {
  padding: 18px 0 36px;
}

.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 22px;
  border: 1px solid rgba(30, 41, 59, 0.8);
  border-radius: 24px;
  background: rgba(16, 24, 39, 0.72);
  box-shadow: var(--shadow);
}

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

.tier-compare-table th,
.tier-compare-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(30, 41, 59, 0.82);
  text-align: left;
  vertical-align: top;
}

.tier-compare-table thead th {
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tier-compare-table tbody th {
  color: var(--text);
  font-weight: 850;
}

.tier-compare-table td {
  color: var(--muted);
  font-weight: 750;
}

.tier-compare-table tr:last-child th,
.tier-compare-table tr:last-child td {
  border-bottom: 0;
}

.faq-hover-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(560px, 1fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: center;
  min-height: 480px;
  padding: 8px 0 20px;
}

.faq-word-list {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
  gap: clamp(10px, 1.6vw, 18px);
  width: 100%;
}

.faq-trigger {
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  color: rgba(248, 250, 252, 0.38);
  font: inherit;
  font-size: clamp(40px, 4.8vw, 74px);
  font-weight: 900;
  line-height: 0.96;
  text-align: left;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease,
    text-shadow 180ms ease,
    filter 180ms ease;
}

.faq-trigger:hover,
.faq-trigger:focus,
.faq-trigger:focus-visible {
  outline: 0;
  color: var(--text);
  opacity: 1;
  filter: blur(0);
  text-shadow: 0 0 34px rgba(34, 211, 238, 0.2);
  transform: translateX(10px);
}

.faq-word-list:has(.faq-trigger:nth-child(1):hover) .faq-trigger:nth-child(1),
.faq-word-list:has(.faq-trigger:nth-child(1):focus) .faq-trigger:nth-child(1),
.faq-hover-board[data-active="1"] .faq-trigger:nth-child(1),
.faq-word-list:has(.faq-trigger:nth-child(1):focus-visible) .faq-trigger:nth-child(1) {
  color: #dbeafe;
}

.faq-word-list:has(.faq-trigger:nth-child(2):hover) .faq-trigger:nth-child(2),
.faq-word-list:has(.faq-trigger:nth-child(2):focus) .faq-trigger:nth-child(2),
.faq-hover-board[data-active="2"] .faq-trigger:nth-child(2),
.faq-word-list:has(.faq-trigger:nth-child(2):focus-visible) .faq-trigger:nth-child(2) {
  color: #cffafe;
}

.faq-word-list:has(.faq-trigger:nth-child(3):hover) .faq-trigger:nth-child(3),
.faq-word-list:has(.faq-trigger:nth-child(3):focus) .faq-trigger:nth-child(3),
.faq-hover-board[data-active="3"] .faq-trigger:nth-child(3),
.faq-word-list:has(.faq-trigger:nth-child(3):focus-visible) .faq-trigger:nth-child(3) {
  color: #dcfce7;
}

.faq-word-list:has(.faq-trigger:nth-child(4):hover) .faq-trigger:nth-child(4),
.faq-word-list:has(.faq-trigger:nth-child(4):focus) .faq-trigger:nth-child(4),
.faq-hover-board[data-active="4"] .faq-trigger:nth-child(4),
.faq-word-list:has(.faq-trigger:nth-child(4):focus-visible) .faq-trigger:nth-child(4) {
  color: #fef3c7;
}

.faq-word-list:has(.faq-trigger:nth-child(5):hover) .faq-trigger:nth-child(5),
.faq-word-list:has(.faq-trigger:nth-child(5):focus) .faq-trigger:nth-child(5),
.faq-hover-board[data-active="5"] .faq-trigger:nth-child(5),
.faq-word-list:has(.faq-trigger:nth-child(5):focus-visible) .faq-trigger:nth-child(5) {
  color: #fce7f3;
}

.faq-word-list:has(.faq-trigger:hover) .faq-trigger:not(:hover),
.faq-word-list:has(.faq-trigger:focus) .faq-trigger:not(:focus),
.faq-word-list:has(.faq-trigger:focus-visible) .faq-trigger:not(:focus-visible) {
  color: rgba(248, 250, 252, 0.18);
  filter: blur(0.4px);
}

.faq-hover-board[data-active="1"] .faq-trigger:not(:nth-child(1)),
.faq-hover-board[data-active="2"] .faq-trigger:not(:nth-child(2)),
.faq-hover-board[data-active="3"] .faq-trigger:not(:nth-child(3)),
.faq-hover-board[data-active="4"] .faq-trigger:not(:nth-child(4)),
.faq-hover-board[data-active="5"] .faq-trigger:not(:nth-child(5)) {
  color: rgba(248, 250, 252, 0.18);
}

.faq-answer-stage {
  position: relative;
  z-index: 3;
  width: min(100%, 430px);
  min-height: 380px;
  border-radius: 28px;
  background: #2563eb;
  box-shadow:
    0 24px 90px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(248, 250, 252, 0.06);
  opacity: 1;
  transform: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.faq-hover-board:has(.faq-trigger:hover) .faq-answer-stage,
.faq-hover-board:has(.faq-trigger:focus) .faq-answer-stage,
.faq-hover-board:has(.faq-trigger:focus-visible) .faq-answer-stage {
  opacity: 1;
  transform: translateX(0);
}

.faq-answer-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 8px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: inherit;
  padding: clamp(28px, 4vw, 46px);
  opacity: 0;
  text-align: left;
  transform: translateY(8px) scale(0.98);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.faq-answer-card:nth-child(1) {
  background: #2563eb;
}

.faq-answer-card:nth-child(2) {
  background: #0891b2;
}

.faq-answer-card:nth-child(3) {
  background: #16a34a;
}

.faq-answer-card:nth-child(4) {
  background: #d97706;
}

.faq-answer-card:nth-child(5) {
  background: #db2777;
}

.faq-answer-card:first-child {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.faq-hover-board[data-active] .faq-answer-card {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}

.faq-hover-board:has(.faq-trigger:hover) .faq-answer-card,
.faq-hover-board:has(.faq-trigger:focus) .faq-answer-card,
.faq-hover-board:has(.faq-trigger:focus-visible) .faq-answer-card {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}

.faq-hover-board:has(.faq-trigger:nth-child(1):hover) .faq-answer-card:nth-child(1),
.faq-hover-board:has(.faq-trigger:nth-child(1):focus) .faq-answer-card:nth-child(1),
.faq-hover-board:has(.faq-trigger:nth-child(1):focus-visible) .faq-answer-card:nth-child(1),
.faq-hover-board:has(.faq-trigger:nth-child(2):hover) .faq-answer-card:nth-child(2),
.faq-hover-board:has(.faq-trigger:nth-child(2):focus) .faq-answer-card:nth-child(2),
.faq-hover-board:has(.faq-trigger:nth-child(2):focus-visible) .faq-answer-card:nth-child(2),
.faq-hover-board:has(.faq-trigger:nth-child(3):hover) .faq-answer-card:nth-child(3),
.faq-hover-board:has(.faq-trigger:nth-child(3):focus) .faq-answer-card:nth-child(3),
.faq-hover-board:has(.faq-trigger:nth-child(3):focus-visible) .faq-answer-card:nth-child(3),
.faq-hover-board:has(.faq-trigger:nth-child(4):hover) .faq-answer-card:nth-child(4),
.faq-hover-board:has(.faq-trigger:nth-child(4):focus) .faq-answer-card:nth-child(4),
.faq-hover-board:has(.faq-trigger:nth-child(4):focus-visible) .faq-answer-card:nth-child(4),
.faq-hover-board:has(.faq-trigger:nth-child(5):hover) .faq-answer-card:nth-child(5),
.faq-hover-board:has(.faq-trigger:nth-child(5):focus) .faq-answer-card:nth-child(5),
.faq-hover-board:has(.faq-trigger:nth-child(5):focus-visible) .faq-answer-card:nth-child(5) {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.faq-hover-board[data-active="1"] .faq-answer-card:nth-child(1),
.faq-hover-board[data-active="2"] .faq-answer-card:nth-child(2),
.faq-hover-board[data-active="3"] .faq-answer-card:nth-child(3),
.faq-hover-board[data-active="4"] .faq-answer-card:nth-child(4),
.faq-hover-board[data-active="5"] .faq-answer-card:nth-child(5) {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.faq-answer-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-answer-card p {
  max-width: 285px;
  color: #ffffff;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 750;
  line-height: 1.38;
}

.final-cta {
  display: grid;
  place-items: center;
  text-align: center;
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta p {
  max-width: 760px;
  margin: 14px 0 22px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 180px 180px;
  gap: 28px;
  padding: 26px 0 34px;
  border-top: 1px solid var(--border);
}

.site-footer > div {
  display: grid;
  gap: 14px;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer strong {
  color: var(--text);
}

.login-page {
  min-height: 100vh;
}

.demo-page {
  min-height: 100vh;
}

.login-header {
  position: relative;
}

.login-shell,
.demo-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1120px, calc(100% - 36px));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: clamp(38px, 6vw, 82px) 0;
}

.login-card,
.login-preview,
.demo-card,
.demo-preview {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(16, 24, 39, 0.98), rgba(7, 11, 18, 0.94));
  box-shadow: var(--window-shadow);
}

.login-card,
.demo-card {
  display: grid;
  gap: 24px;
  padding: clamp(26px, 4vw, 44px);
}

.login-card h1,
.demo-card h1 {
  margin: 10px 0 14px;
  font-size: clamp(42px, 5vw, 66px);
}

.login-card p,
.demo-card p {
  color: var(--muted);
  line-height: 1.6;
}

.login-form,
.demo-form {
  display: grid;
  gap: 14px;
}

.login-form label,
.demo-form label {
  display: grid;
  gap: 8px;
}

.login-form label > span,
.login-form-row,
.demo-form label > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.login-form input[type="email"],
.login-form input[type="password"],
.demo-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(30, 41, 59, 0.95);
  border-radius: 14px;
  padding: 0 14px;
  background: rgba(7, 11, 18, 0.62);
  color: var(--text);
  outline: 0;
}

.login-form input:focus,
.demo-form input:focus {
  border-color: rgba(34, 211, 238, 0.56);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.08);
}

.login-form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.checkbox-label {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 8px !important;
}

.checkbox-label input {
  accent-color: var(--accent-blue);
}

.login-form-row a {
  color: var(--accent-cyan);
}

.login-error,
.demo-message {
  border: 1px solid rgba(248, 113, 113, 0.34);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(127, 29, 29, 0.22);
  color: #fecaca !important;
  font-size: 13px;
  font-weight: 850;
}

.demo-success {
  border-color: rgba(34, 197, 94, 0.34);
  background: rgba(20, 83, 45, 0.28);
  color: #bbf7d0 !important;
}

.login-submit,
.demo-submit {
  width: 100%;
  margin-top: 4px;
}

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

.login-preview,
.demo-preview {
  padding: 18px;
}

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

.login-preview-grid article,
.login-preview-list article {
  border: 1px solid rgba(30, 41, 59, 0.8);
  border-radius: 18px;
  background: rgba(7, 11, 18, 0.52);
}

.login-preview-grid article {
  min-height: 120px;
  padding: 18px;
}

.login-preview-grid span,
.login-preview-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.login-preview-grid strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(30px, 4vw, 46px);
}

.login-preview-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.login-preview-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
}

.demo-preview {
  display: grid;
  gap: 14px;
}

.demo-lead-card,
.demo-preview-list article {
  border: 1px solid rgba(30, 41, 59, 0.8);
  border-radius: 18px;
  background: rgba(7, 11, 18, 0.52);
}

.demo-lead-card {
  min-height: 250px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: clamp(22px, 4vw, 34px);
}

.demo-lead-card span,
.demo-preview-list span {
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-lead-card strong {
  color: var(--text);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.96;
}

.demo-lead-card p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.6;
}

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

.demo-preview-list article {
  display: grid;
  gap: 8px;
  min-height: 108px;
  padding: 16px;
}

.demo-preview-list strong {
  color: var(--text);
  font-size: 18px;
}

@media (max-width: 1080px) {
  .hero,
  .problem-section,
  .showcase-card,
  .scope-spotlight {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .showcase-card.reverse .showcase-copy {
    order: 0;
  }

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

  .faq-hover-board {
    min-height: 440px;
  }

  .faq-answer-stage {
    min-height: 240px;
  }
}

@media (max-width: 820px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 14px;
  }

  .dashboard-grid,
  .mockup-workspace,
  .document-layout,
  .login-shell,
  .demo-shell,
  .pricing-hero,
  .tier-section,
  .pricing-grid,
  .comparison-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .login-shell,
  .demo-shell {
    min-height: auto;
  }

  .scope-items article,
  .scope-items dl {
    grid-template-columns: 1fr;
  }

  .faq-word-list {
    gap: 8px 12px;
  }

  .faq-hover-board {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
  }

  .faq-trigger {
    font-size: clamp(34px, 9vw, 56px);
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .hero,
  .problem-section,
  .product-showcase,
  .section-block,
  .scope-spotlight,
  .comparison-section,
  .pricing-hero,
  .tier-section,
  .comparison-table-section,
  .faq-section,
  .final-cta,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    font-size: 16px;
  }

  .nav-links {
    font-size: 13px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .dashboard-mockup {
    padding: 12px;
    border-radius: 20px;
  }

  .hero-screen {
    grid-template-columns: 1fr;
    height: 420px;
  }

  .screen-sidebar {
    display: none;
  }

  .screen-table div {
    grid-template-columns: 1fr 0.9fr;
    min-height: auto;
    padding: 12px;
  }

  .screen-table div:first-child {
    display: none;
  }

  .screen-table div span:nth-child(3),
  .screen-table div span:nth-child(4) {
    display: none;
  }

  .portal-metrics-grid,
  .portal-dashboard-panels {
    grid-template-columns: repeat(2, 1fr);
  }

  .portal-follow-card article,
  .portal-file-board article {
    grid-template-columns: 1fr;
  }

  .compact-screen {
    min-height: 210px;
  }

  .mini-window {
    min-height: auto;
    padding: 14px;
    border-radius: 20px;
  }

  .mockup-topbar {
    margin: -2px -2px 14px;
  }

  .dashboard-grid,
  .login-preview-grid,
  .screen-metrics,
  .summary-metrics,
  .portal-metrics-grid,
  .portal-dashboard-panels,
  .email-summary,
  .step-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-screen {
    height: auto;
  }

  .portal-photo-heading {
    grid-template-columns: 1fr;
  }

  .portal-photo-heading strong {
    font-size: 32px;
  }

  .status-rows article {
    grid-template-columns: 1fr;
  }

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

  .file-pipeline {
    grid-template-columns: 1fr;
  }

  .file-pipeline i {
    display: none;
  }

  .gap-bars article {
    grid-template-columns: 1fr;
  }

  .faq-answer-stage {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 210px;
    border-radius: 24px;
    opacity: 1;
    transform: none;
  }

  .faq-answer-card {
    padding: 22px;
  }

  .scope-preview-lines article {
    align-items: flex-start;
    flex-direction: column;
  }
}
