:root {
  --ink: #091225;
  --ink-2: #18233a;
  --muted: #687389;
  --line: rgba(17, 31, 58, .12);
  --line-light: rgba(255, 255, 255, .18);
  --white: #ffffff;
  --soft: #f5f8fc;
  --soft-2: #edf3fb;
  --blue: #2563eb;
  --blue-2: #1d4ed8;
  --cyan: #08b6d9;
  --green: #18b77b;
  --amber: #f59e0b;
  --rose: #ef476f;
  --violet: #7c3aed;
  --navy: #07152e;
  --navy-2: #0c2145;
  --shadow: 0 24px 80px rgba(7, 21, 46, .14);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
section[id] { scroll-margin-top: 86px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 56px);
  transition: background .2s ease, border-color .2s ease, min-height .2s ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand img {
  width: 214px;
  height: auto;
  object-fit: contain;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 3px;
  padding: 8px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), var(--navy-2));
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, .22);
}

.brand-mark span {
  display: block;
  border-radius: 3px 3px 1px 1px;
  background: var(--white);
  opacity: .95;
}

.brand-mark span:nth-child(1) { height: 10px; }
.brand-mark span:nth-child(2) { height: 16px; }
.brand-mark span:nth-child(3) { height: 22px; }

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.desktop-nav a:hover,
.login-link:hover { color: var(--blue); }

.header-actions { gap: 14px; }
.login-link {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 36px rgba(37, 99, 235, .28);
}

.button-secondary {
  color: var(--blue-2);
  background: rgba(255,255,255,.88);
  border-color: rgba(37, 99, 235, .18);
}

.button-secondary-dark {
  color: var(--blue-2);
  background: var(--white);
  border-color: rgba(37, 99, 235, .18);
}

.button-light {
  color: var(--blue-2);
  background: var(--white);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(7, 21, 46, .1);
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.mobile-nav {
  position: fixed;
  z-index: 19;
  top: 78px;
  left: 12px;
  right: 12px;
  display: none;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-nav.is-open { display: grid; }
.mobile-nav a {
  padding: 14px;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(420px, 690px);
  grid-template-areas:
    "copy visual"
    "metrics visual";
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  justify-content: center;
  padding: 122px clamp(18px, 5vw, 72px) 70px;
  background:
    linear-gradient(180deg, rgba(245, 248, 252, .94), rgba(255, 255, 255, .98)),
    radial-gradient(circle at 82% 18%, rgba(8, 182, 217, .18), transparent 31rem),
    radial-gradient(circle at 10% 86%, rgba(37, 99, 235, .12), transparent 28rem);
  overflow: hidden;
}

.hero-copy {
  grid-area: copy;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.6vw, 70px);
  line-height: .96;
  letter-spacing: -0.04em;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.12;
}

.hero-subtitle {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

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

.hero-product {
  grid-area: visual;
  position: relative;
  z-index: 1;
}

.product-window {
  width: min(100%, 720px);
  overflow: hidden;
  border: 1px solid rgba(17, 31, 58, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 32px 90px rgba(7, 21, 46, .18);
}

.window-top {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 248, 252, .88);
}

.window-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.window-top span:nth-child(1) { background: var(--rose); }
.window-top span:nth-child(2) { background: var(--amber); }
.window-top span:nth-child(3) { background: var(--green); }
.window-top strong {
  margin-left: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.app-screenshot {
  display: block;
  width: 100%;
  height: auto;
}

.hero-screenshot {
  aspect-ratio: 1440 / 960;
  object-fit: cover;
  object-position: top left;
}

.dashboard-shell {
  min-height: 500px;
  display: grid;
  grid-template-columns: 150px 1fr;
}

.dashboard-shell aside {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  color: var(--muted);
  background: #fbfcfe;
  border-right: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
}

.dashboard-shell aside b,
.dashboard-shell aside span {
  padding: 10px 12px;
  border-radius: 8px;
}

.dashboard-shell aside b {
  color: var(--blue-2);
  background: rgba(37, 99, 235, .1);
}

.dashboard-main {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.dashboard-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.dashboard-heading small,
.metric-grid small,
.metric-grid span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.dashboard-heading h2 {
  margin: 2px 0 0;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.dashboard-heading em {
  flex: 0 0 auto;
  padding: 6px 10px;
  color: var(--green);
  background: rgba(24, 183, 123, .12);
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

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

.metric-grid article,
.chart-card,
.assistant-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 21, 46, .06);
}

.metric-grid article { padding: 14px; }
.metric-grid strong {
  display: block;
  margin: 5px 0 2px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1;
}

.chart-card { padding: 18px; }
.chart-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 13px;
}

.chart-title span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.chart-lines {
  position: relative;
  height: 180px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 14px;
  padding: 18px;
  background:
    repeating-linear-gradient(to top, rgba(17, 31, 58, .08) 0 1px, transparent 1px 42px);
  border-radius: 8px;
}

.chart-lines i {
  display: block;
  min-height: 24px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  opacity: .88;
}

.chart-lines i:nth-child(1) { height: 44%; }
.chart-lines i:nth-child(2) { height: 28%; }
.chart-lines i:nth-child(3) { height: 62%; }
.chart-lines i:nth-child(4) { height: 86%; }
.chart-lines i:nth-child(5) { height: 54%; }
.chart-lines i:nth-child(6) { height: 72%; }

.assistant-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
}

.assistant-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--violet), var(--blue));
  border-radius: 50%;
  font-weight: 900;
}

.assistant-card p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-metrics {
  grid-area: metrics;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.hero-metrics div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 46px rgba(7, 21, 46, .06);
}

.hero-metrics dt {
  color: var(--blue-2);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section-light,
.section-dark,
.pricing,
.platform,
.cockpit,
.inventory-signal,
.ai-operator,
.industries {
  padding: clamp(68px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.section-light { background: var(--white); }
.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 10%, rgba(8, 182, 217, .18), transparent 28rem),
    linear-gradient(180deg, var(--navy), var(--navy-2));
}

.section-intro {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-intro.align-left {
  max-width: var(--max);
  text-align: left;
}

.section-intro p:not(.eyebrow),
.vision-copy p:not(.eyebrow),
.operator-layout p {
  color: var(--muted);
  font-size: 18px;
}

.section-dark .section-intro p:not(.eyebrow),
.section-dark .vision-copy p:not(.eyebrow) {
  color: #b9c8e4;
}

.module-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(7, 21, 46, .08);
}

.module-grid article {
  min-height: 280px;
  padding: 28px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.module-grid article:nth-child(3n) { border-right: 0; }
.module-grid article:nth-last-child(-n+3) { border-bottom: 0; }

.module-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 50px;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
}

.module-grid article:nth-child(2) span { background: var(--cyan); }
.module-grid article:nth-child(3) span { background: var(--green); }
.module-grid article:nth-child(4) span { background: var(--violet); }
.module-grid article:nth-child(5) span { background: var(--amber); }
.module-grid article:nth-child(6) span { background: var(--rose); }

.module-grid p,
.price-card p:not(.plan-label):not(.price),
.deployment-grid p:not(.plan-label):not(.price),
.price-card small {
  color: var(--muted);
}

.screenshot-showcase {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 18px;
  align-items: stretch;
}

.screenshot-showcase figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(7, 21, 46, .08);
}

.screenshot-showcase img {
  display: block;
  width: 100%;
  aspect-ratio: 1440 / 960;
  object-fit: cover;
  object-position: top left;
  background: var(--soft);
}

.screenshot-feature img {
  min-height: 430px;
}

.screenshot-grid {
  display: grid;
  gap: 18px;
}

.screenshot-grid img {
  aspect-ratio: 16 / 8.5;
}

.screenshot-showcase figcaption {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.screenshot-showcase figcaption span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.screenshot-showcase figcaption strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.crm-integration {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.crm-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.crm-layout p:not(.eyebrow) {
  color: #b9c8e4;
  font-size: 18px;
}

.crm-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.crm-metrics article {
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .18);
}

.crm-metrics article.wide {
  grid-column: 1 / -1;
  min-height: 130px;
  background:
    linear-gradient(135deg, rgba(8, 182, 217, .16), transparent),
    rgba(255, 255, 255, .08);
}

.crm-metrics span {
  color: #8eeeff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.crm-metrics strong {
  color: var(--white);
  font-size: 21px;
  line-height: 1.16;
}

.inventory-signal {
  border-top: 1px solid var(--line);
}

.signal-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 510px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.signal-layout p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

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

.signal-grid article {
  min-height: 176px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(8, 182, 217, .08), transparent 52%),
    var(--soft);
  box-shadow: 0 16px 46px rgba(7, 21, 46, .06);
}

.signal-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.signal-grid strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.18;
}

.vision {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.vision-copy {
  max-width: 520px;
}

.deployment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.deployment-grid article,
.price-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(7, 21, 46, .08);
}

.deployment-grid article {
  color: var(--ink);
}

.deployment-grid .featured,
.price-card.featured {
  color: var(--white);
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(8, 182, 217, .24), transparent 44%),
    linear-gradient(180deg, var(--blue), var(--navy-2));
}

.plan-label {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.featured .plan-label { color: #a7f3ff; }
.price {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0;
}

.featured .price,
.featured .price span,
.featured p:not(.plan-label):not(.price),
.featured small { color: var(--white); }
.featured p:not(.plan-label):not(.price),
.featured small { opacity: .78; }

.operator-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 540px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.prompt-stack {
  display: grid;
  gap: 12px;
}

.prompt-stack span {
  display: block;
  padding: 18px 20px;
  color: var(--ink-2);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(7, 21, 46, .05);
  font-weight: 800;
}

.prompt-stack span:nth-child(even) {
  margin-left: 34px;
  background: var(--white);
}

.pricing-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card .button { margin-top: auto; }
.price-card small {
  display: block;
  margin: 8px 0 24px;
  font-weight: 800;
}

.industry-strip {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.industry-strip span {
  padding: 12px 16px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #d9e5ff;
  font-weight: 900;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 42px clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 86% 10%, rgba(255,255,255,.24), transparent 18rem),
    linear-gradient(135deg, var(--blue), var(--cyan));
}

.final-cta .eyebrow { color: #dcfbff; }
.final-cta h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
}

.site-footer {
  padding: 56px clamp(18px, 5vw, 72px) 28px;
  color: var(--white);
  background: var(--navy);
  border-top: 1px solid var(--line-light);
}

.footer-brand,
.footer-columns,
.footer-bottom {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.footer-brand {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-light);
}

.brand-footer { color: var(--white); }
.brand-footer .footer-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 380px;
  color: #b9c8e4;
  text-align: right;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 34px 0;
}

.footer-columns h2 {
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-columns a {
  display: block;
  color: #b9c8e4;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #b9c8e4;
  border-top: 1px solid var(--line-light);
  padding-top: 24px;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1020px) {
  .desktop-nav,
  .login-link,
  .header-actions > .button { display: none; }
  .mobile-toggle { display: block; }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "metrics";
    padding-top: 110px;
  }

  .hero-product {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

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

  .module-grid article:nth-child(3n) { border-right: 1px solid var(--line); }
  .module-grid article:nth-child(2n) { border-right: 0; }
  .module-grid article:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .module-grid article:nth-last-child(-n+2) { border-bottom: 0; }

  .vision,
  .operator-layout,
  .crm-layout,
  .signal-layout {
    grid-template-columns: 1fr;
  }

  .vision-copy { max-width: 760px; }
  .final-cta { grid-template-columns: 1fr; }
  .final-cta .button { justify-self: start; }
}

@media (max-width: 700px) {
  .site-header { min-height: 70px; padding: 12px 16px; }
  .mobile-nav { top: 70px; }
  .brand { font-size: 19px; }
  .brand img { width: 178px; }
  .brand-mark { width: 34px; height: 34px; }
  h1 { font-size: clamp(38px, 12vw, 50px); }
  h2 { font-size: clamp(31px, 10vw, 42px); }

  .hero {
    padding: 98px 16px 50px;
  }

  .hero-actions .button,
  .final-cta .button {
    width: 100%;
  }

  .product-window {
    border-radius: 12px;
  }

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

  .dashboard-shell aside {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px;
  }

  .dashboard-shell aside b,
  .dashboard-shell aside span {
    padding: 8px;
    text-align: center;
    font-size: 11px;
  }

  .dashboard-main {
    padding: 14px;
  }

  .dashboard-heading,
  .chart-title {
    display: grid;
  }

  .metric-grid,
  .hero-metrics,
  .module-grid,
  .screenshot-showcase,
  .deployment-grid,
  .pricing-grid,
  .crm-metrics,
  .signal-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .screenshot-feature img {
    min-height: 0;
  }

  .screenshot-showcase img,
  .screenshot-grid img {
    aspect-ratio: 16 / 10;
  }

  .crm-metrics article.wide {
    grid-column: auto;
  }

  .chart-lines {
    height: 150px;
    gap: 8px;
    padding: 12px;
  }

  .module-grid article,
  .module-grid article:nth-child(2n),
  .module-grid article:nth-child(3n),
  .module-grid article:nth-last-child(-n+2),
  .module-grid article:nth-last-child(-n+3) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .module-grid article:last-child { border-bottom: 0; }
  .module-grid span { margin-bottom: 34px; }

  .section-light,
  .section-dark,
  .pricing,
  .platform,
  .ai-operator,
  .cockpit,
  .inventory-signal,
  .industries {
    padding-left: 16px;
    padding-right: 16px;
  }

  .deployment-grid article,
  .price-card {
    min-height: 280px;
  }

  .prompt-stack span:nth-child(even) {
    margin-left: 0;
  }

  .footer-brand,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-brand p {
    text-align: left;
  }
}
