:root {
  --ink: #111827;
  --navy: #0b2348;
  --steel: #465569;
  --muted: #697588;
  --line: #cfd9e8;
  --line-soft: #e5ecf6;
  --surface: #ffffff;
  --surface-soft: #f5f8fd;
  --surface-blue: #edf5ff;
  --brand: #155bd8;
  --brand-strong: #0d43a6;
  --accent: #0b8f68;
  --accent-soft: #dff7ee;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 10px 26px rgba(15, 35, 73, 0.08);
  --shadow-md: 0 22px 60px rgba(15, 35, 73, 0.14);
  --container: min(1260px, calc(100vw - 3rem));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 0%, rgba(21, 91, 216, 0.13), transparent 26rem),
    linear-gradient(180deg, #f3f8ff 0%, #ffffff 24rem, #f7faff 100%);
  color: var(--ink);
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -120px;
  z-index: 200;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  padding: 0.65rem 0.9rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid rgba(17, 24, 39, 0.07);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

.site-header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand,
.brand-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  line-height: 1;
  overflow: visible;
}

.brand img,
.brand-footer img {
  max-width: none;
  object-fit: contain;
  overflow: visible;
}

.brand-mark {
  flex: 0 0 auto;
  width: auto;
  height: 2.8rem;
  filter: drop-shadow(0 1px 1px rgba(6, 18, 45, 0.18));
}

.brand-wordmark {
  flex: 0 0 auto;
  width: auto;
  height: 2.15rem;
  max-width: min(42vw, 210px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  color: var(--steel);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav ul a {
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.75rem;
}

.site-nav ul a:hover,
.site-nav ul a[aria-current="page"] {
  background: var(--surface-blue);
  color: var(--navy);
}

.nav-login {
  padding: 0.55rem 0.35rem;
}

.nav-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.78rem 1.05rem;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease,
    border-color 150ms ease;
}

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

.btn:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
details summary:focus-visible {
  outline: 3px solid rgba(21, 91, 216, 0.28);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 16px 30px rgba(21, 91, 216, 0.24);
}

.btn-primary:hover {
  background: var(--brand-strong);
}

.btn-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--navy);
}

.site-nav .btn-nav {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 24px rgba(21, 91, 216, 0.18);
}

.site-nav .btn-nav:hover {
  background: var(--brand-strong);
  color: #fff;
}

.text-link {
  display: inline-flex;
  color: var(--brand);
  font-weight: 800;
  text-decoration-color: rgba(21, 91, 216, 0.35);
  text-underline-offset: 0.22em;
}

.hero {
  padding: 4.3rem 0 2.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(32rem, 1.1fr);
  gap: 3.4rem;
  align-items: center;
}

.hero-copy-block {
  min-width: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 5.2vw, 4.65rem);
  font-weight: 800;
  letter-spacing: -0.038em;
}

h2 {
  max-width: 14ch;
  font-size: clamp(1.7rem, 2.8vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.028em;
}

h3 {
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.hero-copy {
  max-width: 48ch;
  margin: 1.15rem 0 0;
  color: var(--steel);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.55rem;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.65rem 0 0;
  padding: 0;
  list-style: none;
}

.metric-strip li {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
  padding: 0.78rem 0.82rem;
}

.metric-strip strong {
  display: block;
  color: var(--navy);
  font-size: 0.98rem;
}

.metric-strip span {
  display: block;
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.product-cockpit {
  min-width: 0;
  border: 1px solid rgba(11, 35, 72, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 255, 0.94)),
    #fff;
  box-shadow: var(--shadow-md);
  padding: 1rem;
}

.cockpit-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line-soft);
  padding: 0.2rem 0.2rem 0.85rem;
  color: var(--steel);
  font-size: 0.86rem;
  font-weight: 700;
}

.cockpit-top strong {
  border-radius: 999px;
  background: var(--accent-soft);
  color: #07563f;
  padding: 0.34rem 0.62rem;
  font-size: 0.78rem;
}

.cockpit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 0.8rem;
  padding-top: 0.85rem;
}

.cockpit-panel {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 0.92rem;
  box-shadow: var(--shadow-sm);
}

.cockpit-panel-large {
  grid-row: span 2;
}

.cockpit-panel-accent {
  background: linear-gradient(145deg, #f3fbf8, #ffffff);
  border-color: rgba(11, 143, 104, 0.22);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.panel-head strong {
  color: var(--navy);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
}

.mini-chart {
  display: flex;
  height: 12.5rem;
  align-items: end;
  gap: 0.65rem;
  margin-top: 1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #f6f9ff, #eef5ff);
  padding: 1rem;
}

.mini-chart span {
  flex: 1;
  min-height: 2rem;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--brand), #7faeff);
}

.cockpit-panel p {
  margin: 0.85rem 0 0;
  color: var(--steel);
  font-size: 0.92rem;
}

.mini-board {
  display: grid;
  gap: 0.48rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.mini-board li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--line-soft);
  border-radius: 9px;
  padding: 0.54rem;
  color: var(--navy);
  font-weight: 800;
}

.mini-board span {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 8px;
  background: var(--surface-blue);
  color: var(--brand);
  font-size: 0.78rem;
}

.page-hero {
  padding: 3.6rem 0 1.7rem;
}

.page-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.25rem, 4.1vw, 3.55rem);
}

.page-hero p {
  max-width: 62ch;
  color: var(--steel);
  font-size: 1.02rem;
}

.section {
  padding: 3.35rem 0;
}

.section-tight {
  padding-top: 1.9rem;
}

.section-soft {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #f5f9ff, #ffffff);
}

.section-head {
  margin-bottom: 1.4rem;
}

.section-head-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.4rem;
  align-items: end;
}

.section-head p {
  max-width: 54ch;
  margin: 0;
  color: var(--steel);
  font-size: 1.02rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.moment-grid,
.feature-grid,
.testimonial-grid,
.pricing-grid,
.pillar-grid,
.narrative-grid,
.support-steps,
.split-grid {
  display: grid;
  gap: 1rem;
}

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

.moment-card,
.feature-card,
.testimonial-card,
.pricing-card,
.pillar-card,
.narrative-grid article,
.support-steps article,
.form-card,
details {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.moment-card {
  display: grid;
  align-content: start;
  padding: 1rem;
}

.moment-index {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
}

.moment-card h3 {
  margin-top: 0.38rem;
}

.moment-card p,
.feature-card p,
.pillar-card p:last-child,
.narrative-grid p,
.support-steps p {
  color: var(--steel);
}

.moment-card ul,
.feature-card ul,
.pricing-card ul,
.contact-list,
.check-list {
  margin: 0.7rem 0 0;
  padding-left: 1.05rem;
}

.moment-card li + li,
.feature-card li + li,
.pricing-card li + li {
  margin-top: 0.34rem;
}

.proof-section {
  background:
    linear-gradient(90deg, rgba(237, 245, 255, 0.86), rgba(255, 255, 255, 0.96)),
    #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 2rem;
  align-items: start;
}

.proof-copy {
  position: sticky;
  top: 6.5rem;
}

.proof-copy p {
  max-width: 42ch;
  color: var(--steel);
}

.proof-stack {
  display: grid;
  gap: 0.85rem;
}

.proof-card {
  display: grid;
  grid-template-columns: 14rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 0.8rem;
  box-shadow: var(--shadow-sm);
}

.screenshot-trigger {
  display: block;
  width: 100%;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  padding: 0;
  cursor: zoom-in;
}

.screenshot-trigger:focus-visible {
  outline: 3px solid rgba(21, 91, 216, 0.28);
  outline-offset: 3px;
}

.screenshot-trigger img {
  transition:
    transform 160ms ease,
    filter 160ms ease;
}

.screenshot-trigger:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.01);
}

.proof-card img,
.feature-card img,
.screenshot-trigger img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  object-fit: cover;
  object-position: top center;
}

.proof-image-3 {
  object-position: top center;
}

.screenshot-lightbox {
  width: min(1120px, calc(100vw - 2rem));
  max-width: none;
  max-height: calc(100dvh - 2rem);
  border: 0;
  border-radius: var(--radius-lg);
  background: transparent;
  padding: 0;
  overflow: visible;
}

.screenshot-lightbox:focus {
  outline: none;
}

.screenshot-lightbox::backdrop {
  background: rgba(7, 15, 29, 0.72);
  backdrop-filter: blur(10px);
}

.lightbox-panel {
  position: relative;
  max-height: calc(100dvh - 2rem);
  overflow: auto;
  border: 1px solid rgba(214, 226, 244, 0.22);
  border-radius: var(--radius-lg);
  background: #f8fbff;
  box-shadow: 0 30px 90px rgba(3, 10, 22, 0.42);
}

.lightbox-panel img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  background: #f8fbff;
}

.proof-card p {
  color: var(--steel);
}

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

.feature-card {
  padding: 1rem;
}

.feature-card h3 {
  margin-top: 0.9rem;
}

.pillar-grid,
.narrative-grid,
.support-steps,
.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pillar-card,
.narrative-grid article,
.support-steps article {
  padding: 1.1rem;
}

.pillar-card h2 {
  max-width: none;
  margin-top: 0.5rem;
  font-size: 1.38rem;
  letter-spacing: -0.02em;
}

.narrative-grid h2,
.support-steps h2 {
  max-width: none;
  font-size: clamp(1.55rem, 2.35vw, 2.2rem);
  letter-spacing: -0.028em;
}

.pricing-card h3 {
  font-size: 1.48rem;
  letter-spacing: -0.028em;
}

.testimonial-card {
  margin: 0;
  padding: 1.2rem;
}

.testimonial-card p {
  margin-top: 0;
  font-size: 1.02rem;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.15rem;
}

.pricing-card-featured {
  border-color: rgba(11, 143, 104, 0.42);
  box-shadow: 0 22px 46px rgba(11, 143, 104, 0.16);
}

.tier-tagline,
.price-line-muted,
.support-note,
.form-note {
  color: var(--muted);
}

.price-line {
  margin: 0;
  color: var(--steel);
}

.price-line span {
  color: var(--ink);
  font-size: 2.15rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.pricing-card .btn {
  margin-top: auto;
}

.table-wrap {
  margin-top: 1rem;
  overflow-x: auto;
}

.comparison-cards {
  display: none;
  gap: 0.8rem;
  margin-top: 1rem;
}

.comparison-cards article {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.comparison-cards dl {
  display: grid;
  gap: 0.62rem;
  margin: 0.85rem 0 0;
}

.comparison-cards dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: start;
  border-top: 1px solid var(--line-soft);
  padding-top: 0.62rem;
}

.comparison-cards dt {
  color: var(--steel);
  font-weight: 800;
}

.comparison-cards dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  text-align: right;
}

table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: #fff;
  border-collapse: collapse;
  box-shadow: var(--shadow-sm);
}

th,
td {
  border-bottom: 1px solid var(--line-soft);
  padding: 0.85rem;
  text-align: left;
}

thead th {
  background: var(--surface-blue);
  color: var(--navy);
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.support-note a,
.legal-copy a,
.contact-list a,
.check-list a {
  color: var(--brand);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-weight: 800;
  vertical-align: middle;
}

.social-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.social-link-x .social-icon {
  border: 1px solid currentColor;
  border-radius: 0.32rem;
  padding: 0.16rem;
}

.faq-stack {
  display: grid;
  gap: 0.7rem;
}

details {
  padding: 0.85rem 0.95rem;
}

details summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

details p {
  margin: 0.64rem 0 0;
  color: var(--steel);
}

.form-card {
  display: grid;
  gap: 0.76rem;
  padding: 1.1rem;
}

.form-card label {
  display: grid;
  gap: 0.36rem;
  color: var(--steel);
  font-weight: 700;
}

input,
textarea,
select {
  border: 1px solid #b9c7db;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 0.72rem 0.74rem;
}

.legal-copy h2 {
  max-width: none;
  margin-top: 1.25rem;
  font-size: 1.32rem;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  color: var(--steel);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  border: 1px solid rgba(21, 91, 216, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 12%, rgba(11, 143, 104, 0.16), transparent 15rem),
    linear-gradient(135deg, #eef5ff, #ffffff);
  padding: 1.45rem;
  box-shadow: var(--shadow-sm);
}

.cta-band h2 {
  max-width: 24ch;
}

.cta-band p {
  max-width: 48ch;
  margin: 0.55rem 0 0;
  color: var(--steel);
}

.site-footer {
  background: #0d1c33;
  color: #d6e2f4;
  padding: 3rem 0 1.2rem;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.8fr 1fr;
  gap: 1.2rem;
}

.site-footer h2 {
  margin: 0 0 0.55rem;
  color: #fff;
  font-size: 0.98rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #d6e2f4;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.4rem;
}

.brand-footer {
  margin-bottom: 0.65rem;
}

.brand-footer .brand-mark {
  height: 3rem;
}

.brand-footer .brand-wordmark {
  height: 2.25rem;
  max-width: min(24rem, calc(100vw - 7rem));
}

.brand-wordmark-light {
  filter: brightness(0) invert(1);
}

.footer-meta {
  margin-top: 0.8rem;
}

.footer-bottom {
  margin-top: 1.8rem;
  border-top: 1px solid rgba(214, 226, 244, 0.18);
  padding-top: 0.8rem;
  color: #a8b8d8;
  font-size: 0.88rem;
}

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

  .hero {
    padding-top: 4rem;
  }

  h1 {
    max-width: 13ch;
  }

  .product-cockpit,
  .proof-copy {
    position: static;
  }

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

  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer-grid section:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(1180px, calc(100vw - 1.5rem));
  }

  .site-header-inner {
    min-height: 68px;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand .brand-mark {
    height: 2.45rem;
  }

  .brand .brand-wordmark {
    height: 1.85rem;
    max-width: 10.5rem;
  }

  .site-nav {
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-md);
    padding: 0.85rem;
  }

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

  .site-nav ul {
    display: grid;
    gap: 0.25rem;
  }

  .nav-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink);
    padding: 0.56rem 0.82rem;
    font: inherit;
    font-weight: 800;
  }

  .btn-nav {
    margin-top: 0.25rem;
  }

  .hero-grid,
  .section-head-split,
  .feature-grid,
  .pricing-grid,
  .testimonial-grid,
  .pillar-grid,
  .narrative-grid,
  .support-steps,
  .split-grid,
  .proof-card,
  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 0 2.2rem;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.65rem);
  }

  .page-hero h1 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .metric-strip,
  .moment-grid {
    grid-template-columns: 1fr;
  }

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

  .cockpit-panel-large {
    grid-row: auto;
  }

  .mini-chart {
    height: 9rem;
  }

  .proof-card img {
    width: 100%;
  }

  .screenshot-lightbox {
    width: min(100vw - 1rem, 760px);
    max-height: calc(100dvh - 1rem);
  }

  .lightbox-panel {
    max-height: calc(100dvh - 1rem);
    border-radius: var(--radius-md);
    overflow: auto;
  }

  .lightbox-panel img {
    width: max(42rem, 100%);
    max-width: none;
  }

  .cta-band {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-band .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .table-wrap {
    display: none;
  }

  .comparison-cards {
    display: grid;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .feature-card,
  .pricing-card,
  .testimonial-card,
  .pillar-card,
  .moment-card,
  .proof-card,
  .product-cockpit {
    transition:
      transform 180ms ease,
      box-shadow 180ms ease;
  }

  .feature-card:hover,
  .pricing-card:hover,
  .testimonial-card:hover,
  .pillar-card:hover,
  .moment-card:hover,
  .proof-card:hover,
  .product-cockpit:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(15, 35, 73, 0.13);
  }
}

/* Marketing homepage revamp */
:root {
  --ink: #08111f;
  --night: #07101e;
  --night-2: #0a1728;
  --navy: #10284b;
  --steel: #536277;
  --muted: #7f8ca0;
  --line: #ccd8e8;
  --line-soft: #e4ebf4;
  --surface: #ffffff;
  --surface-soft: #f4f8fd;
  --surface-blue: #e8f2ff;
  --brand: #2b7cff;
  --brand-strong: #155bd8;
  --accent: #22c18a;
  --accent-soft: #dcf8ee;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 12px 28px rgba(6, 17, 36, 0.08);
  --shadow-md: 0 28px 80px rgba(6, 17, 36, 0.2);
}

body {
  background: #ffffff;
  color: var(--ink);
}

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

h1 {
  max-width: 15ch;
  font-size: 4.05rem;
}

h2 {
  max-width: 15ch;
  font-size: 2.55rem;
}

h3 {
  font-size: 1.08rem;
}

.site-header {
  border-bottom-color: rgba(202, 218, 240, 0.15);
  background: rgba(7, 16, 30, 0.88);
  backdrop-filter: blur(18px);
}

.brand-wordmark {
  filter: brightness(0) invert(1);
}

.site-nav a {
  color: #c3d0e3;
}

.site-nav ul a:hover,
.site-nav ul a[aria-current="page"] {
  background: rgba(43, 124, 255, 0.14);
  color: #ffffff;
}

.nav-login {
  color: #e7edf7;
}

.hero-command {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(34, 193, 138, 0.12), transparent 28rem),
    radial-gradient(circle at 78% 30%, rgba(43, 124, 255, 0.22), transparent 27rem),
    linear-gradient(180deg, var(--night) 0%, var(--night-2) 86%, #ffffff 86%);
  padding: 4.2rem 0 4.6rem;
}

.hero-command::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 11rem;
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.98) 72%),
    repeating-linear-gradient(90deg, rgba(34, 193, 138, 0.12) 0 1px, transparent 1px 6.4rem);
  content: "";
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 74%;
  opacity: 0.58;
}

.hero-command .container {
  position: relative;
  z-index: 2;
}

.hero-command .hero-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(34rem, 1.12fr);
  gap: 3.2rem;
}

.hero-command h1 {
  color: #ffffff;
}

.hero-command .hero-copy {
  max-width: 43rem;
  color: #bfd0e7;
  font-size: 1.16rem;
}

.btn-secondary-dark {
  border-color: rgba(202, 218, 240, 0.28);
  background: rgba(255, 255, 255, 0.07);
  color: #f7fbff;
}

.btn-secondary-dark:hover {
  border-color: rgba(202, 218, 240, 0.46);
  background: rgba(255, 255, 255, 0.12);
}

.command-stage {
  position: relative;
  min-height: 30rem;
  perspective: 1100px;
}

.command-orbit {
  position: absolute;
  inset: 2rem 1rem auto;
  height: 18rem;
  border: 1px solid rgba(34, 193, 138, 0.22);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(-16deg);
  box-shadow: 0 0 55px rgba(43, 124, 255, 0.12);
}

.command-board {
  position: relative;
  transform: rotateX(8deg) rotateY(-13deg) rotateZ(1deg);
  transform-style: preserve-3d;
  border: 1px solid rgba(202, 218, 240, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(11, 25, 45, 0.96), rgba(8, 17, 31, 0.88)),
    var(--night-2);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 1rem;
}

.command-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(202, 218, 240, 0.12);
  padding: 0.2rem 0.2rem 0.9rem;
  color: #9eb0c7;
  font-size: 0.84rem;
  font-weight: 800;
}

.command-top strong {
  border: 1px solid rgba(34, 193, 138, 0.28);
  border-radius: 999px;
  background: rgba(34, 193, 138, 0.1);
  color: #9bf4cf;
  padding: 0.35rem 0.62rem;
  font-size: 0.78rem;
}

.command-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0.85rem;
  padding-top: 0.9rem;
}

.command-panel {
  border: 1px solid rgba(202, 218, 240, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 0.95rem;
}

.command-panel-draft {
  grid-row: span 2;
}

.command-panel-assistant {
  background: linear-gradient(145deg, rgba(43, 124, 255, 0.16), rgba(255, 255, 255, 0.045));
}

.command-panel-slack {
  grid-column: 1 / -1;
}

.command-panel .panel-head {
  color: #91a3ba;
}

.command-panel .panel-head strong {
  color: #eaf2ff;
}

.draft-lanes {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.draft-lanes li {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: center;
  border: 1px solid rgba(202, 218, 240, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.64rem;
}

.draft-lanes span {
  display: grid;
  height: 2.15rem;
  place-items: center;
  border-radius: 8px;
  background: rgba(43, 124, 255, 0.16);
  color: #8db8ff;
  font-size: 0.78rem;
  font-weight: 900;
}

.draft-lanes strong {
  color: #ffffff;
}

.draft-lanes em {
  color: #8defc5;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 800;
}

.signal-chart {
  display: flex;
  height: 12rem;
  align-items: end;
  gap: 0.52rem;
  margin-top: 1rem;
  border-radius: 10px;
  background:
    linear-gradient(rgba(202, 218, 240, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(202, 218, 240, 0.08) 1px, transparent 1px);
  background-size: 100% 25%, 20% 100%;
  padding: 0.9rem;
}

.signal-chart span {
  flex: 1;
  min-height: 2rem;
  border-radius: 999px 999px 5px 5px;
  background: linear-gradient(180deg, #22c18a, #2b7cff);
  box-shadow: 0 0 18px rgba(34, 193, 138, 0.26);
}

.command-panel p {
  margin: 0.85rem 0 0;
  color: #c3d0e3;
}

.workflow-section {
  padding-top: 4.2rem;
  background: #ffffff;
}

.workflow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.workflow-rail::before {
  position: absolute;
  top: 2.2rem;
  right: 1rem;
  left: 1rem;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  content: "";
}

.workflow-step {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 18rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.workflow-step::before {
  width: 0.86rem;
  height: 0.86rem;
  margin-bottom: 1.2rem;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(34, 193, 138, 0.35);
  content: "";
}

.workflow-step p {
  color: var(--steel);
}

.workflow-step ul {
  margin: auto 0 0;
  padding-left: 1.05rem;
}

.proof-section-dark {
  background:
    radial-gradient(circle at 10% 8%, rgba(34, 193, 138, 0.12), transparent 24rem),
    linear-gradient(180deg, #08111f, #0b182b);
}

.proof-section-dark h2,
.proof-section-dark h3 {
  color: #ffffff;
}

.proof-section-dark .proof-copy p,
.proof-section-dark .proof-card p {
  color: #c3d0e3;
}

.text-link-on-dark {
  color: #8defc5;
  text-decoration-color: rgba(141, 239, 197, 0.44);
}

.proof-section-dark .proof-card {
  border-color: rgba(202, 218, 240, 0.16);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.proof-section-dark .screenshot-trigger img {
  border-color: rgba(202, 218, 240, 0.16);
  background: #0c1829;
}

.pricing-preview-section {
  background:
    linear-gradient(180deg, #f6f9fd, #ffffff);
}

.pricing-grid-preview .pricing-card {
  border-radius: var(--radius-md);
}

.final-cta-section {
  padding-top: 2.2rem;
  background: #ffffff;
}

.final-cta-section .cta-band {
  overflow: hidden;
  border-color: rgba(34, 193, 138, 0.24);
  background:
    linear-gradient(110deg, rgba(8, 17, 31, 0.96), rgba(16, 40, 75, 0.94)),
    var(--night);
}

.final-cta-section .cta-band h2 {
  color: #ffffff;
}

.final-cta-section .cta-band p {
  color: #c3d0e3;
}

@media (prefers-reduced-motion: no-preference) {
  .command-board {
    transition: transform 220ms ease;
  }

  .workflow-step,
  .proof-card,
  .pricing-card {
    transition:
      transform 180ms ease,
      box-shadow 180ms ease,
      border-color 180ms ease;
  }

  .workflow-step:hover,
  .proof-card:hover,
  .pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 54px rgba(6, 17, 36, 0.14);
  }
}

@media (max-width: 1060px) {
  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-command .hero-grid,
  .workflow-rail {
    grid-template-columns: 1fr;
  }

  .hero-command {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-command::after,
  .workflow-rail::before {
    display: none;
  }

  .command-stage {
    min-height: auto;
  }

  .command-board {
    transform: none;
  }

  .workflow-step {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    background: rgba(7, 16, 30, 0.95);
  }

  .site-nav {
    border-color: rgba(202, 218, 240, 0.18);
    background: #0a1728;
  }

  .nav-toggle {
    border-color: rgba(202, 218, 240, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-command {
    padding: 3rem 0 3.6rem;
  }

  .hero-command .hero-copy {
    font-size: 1.04rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .command-layout,
  .draft-lanes li {
    grid-template-columns: 1fr;
  }

  .command-panel-draft,
  .command-panel-slack {
    grid-column: auto;
    grid-row: auto;
  }

  .signal-chart {
    height: 8.5rem;
  }

  .proof-section-dark .proof-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .command-top {
    align-items: flex-start;
    flex-direction: column;
  }
}
