:root {
  --ink: #07111f;
  --ink-2: #0b1728;
  --muted: #687487;
  --line: #dfe5ee;
  --blue: #2479ff;
  --green: #45d69b;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.symbol-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 11px 15px;
  color: #fff;
  background: #07111f;
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid #0c68dd;
  outline-offset: 4px;
  border-radius: 5px;
}

.site-header {
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(223, 229, 238, .65);
  backdrop-filter: blur(14px);
  position: relative;
  z-index: 30;
}

.nav-shell {
  width: min(1240px, calc(100% - 48px));
  height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 158px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #526075;
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a,
.sign-in-link,
footer a,
.mobile-nav nav a {
  transition: color .18s ease;
}

.desktop-nav a,
.sign-in-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.sign-in-link { min-width: 44px; }

.desktop-nav a:hover,
.sign-in-link:hover,
footer a:hover,
.mobile-nav nav a:hover {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #132238;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary svg {
  width: 22px;
  height: 22px;
}

.mobile-nav nav {
  position: absolute;
  top: 56px;
  right: 0;
  width: min(260px, calc(100vw - 32px));
  padding: 12px;
  display: grid;
  gap: 4px;
  color: #324054;
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(18, 43, 76, .2);
}

.mobile-nav nav a {
  min-height: 46px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.mobile-nav nav a:last-child {
  justify-content: center;
  color: #fff;
  background: var(--blue);
}

.button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  background: linear-gradient(135deg, #2e7dff, #1f61e5);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(36, 111, 255, .24), inset 0 1px rgba(255, 255, 255, .3);
  font-size: 14px;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button svg,
.text-link svg,
.feature-copy a svg {
  flex: 0 0 auto;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(36, 111, 255, .32), inset 0 1px rgba(255, 255, 255, .3);
}

.button-small {
  min-height: 44px;
  padding: 0 17px;
  border-radius: 10px;
  font-size: 12px;
}

.button-ghost {
  color: #27364a;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 6px 22px rgba(11, 26, 52, .12);
}

.button-light {
  color: #fff;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: none;
}

.hero {
  min-height: 820px;
  position: relative;
  overflow: hidden;
  padding: 92px 24px 80px;
  background: radial-gradient(circle at 72% 34%, #e7f2ff 0, #f6f9ff 27%, transparent 53%), linear-gradient(180deg, #fff, #f6f8fc);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .38;
  background-image: linear-gradient(rgba(205, 216, 231, .2) 1px, transparent 1px), linear-gradient(90deg, rgba(205, 216, 231, .2) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  right: -120px;
  top: 30px;
  background: rgba(82, 203, 255, .14);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-copy {
  width: min(1180px, 100%);
  margin: auto;
  position: relative;
  z-index: 3;
}

.hero-copy > * {
  max-width: 650px;
}

.eyebrow-pill {
  width: max-content;
  max-width: 100%;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #42617f;
  background: rgba(255, 255, 255, .72);
  border: 1px solid #c9d9f0;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-pill svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  margin: 25px 0 22px;
  font-size: clamp(58px, 6.2vw, 88px);
  font-weight: 780;
  letter-spacing: -.065em;
  line-height: .98;
}

.hero h1 span {
  color: var(--blue);
}

.hero-copy > p {
  max-width: 600px;
  color: #5d697b;
  font-size: 19px;
  line-height: 1.7;
}

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

.hero-proof {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: #5e6b7c;
  font-size: 12px;
  font-weight: 650;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-proof svg {
  color: #18835f;
}

.product-stage {
  width: min(660px, 49vw);
  position: absolute;
  left: calc(50% + 30px);
  top: 150px;
  z-index: 3;
}

.sample-label,
.visual-sample-label {
  color: #4f6175;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sample-label {
  position: absolute;
  top: -28px;
  right: 4px;
  z-index: 4;
}

.app-window {
  min-height: 510px;
  display: grid;
  grid-template-columns: 54px 1fr;
  overflow: hidden;
  color: #fff;
  background: #0b1727;
  border: 1px solid #b9c8dd;
  border-radius: 18px;
  box-shadow: 0 40px 90px rgba(29, 72, 125, .23), 0 10px 30px rgba(21, 52, 85, .14);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.app-rail {
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, .05);
}

.rail-logo {
  width: 28px;
  height: 28px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: linear-gradient(135deg, #2f7dff, #51d8dd);
  border-radius: 8px;
  transform: rotate(-5deg);
}

.rail-logo span {
  width: 4px;
  height: 8px;
  display: block;
  background: #fff;
  border-radius: 5px;
}

.rail-logo span:nth-child(2) {
  height: 15px;
}

.rail-logo span:nth-child(3) {
  height: 11px;
}

.rail-nav {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #75879e;
  border-radius: 8px;
}

.rail-nav.active {
  color: #5fc9ff;
  background: #142f4c;
  border: 1px solid #27577b;
}

.app-main {
  min-width: 0;
  padding: 18px 18px 12px;
  color: #fff;
  background: radial-gradient(circle at 75% 15%, #13355a, transparent 34%), #0b1727;
}

.app-topbar,
.card-heading,
.app-statusbar,
.mini-action,
.analytics-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-topbar > div,
.card-heading > div {
  display: grid;
  gap: 3px;
}

.app-topbar small,
.card-heading small,
.readiness-head small {
  color: #7890aa;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .15em;
}

.app-topbar strong {
  font-size: 17px;
}

.workspace-pill {
  padding: 6px 9px;
  color: #8ee6c1;
  background: #102b28;
  border: 1px solid #265546;
  border-radius: 999px;
  font-size: 9px;
}

.workspace-pill i,
.app-statusbar i {
  width: 5px;
  height: 5px;
  display: inline-block;
  margin-right: 5px;
  background: #52dca2;
  border-radius: 50%;
  box-shadow: 0 0 10px #52dca2;
}

.channel-strip {
  margin: 18px 0 14px;
  display: flex;
  gap: 6px;
  overflow: hidden;
}

.channel-chip {
  min-width: 66px;
  padding: 7px 5px;
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: .58;
  background: #111e30;
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: 8px;
}

.channel-chip.selected {
  opacity: 1;
  background: #142941;
  border-color: #2d5e8a;
}

.channel-chip b {
  font-size: 12px;
}

.channel-chip small {
  color: #aab9cb;
  font-size: 7px;
  white-space: nowrap;
}

.channel-chip svg {
  margin-left: auto;
  color: #5fdba7;
  font-size: 11px;
}

.facebook { color: #2584ff; }
.instagram { color: #f34f9d; }
.x-network { color: #eaf2ff; }
.linkedin { color: #4d9cff; }
.youtube { color: #ff5353; }
.tiktok { color: #55e7df; }
.pinterest { color: #ef4d62; }

.composer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr;
  gap: 12px;
}

.compose-card,
.readiness-card {
  padding: 14px;
  background: #0e1c2e;
  border: 1px solid #243750;
  border-radius: 12px;
}

.card-heading strong {
  font-size: 11px;
}

.card-heading > span {
  display: flex;
  gap: 3px;
  color: #79dcb2;
  font-size: 8px;
}

.fake-editor {
  min-height: 106px;
  margin-top: 12px;
  padding: 12px;
  color: #d9e2ef;
  background: #0a1626;
  border: 1px solid #263950;
  border-radius: 8px;
  font-size: 10px;
}

.fake-editor p {
  margin: 0 0 8px;
  line-height: 1.5;
}

.fake-editor p + p {
  color: #8090a6;
}

.fake-editor i {
  width: 1px;
  height: 12px;
  display: block;
  background: #57b7ff;
  animation: cursor-blink 1.4s steps(2, end) infinite;
}

@keyframes cursor-blink {
  50% { opacity: 0; }
}

.editor-tools {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  color: #6f8198;
  font-size: 8px;
}

.editor-tools span:first-child {
  display: flex;
  gap: 7px;
}

.media-preview {
  margin-top: 10px;
  padding: 8px;
  display: grid;
  grid-template-columns: 43px 1fr auto;
  align-items: center;
  gap: 9px;
  background: #14253a;
  border-radius: 8px;
}

.media-art {
  width: 43px;
  height: 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #3a6ef4, #56d4d6);
  border-radius: 5px;
  font-size: 6px;
  font-weight: 900;
}

.media-preview > div:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.media-preview strong { font-size: 8px; }
.media-preview small { color: #8295ab; font-size: 7px; }
.media-preview > svg { color: #52dca2; }

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

.score-ring,
.readiness-score > span {
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 800;
}

.score-ring {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  background: radial-gradient(circle, #10223a 55%, transparent 57%), conic-gradient(#56d8a5 92%, #26364b 0);
  font-size: 11px;
}

.readiness-head > div:last-child {
  display: grid;
  gap: 4px;
}

.readiness-head strong { font-size: 9px; }

.readiness-list {
  margin: 15px 0 12px;
  display: grid;
  gap: 9px;
}

.readiness-list > span {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 7px;
  color: #55d8a5;
}

.readiness-list b {
  display: grid;
  gap: 2px;
  color: #b5c2d2;
  font-size: 8px;
}

.readiness-list small {
  color: #74869c;
  font-size: 7px;
}

.readiness-list .advisory { color: #f1ba5b; }

.sample-action {
  width: 100%;
  min-height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #fff;
  background: #2879f7;
  border-radius: 7px;
  font-size: 8px;
  font-weight: 750;
}

.app-statusbar {
  padding-top: 10px;
  color: #71839a;
  font-size: 7px;
}

.app-statusbar span {
  display: flex;
  align-items: center;
  gap: 3px;
}

.floating-card {
  position: absolute;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .93);
  border: 1px solid #cfdaea;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(33, 72, 114, .17);
  backdrop-filter: blur(18px);
}

.floating-card small { color: #687789; font-size: 8px; }
.floating-card strong { font-size: 11px; }
.floating-card > span { display: grid; gap: 2px; }

.floating-card.health { left: -54px; top: 160px; }
.floating-card.health > svg { padding: 7px; color: #16805d; background: #e9f9f4; border-radius: 8px; font-size: 28px; }
.floating-card.health > b { padding: 4px 6px; color: #14724f; background: #e4f7ef; border-radius: 999px; font-size: 7px; }
.floating-card.performance { right: -26px; bottom: 52px; align-items: end; }
.floating-card.performance strong { color: #147355; font-size: 15px; }

.mini-bars {
  height: 28px;
  display: flex;
  align-items: end;
  gap: 2px;
}

.mini-bars i { width: 3px; height: 35%; background: #44c79a; border-radius: 2px; }
.mini-bars i:nth-child(2) { height: 55%; }
.mini-bars i:nth-child(3) { height: 45%; }
.mini-bars i:nth-child(4) { height: 73%; }
.mini-bars i:nth-child(5) { height: 100%; }

.platform-band {
  padding: 28px 24px 34px;
  color: #fff;
  background: #081320;
  text-align: center;
}

.platform-band p {
  margin: 0 0 22px;
  color: #8a9bad;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.platform-band > div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 34px;
}

.platform-band span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #c3ced9;
  font-size: 12px;
  font-weight: 650;
}

.platform-band b { font-size: 17px; }

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}

.section-kicker {
  color: #276bc4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.problem { padding: 120px 0 110px; }

.problem-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.3fr .8fr;
  gap: 90px;
}

.problem-grid h2,
.center-heading h2,
.insight-copy h2,
.confidence-copy h2,
.faq h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 750;
  letter-spacing: -.05em;
  line-height: 1.05;
}

.problem-grid p,
.center-heading p,
.feature-copy p,
.insight-copy > p,
.confidence-copy > p,
.faq-heading p,
.final-cta > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.text-link,
.feature-copy a {
  min-height: 32px;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #1d65c7;
  font-size: 13px;
  font-weight: 750;
}

.stat-line {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.stat-line > div {
  padding: 34px 0 0;
  display: flex;
  align-items: baseline;
  gap: 11px;
}

.stat-line > div + div {
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

.stat-line strong {
  font-size: 42px;
  letter-spacing: -.06em;
}

.stat-line div:last-child strong {
  font-size: 29px;
  letter-spacing: -.04em;
}

.stat-line span { color: #687587; font-size: 12px; }

.workflow { padding: 105px 0; }

.center-heading {
  max-width: 760px;
  margin: auto;
  text-align: center;
}

.center-heading h2 { margin-top: 16px; }
.center-heading p { max-width: 610px; margin: 20px auto 0; }

.workflow-track {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(22, 56, 97, .04);
}

.workflow-track article {
  min-height: 245px;
  padding: 26px 22px 30px;
  position: relative;
}

.workflow-track article + article { border-left: 1px solid var(--line); }
.step-number { color: #7e8a9a; font-size: 9px; font-weight: 800; }

.step-icon {
  width: 42px;
  height: 42px;
  margin: 28px 0 25px;
  display: grid;
  place-items: center;
  color: #1e69cf;
  background: #eef5ff;
  border-radius: 12px;
}

.step-icon svg { width: 18px; height: 18px; }
.workflow-track h3 { margin: 0 0 10px; font-size: 15px; }
.workflow-track p { margin: 0; color: #687587; font-size: 11px; line-height: 1.65; }

.step-arrow {
  position: absolute;
  top: 48%;
  right: -8px;
  z-index: 2;
  color: #8996a8;
  background: #fff;
}

.feature-section { padding: 110px 0 130px; }

.feature-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-card {
  min-height: 535px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.feature-card.compose { background: linear-gradient(150deg, #f8f7ff, #f3f5fa); }
.feature-card.media { background: linear-gradient(150deg, #f3fbfa, #f4f8fb); }
.feature-card.calendar { background: linear-gradient(150deg, #fffbf1, #f7f8fb); }

.feature-copy {
  max-width: 460px;
  position: relative;
  z-index: 2;
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  color: #1f6dd6;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 8px 20px rgba(31, 79, 128, .07);
}

.feature-icon svg { width: 19px; height: 19px; }

.feature-copy h3 {
  margin: 10px 0 14px;
  font-size: 29px;
  letter-spacing: -.04em;
  line-height: 1.15;
}

.feature-copy p { margin: 0; font-size: 13px; }
.feature-copy a { font-size: 11px; }

.feature-visual {
  height: 228px;
  position: absolute;
  right: 40px;
  bottom: -28px;
  left: 40px;
}

.mini-ui {
  padding: 17px;
  background: #fff;
  border: 1px solid #cbd7e6;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 22px 50px rgba(32, 61, 96, .1);
}

.visual-sample-label {
  margin-bottom: 8px;
  color: #687587;
  font-size: 7px;
}

.mini-tabs {
  padding-bottom: 9px;
  display: flex;
  gap: 18px;
  color: #7d8999;
  border-bottom: 1px solid #e8edf3;
  font-size: 8px;
}

.mini-tabs span:first-child { color: #1e68cb; font-weight: 700; }

.mini-input {
  margin-top: 14px;
  padding: 13px;
  color: #455164;
  border: 1px solid #e2e7ee;
  border-radius: 8px;
  font-size: 9px;
}

.mini-input i {
  width: 80%;
  height: 4px;
  margin-top: 10px;
  display: block;
  background: #edf1f5;
  border-radius: 4px;
}

.mini-input i + i { width: 53%; margin-top: 5px; }
.mini-channels { margin: 14px 0; display: flex; gap: 10px; }

.mini-channels b {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border: 1px solid #e1e8f0;
  border-radius: 7px;
  font-size: 9px;
}

.mini-action { color: #7b8798; font-size: 8px; }

.mini-button {
  padding: 7px 10px;
  display: flex;
  gap: 4px;
  color: #fff;
  background: #2879f7;
  border-radius: 6px;
}

.readiness-score {
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #edf1f5;
}

.readiness-score > span {
  width: 48px;
  height: 48px;
  background: radial-gradient(circle, #fff 55%, transparent 57%), conic-gradient(#35c88f 94%, #e8edf3 0);
  font-size: 12px;
}

.readiness-score > div { display: grid; gap: 4px; }
.readiness-score small { color: #7b8798; font-size: 7px; }
.readiness-score strong { font-size: 11px; }

.check-row {
  margin-top: 10px;
  padding: 9px;
  display: grid;
  grid-template-columns: 15px 1fr auto;
  align-items: center;
  gap: 7px;
  color: #4e5968;
  border: 1px solid #e6ecf2;
  border-radius: 7px;
  font-size: 8px;
}

.check-row svg { color: #238f67; }

.check-row span {
  padding: 3px 6px;
  color: #207e5a;
  background: #eaf8f2;
  border-radius: 999px;
}

.check-row.warning svg,
.check-row.warning span { color: #9b6415; }
.check-row.warning span { background: #fff5df; }

.media-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  transform: rotate(-2deg);
}

.asset {
  padding: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 15px 25px rgba(23, 55, 86, .1);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
}

.asset i { opacity: .55; font-size: 19px; font-style: normal; }
.asset-0 { background: linear-gradient(135deg, #2442a5, #5f72ef); }
.asset-1 { background: linear-gradient(135deg, #0b5259, #38bfb8); }
.asset-2 { background: linear-gradient(135deg, #8a3b67, #ed7199); }
.asset-3 { background: linear-gradient(135deg, #8c5728, #efb35f); }

.calendar-mini {
  padding: 16px;
  background: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 20px 50px rgba(38, 61, 90, .1);
}

.calendar-mini > div,
.calendar-mini > p { display: flex; justify-content: space-between; font-size: 10px; }
.calendar-mini > div span { display: flex; align-items: center; color: #6e7a89; font-size: 7px; }
.calendar-mini > p { margin: 14px 0 5px; color: #8a96a5; font-size: 6px; }
.calendar-mini section { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }

.calendar-mini section > span {
  height: 36px;
  padding: 4px;
  color: #7b8798;
  border: 1px solid #edf0f4;
  border-radius: 5px;
  font-size: 6px;
}

.calendar-mini section > span.event { color: #185bb6; background: #eff6ff; border-color: #cfe0f8; }
.calendar-mini section b { margin-top: 5px; display: block; font-size: 5px; }

.insight-section {
  padding: 120px 0;
  color: #fff;
  background: radial-gradient(circle at 82% 35%, #173b5b, transparent 32%), #081421;
}

.insight-inner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 90px;
}

.insight-copy h2 { margin: 16px 0 22px; }
.insight-copy > p { color: #a8b7c7; }

.insight-copy ul {
  margin: 25px 0 30px;
  padding: 0;
  display: grid;
  gap: 12px;
  color: #cbd5df;
  list-style: none;
  font-size: 12px;
}

.insight-copy li { display: flex; align-items: center; gap: 9px; }
.insight-copy li svg { color: #4ed8a4; }

.analytics-window {
  padding: 22px;
  color: #fff;
  background: #0c1b2c;
  border: 1px solid #29415a;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
}

.analytics-top { font-size: 12px; font-weight: 700; }
.analytics-top > span:first-child { display: grid; gap: 4px; }
.analytics-top small { color: #9cacbd; font-size: 7px; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }

.analytics-top > span:last-child {
  padding: 6px 9px;
  color: #a9b7c6;
  border: 1px solid #2b4057;
  border-radius: 7px;
  font-size: 8px;
}

.metric-row {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.metric-row > div {
  padding: 13px;
  display: grid;
  gap: 4px;
  border: 1px solid #23384f;
  border-radius: 9px;
}

.metric-row small { color: #9aabbd; font-size: 7px; }
.metric-row strong { font-size: 17px; }
.metric-row span { color: #62d7aa; font-size: 7px; }

.chart-area {
  height: 190px;
  margin-top: 16px;
  position: relative;
  border-bottom: 1px solid #26394c;
}

.chart-area > i { height: 25%; display: block; border-top: 1px solid rgba(255, 255, 255, .05); }
.chart-area svg { width: 100%; height: 100%; position: absolute; inset: 0; }

.channel-performance {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.channel-performance span { display: flex; align-items: center; gap: 6px; }
.channel-performance b { width: 14px; font-size: 9px; }
.channel-performance i { height: 3px; display: block; background: #3ea8ed; border-radius: 4px; }

.confidence-section { padding: 120px 0; }

.confidence-card {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: #f3f6fa;
  border-radius: 26px;
}

.confidence-art {
  min-height: 500px;
  position: relative;
  background: radial-gradient(circle, #163d64, #0a1929 55%, #07131f);
}

.shield-orbit {
  width: 150px;
  height: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  color: #59d2e3;
  border: 1px solid rgba(75, 169, 255, .23);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(45, 148, 224, .035), 0 0 0 100px rgba(45, 148, 224, .02);
  transform: translate(-50%, -50%);
}

.shield-orbit svg { width: 54px; height: 54px; filter: drop-shadow(0 0 20px rgba(86, 202, 228, .5)); }

.signal {
  padding: 9px 12px;
  position: absolute;
  color: #c3d1df;
  background: #10273b;
  border: 1px solid #2c4c68;
  border-radius: 9px;
  font-size: 8px;
}

.signal i {
  width: 5px;
  height: 5px;
  margin-right: 5px;
  display: inline-block;
  background: #4bd7a1;
  border-radius: 50%;
  box-shadow: 0 0 10px #4bd7a1;
}

.signal-a { top: 27%; left: 11%; }
.signal-b { top: 41%; right: 9%; }
.signal-c { bottom: 24%; left: 16%; }

.confidence-copy {
  padding: 70px;
  align-self: center;
}

.confidence-copy h2 { margin: 16px 0 20px; }

.confidence-points {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.confidence-points span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #435267;
  font-size: 10px;
  font-weight: 700;
}

.confidence-points svg { color: #1f6dd6; font-size: 15px; }

.brand-statement {
  min-height: 460px;
  padding: 80px 24px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #07111f;
  text-align: center;
}

.brand-statement::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7, 17, 31, .82), rgba(7, 17, 31, .32));
}

.brand-image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: .92;
}

.brand-statement > div {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.brand-statement blockquote {
  margin: 22px 0;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 750;
  letter-spacing: -.055em;
  line-height: 1.05;
}

.brand-statement p { color: #b2becb; font-size: 14px; }

.faq {
  padding: 120px 0;
  display: grid;
  grid-template-columns: .8fr 1.1fr;
  gap: 110px;
}

.faq-heading h2 { margin: 15px 0 18px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  min-height: 64px;
  padding: 18px 42px 18px 0;
  position: relative;
  display: flex;
  align-items: center;
  color: #172439;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  color: #1e69cf;
  font-size: 23px;
  font-weight: 400;
  transition: transform .18s ease;
}

.faq-list details[open] summary::after { transform: rotate(45deg); }

.faq-list p {
  max-width: 620px;
  margin: -2px 0 22px;
  padding-right: 36px;
  color: #5e6b7c;
  font-size: 13px;
  line-height: 1.75;
}

.final-cta {
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
  background: #f2f6fc;
  text-align: center;
}

.final-cta > * { position: relative; z-index: 2; }
.final-cta h2 { max-width: 780px; margin: 18px auto; }
.final-cta > p { max-width: 620px; margin: auto; }
.final-cta .hero-actions { justify-content: center; }

.cta-glow {
  width: 700px;
  height: 300px;
  position: absolute;
  bottom: -220px;
  left: 50%;
  z-index: 0;
  background: rgba(37, 130, 255, .26);
  border-radius: 50%;
  filter: blur(70px);
  transform: translateX(-50%);
}

footer {
  padding: 70px max(24px, calc((100% - 1180px) / 2)) 28px;
  color: #fff;
  background: #07111f;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
}

.footer-brand img { width: 158px; height: auto; }

.footer-brand > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-brand p {
  max-width: 300px;
  margin-top: 18px;
  color: #98a8b8;
  font-size: 12px;
  line-height: 1.7;
}

.footer-main > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 12px;
  color: #a4b1bf;
  font-size: 11px;
}

.footer-main > div:not(.footer-brand) a {
  min-height: 24px;
  display: flex;
  align-items: center;
}

.footer-main strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-bottom {
  margin-top: 55px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #8b9aaa;
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: 9px;
}

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .product-stage {
    width: min(720px, 96%);
    margin: 70px auto 0;
    position: relative;
    top: auto;
    left: auto;
  }
  .hero {
    min-height: auto;
    padding-top: 70px;
  }
  .hero-copy { text-align: center; }
  .hero-copy > * { margin-right: auto; margin-left: auto; }
  .hero-actions,
  .hero-proof { justify-content: center; }
  .floating-card.health { left: -20px; }
  .floating-card.performance { right: -16px; }
  .problem-grid { gap: 50px; }
  .workflow-track { grid-template-columns: repeat(3, 1fr); }
  .workflow-track article:nth-child(4) { border-left: 0; border-top: 1px solid var(--line); }
  .workflow-track article:nth-child(5) { border-top: 1px solid var(--line); }
  .feature-card { min-height: 550px; }
  .insight-inner { gap: 45px; }
  .confidence-copy { padding: 45px; }
  .faq { gap: 60px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 72px; }
  .nav-shell { width: calc(100% - 32px); height: 68px; }
  .brand img { width: 142px; }
  .nav-actions { display: none; }
  .hero { padding: 52px 16px 58px; }
  .eyebrow-pill { font-size: 8px; }
  .hero h1 { margin-top: 20px; font-size: clamp(44px, 13vw, 58px); }
  .hero-copy > p { font-size: 16px; line-height: 1.6; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof {
    width: max-content;
    max-width: 100%;
    display: grid;
    gap: 9px;
    text-align: left;
  }
  .product-stage { width: 100%; margin-top: 48px; }
  .sample-label { top: -23px; right: 0; }
  .app-window {
    min-height: 410px;
    grid-template-columns: 38px 1fr;
    border-radius: 14px;
    transform: none;
  }
  .app-rail { padding: 10px 4px; gap: 10px; }
  .rail-logo { width: 27px; height: 27px; }
  .rail-nav { width: 27px; height: 27px; }
  .app-main { padding: 12px 10px; }
  .composer-grid { grid-template-columns: 1fr; }
  .readiness-card { display: none; }
  .channel-chip { min-width: 49px; justify-content: center; }
  .channel-chip small,
  .channel-chip svg { display: none; }
  .floating-card { display: none; }
  .platform-band > div { gap: 14px 18px; }
  .platform-band span { font-size: 10px; }
  .section-shell { width: calc(100% - 32px); }
  .problem,
  .workflow,
  .feature-section,
  .confidence-section,
  .faq { padding: 78px 0; }
  .problem-grid { grid-template-columns: 1fr; gap: 22px; }
  .stat-line { margin-top: 50px; grid-template-columns: 1fr; }
  .stat-line > div { padding: 22px 0; }
  .stat-line > div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .workflow-track { grid-template-columns: 1fr; }
  .workflow-track article {
    min-height: auto;
    display: grid;
    grid-template-columns: 36px 44px 1fr;
    gap: 13px;
  }
  .workflow-track article + article,
  .workflow-track article:nth-child(4),
  .workflow-track article:nth-child(5) { border-top: 1px solid var(--line); border-left: 0; }
  .step-icon { margin: 0; }
  .workflow-track h3 { grid-column: 3; }
  .workflow-track p { grid-column: 3; margin-top: -22px; }
  .step-arrow { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 520px; padding: 28px; }
  .feature-visual { right: 28px; left: 28px; }
  .insight-section { padding: 80px 0; }
  .insight-inner { grid-template-columns: 1fr; }
  .analytics-window { padding: 14px; }
  .metric-row strong { font-size: 13px; }
  .channel-performance { grid-template-columns: 1fr 1fr; }
  .confidence-card { grid-template-columns: 1fr; }
  .confidence-art { min-height: 360px; }
  .confidence-copy { padding: 36px 28px; }
  .confidence-points { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  .brand-statement { min-height: 400px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 14px; }
  .final-cta { padding: 85px 16px; }
}

@media (max-width: 420px) {
  .hero { padding-top: 42px; }
  .eyebrow-pill { padding: 7px 9px; letter-spacing: .04em; }
  .hero h1 { font-size: 43px; }
  .hero-proof { font-size: 11px; }
  .product-stage { margin-top: 42px; }
  .app-topbar strong { font-size: 14px; }
  .workspace-pill { padding: 5px 7px; font-size: 7px; }
  .channel-strip { margin-top: 14px; }
  .fake-editor { min-height: 88px; }
  .problem-grid h2,
  .center-heading h2,
  .insight-copy h2,
  .confidence-copy h2,
  .faq h2,
  .final-cta h2 { font-size: 37px; }
  .feature-card { min-height: 500px; }
  .feature-copy h3 { font-size: 27px; }
  .metric-row { grid-template-columns: 1fr; }
  .chart-area { height: 150px; }
  .signal-a { top: 20%; left: 5%; }
  .signal-b { top: 43%; right: 4%; }
  .signal-c { bottom: 17%; left: 9%; }
  .brand-statement blockquote { font-size: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
