:root {
  --bg: #0c1220;
  --surface: rgba(16, 24, 40, 0.8);
  --surface-2: rgba(18, 28, 47, 0.92);
  --surface-3: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f8ff;
  --muted: #a4b0c4;
  --muted-2: #7f8aa3;
  --teal: #2bd4b5;
  --blue: #4c7cff;
  --purple: #8a5cff;
  --success: #5fe099;
  --gold: #f2cb6d;
  --sage: #9ad0be;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --page-width: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(43, 212, 181, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(138, 92, 255, 0.16), transparent 32%),
    linear-gradient(180deg, #0a101b 0%, #0d1322 45%, #09111b 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.page-shell {
  width: min(calc(100% - 32px), var(--page-width));
  margin: 0 auto;
  padding-bottom: 28px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 16px 0 20px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(9, 14, 24, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.22);
}

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

.brand img,
.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.brand strong,
.footer-brand strong,
.mock-brand b,
.popup-brand strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand span,
.footer-brand span,
.mock-brand small,
.popup-brand span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

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

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s ease;
}

.site-nav a:hover { color: var(--text); }
.header-actions,
.hero-actions,
.cta-actions,
.pill-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.primary-button,
.secondary-button,
.ghost-button,
.popup-primary,
.popup-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.primary-button,
.popup-primary {
  border: 0;
  color: #08111b;
  background: linear-gradient(135deg, var(--teal), var(--blue) 55%, var(--purple));
  box-shadow: 0 10px 28px rgba(76, 124, 255, 0.32);
}

.secondary-button,
.ghost-button,
.popup-secondary {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.popup-primary:hover,
.popup-secondary:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(520px, 0.98fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 130px);
  padding: 46px 0 60px;
}

.eyebrow-row,
.proof-row,
.signal-strip,
.feature-grid,
.showcase-grid,
.workflow-grid,
.stats-grid,
.faq-list,
.archive-grid {
  display: grid;
}

.eyebrow-row {
  grid-auto-flow: column;
  justify-content: start;
  gap: 10px;
  margin-bottom: 20px;
}

.eyebrow-pill,
.vault-card small,
.popup-label,
.section-kicker,
.mini-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow-pill {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #d8e0f2;
  font-size: 11px;
  font-weight: 700;
}

.muted-pill { color: var(--muted); }

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.45rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.hero-copy h1 span {
  background: linear-gradient(135deg, var(--teal), var(--blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead,
.section-heading > p:last-child,
.showcase-copy p:last-child,
.quote-card p:last-child,
.cta-card p:last-of-type,
.faq-list p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.hero-lead {
  margin: 24px 0 28px;
  max-width: 660px;
}

.proof-row {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.proof-row article,
.feature-card,
.workflow-grid article,
.faq-list details,
.signal-strip,
.quote-card,
.cta-card,
.showcase-card,
.section-heading,
.performance-mock,
.reader-mock,
.desktop-shot,
.popup-shot,
.site-footer {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.proof-row article {
  padding: 18px;
  border-radius: 18px;
}

.proof-row strong,
.feature-card h3,
.workflow-grid h3,
.showcase-copy h3,
.performance-hero h4,
.reader-content h4,
.cta-card h2,
.section-heading h2,
.quote-card blockquote {
  letter-spacing: -0.03em;
}

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

.proof-row span,
.feature-card p,
.workflow-grid p,
.performance-mock p,
.showcase-copy p,
.signal-strip div,
.archive-card p,
.archive-card small,
.archive-card label,
.reader-source,
.reader-standfirst,
.highlight-chip,
.faq-list p,
.cta-card p,
.site-footer p {
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 740px;
}

.visual-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.55;
}

.orb-one {
  top: 80px;
  left: 20px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(43, 212, 181, 0.44), rgba(43, 212, 181, 0));
}

.orb-two {
  right: 10px;
  bottom: 100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(138, 92, 255, 0.36), rgba(138, 92, 255, 0));
}

.card-surface,
.reader-mock,
.performance-mock,
.cta-card,
.quote-card,
.site-footer,
.section-heading,
.signal-strip,
.feature-card,
.workflow-grid article,
.faq-list details,
.showcase-card {
  backdrop-filter: blur(18px);
}

.desktop-shot {
  position: absolute;
  inset: 0 60px 120px 0;
  border-radius: 28px;
  overflow: hidden;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.window-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.desktop-ui {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  min-height: 630px;
}

.mock-sidebar {
  padding: 22px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
}

.mock-brand img,
.popup-brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.mock-nav {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.mock-nav li {
  padding: 11px 12px;
  border-radius: 12px;
  color: #b7c1d5;
  font-size: 14px;
}

.mock-nav li.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.vault-card {
  margin-top: 24px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(25, 43, 54, 0.88), rgba(10, 19, 31, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vault-card b {
  display: block;
  font-size: 34px;
  margin-bottom: 4px;
}

.vault-card span,
.vault-card small {
  display: block;
  color: #c2d2df;
  font-size: 12px;
}

.mock-main {
  padding: 28px;
}

.mock-topbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.mock-topbar p,
.performance-hero p,
.section-kicker,
.mini-label,
.popup-label,
.reader-source,
.performance-mock small,
.archive-card small {
  margin: 0;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 700;
}

.mock-topbar h3,
.performance-hero h4 {
  margin: 8px 0 0;
  font-size: 30px;
}

.mock-topbar button {
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.mock-searchbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: #9ea9bd;
  font-size: 14px;
}

.mock-searchbar em,
.archive-card label,
.highlight-chip,
.pill-row span,
.reader-tabs em,
.stats-grid article,
.popup-shot button {
  font-style: normal;
}

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

.archive-card {
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.archive-thumb {
  height: 150px;
  border-radius: 14px;
  margin-bottom: 12px;
  position: relative;
}

.archive-thumb em {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(10, 14, 24, 0.5);
  color: #ecf4ff;
  font-size: 11px;
  font-weight: 700;
}

.gradient-a { background: linear-gradient(135deg, rgba(43, 212, 181, 0.35), rgba(76, 124, 255, 0.55)); }
.gradient-b { background: linear-gradient(135deg, rgba(76, 124, 255, 0.42), rgba(138, 92, 255, 0.58)); }
.gradient-c { background: linear-gradient(135deg, rgba(24, 39, 65, 0.9), rgba(43, 212, 181, 0.28)); }

.archive-card h4,
.reader-content h4 {
  margin: 7px 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.archive-card p {
  min-height: 58px;
  font-size: 13px;
  line-height: 1.6;
}

.archive-card label,
.highlight-chip,
.pill-row span,
.reader-tabs em {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  font-weight: 700;
}

.popup-shot {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 280px;
  padding: 20px;
  border-radius: 22px;
}

.popup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 8px rgba(95, 224, 153, 0.12);
}

.popup-label {
  margin: 18px 0 8px;
  font-size: 10px;
  color: var(--muted-2);
  font-weight: 700;
}

.popup-shot h4 {
  margin: 0;
  font-size: 21px;
  line-height: 1.18;
}

.popup-domain {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 13px;
}

.progress-track,
.meter {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.progress-track span,
.meter span {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--purple));
}

.capture-steps {
  display: grid;
  gap: 9px;
  margin: 16px 0 18px;
}

.capture-steps div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c8d3e7;
  font-size: 13px;
}

.capture-steps i {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-style: normal;
  font-size: 12px;
}

.popup-shot button {
  width: 100%;
  margin-top: 10px;
}

.signal-strip {
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 8px 0 80px;
  padding: 22px 24px;
  border-radius: 22px;
}

.signal-strip div {
  padding: 0 18px;
  font-size: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.signal-strip div:last-child { border-right: 0; }

.features-section,
.showcase-section,
.workflow-section,
.quote-section,
.faq-section,
.cta-section {
  padding: 24px 0 56px;
}

.section-heading {
  width: min(100%, 980px);
  margin-bottom: 26px;
  padding: 24px;
  border-radius: 24px;
}

.narrow-heading { width: min(100%, 820px); }

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
}

.section-heading h2,
.cta-card h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.section-heading > p:last-child,
.cta-card p:last-of-type {
  margin: 0;
}

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

.feature-card {
  padding: 24px;
  border-radius: 22px;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(43, 212, 181, 0.14), rgba(76, 124, 255, 0.18), rgba(138, 92, 255, 0.14));
  color: #e2ebfb;
  font-size: 20px;
  font-weight: 700;
}

.feature-card h3,
.workflow-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.feature-card p,
.workflow-grid p,
.showcase-copy p:last-child,
.performance-mock p,
.quote-card p:last-child,
.faq-list p,
.site-footer p,
.cta-card p,
.archive-card p,
.reader-standfirst,
.reader-source {
  font-size: 15px;
  line-height: 1.7;
}

.showcase-grid {
  gap: 18px;
}

.showcase-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 24px;
  align-items: center;
  padding: 26px;
  border-radius: 28px;
}

.showcase-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.reader-mock,
.performance-mock {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.reader-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: #cad5ea;
  font-size: 13px;
}

.reader-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reader-tabs em.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.reader-content-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 16px;
  margin-top: 16px;
}

.reader-content,
.reader-inspector {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.reader-content h4 {
  font-size: 30px;
  line-height: 1.08;
}

.reader-source,
.reader-standfirst { margin: 0 0 14px; }
.reader-standfirst { color: #dbe4f3; }

.reader-lines {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.reader-lines span,
.field-line,
.field-box {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.reader-lines span { height: 10px; }
.reader-lines span.wide { width: 95%; }
.reader-lines span.mid { width: 78%; }

.reader-inspector {
  display: grid;
  align-content: start;
  gap: 16px;
}

.reader-inspector button {
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.highlight-chip,
.field-line,
.field-box {
  margin-top: 10px;
}

.highlight-chip.gold { border-color: rgba(242, 203, 109, 0.3); color: #f4d993; }
.highlight-chip.sage { border-color: rgba(154, 208, 190, 0.3); color: #b9e3d5; }
.field-line { height: 12px; }
.field-box { height: 88px; border-radius: 16px; }

.performance-hero {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(28, 58, 66, 0.95), rgba(34, 48, 83, 0.95));
}

.performance-hero .light { color: rgba(255, 255, 255, 0.72); }
.pill-row span { color: #dfe7f7; }

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.stats-grid article {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
}

.meter-block {
  margin-top: 16px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.meter-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.meter-label span { color: #d0daee; font-weight: 600; }
.meter-label strong { font-size: 20px; }
.meter-block p { margin: 12px 0 0; }

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

.workflow-grid article {
  padding: 24px;
  border-radius: 22px;
}

.workflow-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: #d7e1f4;
  font-weight: 800;
}

.quote-card {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 34px;
  border-radius: 26px;
  text-align: center;
}

.quote-card blockquote {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
}

.faq-list {
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
  border-radius: 20px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { margin: 14px 0 0; }

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px;
  border-radius: 28px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border-radius: 22px;
}

@media (max-width: 1200px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { min-height: 760px; }
  .feature-grid,
  .workflow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .showcase-card { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .site-header { flex-wrap: wrap; justify-content: center; }
  .site-nav, .header-actions { width: 100%; justify-content: center; flex-wrap: wrap; }
  .proof-row,
  .signal-strip,
  .stats-grid,
  .reader-content-shell { grid-template-columns: 1fr; }
  .signal-strip div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 10px 0; }
  .signal-strip div:last-child { border-bottom: 0; }
  .archive-grid { grid-template-columns: 1fr; }
  .desktop-shot { inset: 0 0 180px 0; }
  .popup-shot { right: 16px; }
  .desktop-ui { grid-template-columns: 1fr; }
  .mock-sidebar { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
}

@media (max-width: 720px) {
  .page-shell { width: min(calc(100% - 20px), var(--page-width)); }
  .site-header { top: 10px; margin-top: 10px; }
  .hero { padding-top: 20px; gap: 26px; }
  .hero-copy h1 { font-size: 2.8rem; }
  .hero-lead,
  .section-heading > p:last-child,
  .showcase-copy p:last-child,
  .feature-card p,
  .workflow-grid p,
  .faq-list p,
  .cta-card p,
  .site-footer p { font-size: 15px; }
  .proof-row,
  .feature-grid,
  .workflow-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 920px; }
  .desktop-shot { position: relative; inset: auto; margin-bottom: 16px; }
  .popup-shot { position: relative; right: auto; bottom: auto; width: 100%; }
  .signal-strip { margin-bottom: 48px; }
  .section-heading,
  .feature-card,
  .workflow-grid article,
  .showcase-card,
  .quote-card,
  .faq-list details,
  .cta-card,
  .site-footer { padding: 20px; }
  .cta-card,
  .site-footer { flex-direction: column; align-items: start; }
}
