﻿:root {
  color-scheme: light;
  --paper: #f8faff;
  --paper-strong: #eef3fb;
  --panel: #ffffff;
  --ink: #1b2d4f;
  --muted: #64728a;
  --line: #dbe3f2;
  --mint: #fa7005;
  --mint-dark: #21375e;
  --leaf: #2f80ed;
  --sun: #ffb356;
  --coral: #fa7005;
  --violet: #2f80ed;
  --night: #21375e;
  --shadow: 0 22px 60px rgba(33, 55, 94, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

svg {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  padding: 12px 0;
  background: rgba(248, 250, 255, 0.92);
  backdrop-filter: blur(16px);
}

.site-header.scrolled {
  border-bottom: 1px solid rgba(33, 55, 94, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--night);
  color: var(--mint);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.brand-logo {
  display: block;
  width: 96px;
  height: 48px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-links a,
.ghost-link {
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.ghost-link:hover {
  background: var(--paper-strong);
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

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

.button span {
  min-width: 0;
}

.button svg,
.icon-button svg,
.feature-grid svg,
.faq-item svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: var(--mint);
  color: var(--night);
  box-shadow: 0 12px 30px rgba(250, 112, 5, 0.3);
}

.button-primary:hover {
  background: #ff8a24;
}

.button-dark {
  background: var(--night);
  color: #f6fffb;
}

.button-light {
  background: rgba(255, 255, 255, 0.76);
  border-color: var(--line);
  color: var(--ink);
}

.menu-button {
  display: none;
}

.icon-button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 42px;
  width: 100%;
  min-height: min(860px, calc(100svh - 82px));
  max-height: none;
  overflow: hidden;
  padding: 58px max(24px, calc((100vw - 1180px) / 2)) 92px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 250, 255, 0.96) 70%),
    linear-gradient(125deg, rgba(250, 112, 5, 0.2), rgba(255, 179, 86, 0.12) 44%, transparent 78%),
    linear-gradient(28deg, rgba(33, 55, 94, 0.16), rgba(255, 255, 255, 0) 58%),
    var(--paper);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 76px;
  content: "";
  background: linear-gradient(180deg, rgba(248, 250, 255, 0), var(--paper));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: 68px;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 48px;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 19px;
}

.hero-points {
  display: grid;
  gap: 10px;
  max-width: 590px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid rgba(33, 55, 94, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(33, 55, 94, 0.06);
}

.hero-points span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(250, 112, 5, 0.12);
  color: var(--mint-dark);
}

.hero-points svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-points p {
  min-width: 0;
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  word-break: break-word;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid rgba(33, 55, 94, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.trust-row strong {
  color: var(--ink);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 610px;
}

.live-strip {
  position: absolute;
  top: 16px;
  right: 0;
  left: 24px;
  z-index: 3;
  display: flex;
  gap: 10px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.live-strip span {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(33, 55, 94, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(33, 55, 94, 0.1);
}

.dashboard-shell {
  position: absolute;
  right: -46px;
  bottom: 0;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  width: min(730px, 100%);
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(33, 55, 94, 0.12);
  border-radius: 8px;
  background: #fdfefd;
  box-shadow: 0 28px 78px rgba(33, 55, 94, 0.17);
}

.dash-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 22px 16px;
  background: var(--night);
}

.dash-dot {
  width: 26px;
  height: 26px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--mint);
}

.dash-line {
  width: 38px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.dash-line.active {
  background: var(--sun);
}

.dash-line.short {
  width: 28px;
}

.dash-main {
  min-width: 0;
  padding: 26px;
}

.dash-topbar,
.panel-head,
.product-row,
.demo-section,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dash-topbar {
  margin-bottom: 20px;
}

.dash-topbar strong {
  display: block;
  font-size: 26px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.mini-label,
.panel-head,
.product-row small,
.metric-grid span,
.price-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(47, 128, 237, 0.14);
  color: #21375e;
  font-size: 12px;
  font-weight: 900;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.metric-grid article {
  min-width: 0;
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.metric-grid strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 25px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.metric-grid small {
  color: var(--mint-dark);
  font-weight: 900;
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.6fr);
  gap: 14px;
}

.panel {
  min-width: 0;
  min-height: 226px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.panel-head {
  margin-bottom: 16px;
}

.panel-head b {
  color: var(--ink);
}

.product-row {
  min-height: 64px;
  padding: 10px 0;
  border-top: 1px solid #edf2ee;
}

.product-row strong,
.product-row small {
  display: block;
  overflow-wrap: anywhere;
}

.product-row div {
  min-width: 0;
}

.product-row b {
  flex: 0 0 auto;
}

.product-thumb {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--mint);
}

.product-thumb.coral {
  background: var(--coral);
}

.product-thumb.sun {
  background: var(--sun);
}

.progress-stack {
  display: grid;
  gap: 16px;
  padding-top: 24px;
}

.progress-stack span {
  position: relative;
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--paper-strong);
}

.progress-stack span::after {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: var(--mint);
  content: "";
}

.logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 32px));
  margin: -42px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 18px 44px rgba(33, 55, 94, 0.08);
}

.logos span {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted);
  font-weight: 900;
  overflow-wrap: anywhere;
  text-align: center;
}

.logo-card img {
  display: block;
  width: min(176px, 100%);
  max-height: 58px;
  object-fit: contain;
}

.logo-card-strip img {
  width: min(168px, 92%);
}

.logo-card-fallback span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(250, 112, 5, 0.1);
  color: var(--mint-dark);
}

.clarity-section {
  padding: 86px max(24px, calc((100vw - 1180px) / 2)) 24px;
  background: var(--paper);
}

.clarity-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 34px;
  align-items: stretch;
}

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

.clarity-grid article {
  position: relative;
  min-height: 238px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(33, 55, 94, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
    var(--panel);
  box-shadow: 0 18px 42px rgba(33, 55, 94, 0.07);
}

.clarity-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mint), var(--sun));
  content: "";
}

.clarity-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(250, 112, 5, 0.11);
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 900;
}

.clarity-grid h3 {
  margin-top: 34px;
}

.clarity-grid p {
  color: var(--muted);
}

.section,
.feature-band,
.resources,
.faq-section,
.pricing-section {
  padding: 108px max(24px, calc((100vw - 1180px) / 2));
}

.section-tight {
  padding-top: 92px;
}

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

.section-heading.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

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

.steps,
.feature-grid,
.pricing-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps article,
.feature-grid article,
.price-card,
.resource-grid article,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.steps article {
  position: relative;
  min-height: 244px;
  padding: 26px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(33, 55, 94, 0.06);
}

.steps article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(250, 112, 5, 0.96), rgba(255, 179, 86, 0.96));
  content: "";
}

.step-number,
.resource-grid span,
.plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(250, 112, 5, 0.12);
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 900;
}

.steps h3 {
  margin-top: 38px;
}

.steps p,
.feature-grid p,
.price-card p,
.resource-grid p,
.faq-item p,
.site-footer p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.feature-band {
  background: var(--night);
  color: #f6fffb;
}

.feature-band .eyebrow {
  color: var(--sun);
}

.feature-band .section-heading p {
  color: rgba(246, 255, 251, 0.74);
}

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

.feature-grid article {
  min-height: 238px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.feature-grid svg {
  width: 32px;
  height: 32px;
  margin-bottom: 30px;
  color: var(--mint);
}

.feature-grid p {
  color: rgba(246, 255, 251, 0.72);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.2fr);
  gap: 52px;
  align-items: center;
}

.sector-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 251, 246, 0.96)),
    var(--paper);
}

.sector-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

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

.sector-card {
  min-width: 0;
  min-height: 398px;
  overflow: hidden;
  border: 1px solid rgba(33, 55, 94, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 243, 251, 0.82)),
    var(--panel);
  box-shadow: 0 18px 46px rgba(33, 55, 94, 0.07);
}

.sector-visual {
  display: grid;
  min-height: 318px;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 64%, rgba(250, 112, 5, 0.14), transparent 36%),
    linear-gradient(135deg, rgba(33, 55, 94, 0.05), rgba(250, 112, 5, 0.08)),
    #fff;
}

.sector-visual img {
  display: block;
  width: min(460px, 94%);
  height: auto;
  max-height: 292px;
  object-fit: contain;
}

.sector-card h3 {
  display: grid;
  min-height: 80px;
  place-items: center;
  margin: 0;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--night);
  text-align: center;
}

.channel-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.channel-wall .logo-card {
  display: grid;
  min-height: 88px;
  place-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.94);
}

.channel-wall .logo-card img {
  width: min(168px, 94%);
  max-height: 62px;
  object-fit: contain;
}

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

.integration-wall span {
  display: grid;
  min-height: 74px;
  place-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  font-weight: 900;
  overflow-wrap: anywhere;
  text-align: center;
}

.integration-wall .logo-card {
  min-height: 88px;
}

.integration-wall .logo-card img {
  width: min(174px, 94%);
  max-height: 64px;
}

.pricing-section {
  background: #fbf7ef;
}

.billing-toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.billing-toggle button {
  min-width: 92px;
  min-height: 38px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.billing-toggle button.active {
  background: var(--night);
  color: #fff;
}

.price-card {
  position: relative;
  min-height: 464px;
  padding: 26px;
}

.price-card.featured {
  border-color: rgba(250, 112, 5, 0.7);
  box-shadow: 0 20px 54px rgba(250, 112, 5, 0.18);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--sun);
  color: #21375e;
}

.plan-name {
  display: block;
  margin-bottom: 16px;
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card h3 {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 44px;
  line-height: 1;
}

.price-card h3 span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.price-card h3 small {
  white-space: nowrap;
}

.price-card ul {
  display: grid;
  gap: 12px;
  min-height: 116px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 700;
}

.price-card li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.resources {
  background: var(--paper);
}

.resource-grid article {
  min-height: 210px;
  padding: 26px;
}

.resource-grid h3 {
  margin-top: 44px;
}

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 68px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.faq-item button span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.faq-item svg {
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 20px 22px;
}

.faq-item.open p {
  display: block;
}

.faq-item.open svg {
  transform: rotate(180deg);
}

.demo-section {
  min-height: 264px;
  padding: 54px max(24px, calc((100vw - 1180px) / 2));
  background: var(--mint);
}

.demo-section h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: #21375e;
}

.demo-section .eyebrow {
  color: #21375e;
}

.demo-form {
  display: grid;
  grid-template-columns: minmax(240px, 360px) auto;
  gap: 12px;
  align-items: end;
  min-width: 420px;
}

.demo-section > div,
.demo-form {
  min-width: 0;
}

.demo-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.demo-form span {
  font-size: 13px;
}

.demo-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(33, 55, 94, 0.18);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

.site-footer {
  padding: 34px max(24px, calc((100vw - 1180px) / 2));
  background: var(--night);
  color: #f6fffb;
}

.site-footer .brand {
  color: #fff;
}

.site-footer .brand-mark {
  background: rgba(255, 255, 255, 0.1);
}

.site-footer .brand-logo-wrap {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.site-footer p {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(246, 255, 251, 0.7);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.site-footer nav a {
  color: rgba(246, 255, 251, 0.76);
  font-weight: 800;
  overflow-wrap: anywhere;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .nav-links,
  .header-actions {
    display: none;
  }

  .nav-links.open {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .nav-links.open a {
    display: flex;
    align-items: center;
    min-height: 48px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    max-height: none;
    padding-top: 54px;
    padding-bottom: 76px;
  }

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

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 46px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .dashboard-shell {
    right: 0;
    left: 0;
    width: 100%;
  }

  .logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0;
  }

  .clarity-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .steps,
  .feature-grid,
  .pricing-grid,
  .resource-grid,
  .split-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .split-section {
    gap: 32px;
  }

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

  .channel-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .demo-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-form {
    width: 100%;
    min-width: 0;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    display: flex;
    grid-template-columns: minmax(0, 1fr) 44px;
    justify-content: flex-start;
    gap: 12px;
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    width: calc(100dvw - 24px);
    max-width: calc(100dvw - 24px);
  }

  .menu-button {
    position: static !important;
    top: auto;
    right: auto !important;
    left: auto;
    z-index: 70;
    display: grid !important;
    flex: 0 0 44px;
    justify-self: start;
    background: var(--night);
    color: #fff;
    box-shadow: 0 14px 32px rgba(33, 55, 94, 0.18);
  }

  .brand {
    font-size: 15px;
  }

  .brand-logo-wrap,
  .brand-logo {
    width: 90px;
    height: 45px;
  }

  .hero {
    gap: 28px;
    justify-items: start;
    width: 100%;
    max-width: 100%;
    width: 100dvw;
    max-width: 100dvw;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-copy,
  .hero-lead,
  .hero-points,
  .hero-actions,
  .trust-row,
  .hero-visual,
  .section-heading,
  .dash-topbar,
  .dash-topbar > div,
  .dashboard-shell {
    width: 100%;
    max-width: 100%;
    width: calc(100dvw - 32px);
    max-width: calc(100dvw - 32px);
    min-width: 0;
  }

  h1 {
    width: 100%;
    max-width: 12.5ch;
    font-size: 34px;
    line-height: 1;
  }

  h2 {
    font-size: 30px;
    line-height: 1.05;
  }

  h3 {
    font-size: 20px;
  }

  .hero-lead,
  .section-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-lead {
    max-width: min(100%, 34ch);
    word-break: break-word;
  }

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

  .trust-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-row span {
    justify-content: center;
    min-width: 0;
    width: 100%;
    text-align: center;
  }

  .hero-visual {
    display: grid;
    gap: 12px;
    min-height: auto;
  }

  .live-strip {
    position: relative;
    top: auto;
    right: auto;
    left: 0;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    width: calc(100dvw - 32px);
    max-width: calc(100dvw - 32px);
    mask-image: none;
  }

  .live-strip span {
    width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .dashboard-shell {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    width: calc(100dvw - 32px);
    max-width: calc(100dvw - 32px);
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .dash-sidebar {
    display: none;
  }

  .dash-line {
    width: 28px;
  }

  .dash-main {
    padding: 16px;
  }

  .dash-topbar strong {
    font-size: 22px;
  }

  .dash-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .metric-grid,
  .work-grid,
  .demo-form {
    grid-template-columns: 1fr;
  }

  .metric-grid article {
    min-height: 96px;
  }

  .work-grid .panel:not(.wide) {
    display: none;
  }

  .logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 32px);
  }

  .clarity-section {
    padding: 62px 16px 10px;
  }

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

  .clarity-grid article {
    min-height: auto;
  }

  .section,
  .feature-band,
  .resources,
  .faq-section,
  .pricing-section {
    padding: 76px 16px;
  }

  .steps article,
  .feature-grid article,
  .price-card,
  .resource-grid article {
    min-height: auto;
  }

  .integration-wall {
    grid-template-columns: 1fr;
  }

  .sector-grid,
  .channel-wall {
    grid-template-columns: 1fr;
  }

  .sector-card {
    min-height: auto;
  }

  .sector-visual {
    min-height: 260px;
    padding: 22px;
  }

  .sector-visual img {
    width: min(420px, 94%);
    max-height: 250px;
  }

  .price-card h3 {
    font-size: 34px;
  }

  .demo-section {
    padding: 42px 16px;
  }

  .site-footer {
    padding: 30px 16px;
  }
}

@media (max-width: 420px) {
  .menu-button {
    top: auto;
    left: auto;
  }

  .brand {
    gap: 8px;
    font-size: 14px;
  }

  .brand-logo-wrap,
  .brand-logo {
    width: 84px;
    height: 42px;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .button {
    min-height: 44px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .dashboard-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .dash-sidebar {
    display: none;
  }

  .dash-line {
    width: 24px;
  }

  .metric-grid strong {
    font-size: 22px;
  }

  .panel,
  .steps article,
  .feature-grid article,
  .price-card,
  .resource-grid article {
    padding: 20px;
  }

  .price-card h3 {
    font-size: 30px;
  }

  .faq-item button {
    padding-right: 16px;
    padding-left: 16px;
  }

  .faq-item p {
    padding-right: 16px;
    padding-left: 16px;
  }
}

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