:root {
  --ink: #111827;
  --ink-2: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --soft-2: #eef2f7;
  --navy: #101828;
  --navy-2: #172033;
  --orange: #f97316;
  --orange-2: #ea580c;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --green: #22c55e;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(15, 23, 42, .10);
  --shadow-strong: 0 32px 90px rgba(15, 23, 42, .20);
  --radius: 8px;
  color-scheme: light;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -10%, rgba(37, 99, 235, .08), transparent 34%),
    var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; }

img {
  height: auto;
  display: block;
}

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

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

p { color: var(--ink-2); }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .78);
  border-bottom: 1px solid rgba(226, 232, 240, .78);
  backdrop-filter: blur(18px);
}

.nav-shell, .container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.brand span {
  font-size: 1.05rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 9px 11px;
  border-radius: var(--radius);
  color: var(--ink-2);
  font-size: .94rem;
  font-weight: 650;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--soft);
}

.nav-cta {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--navy), #26324a) !important;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .16);
}

.section {
  padding: 86px 0;
}

.section-tight { padding: 62px 0; }

.hero {
  position: relative;
  padding: 92px 0 80px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, .98), rgba(255, 255, 255, .96) 46%, rgba(248, 250, 252, .82)),
    radial-gradient(circle at 82% 18%, rgba(249, 115, 22, .24), transparent 32%),
    radial-gradient(circle at 18% 10%, rgba(37, 99, 235, .14), transparent 30%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .55), transparent 78%);
}

.hero-premium {
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(12px);
  opacity: .45;
  pointer-events: none;
}

.hero-glow-one {
  right: -120px;
  top: 30px;
  background: radial-gradient(circle, rgba(249, 115, 22, .34), transparent 68%);
  animation: drift 9s ease-in-out infinite;
}

.hero-glow-two {
  left: -150px;
  bottom: 20px;
  background: radial-gradient(circle, rgba(37, 99, 235, .25), transparent 68%);
  animation: drift 11s ease-in-out infinite reverse;
}

.hero-grid {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  gap: 48px;
  align-items: center;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--orange-2);
  font-size: .86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

h1 {
  max-width: 860px;
  color: var(--ink);
  font-size: clamp(2.65rem, 5.8vw, 5.85rem);
  line-height: .93;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
}

h2 {
  color: var(--ink);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  color: var(--ink-2);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.button.primary {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.button.orange {
  border-color: var(--orange);
  background: linear-gradient(135deg, #fb923c, var(--orange-2));
  color: var(--white);
  box-shadow: 0 16px 38px rgba(249, 115, 22, .30);
}

.premium-button::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .36), transparent 70%);
  transform: translateX(-110%);
  transition: transform .7s ease;
}

.premium-button:hover::after {
  transform: translateX(110%);
}

.glass-button {
  border-color: rgba(148, 163, 184, .45);
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 16px 38px rgba(15, 23, 42, .08);
  backdrop-filter: blur(16px);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, .16);
}

.trust {
  margin-top: 18px;
  color: var(--muted);
  font-size: .96rem;
  font-weight: 650;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(148, 163, 184, .34);
  border-radius: 999px;
  background: rgba(255, 255, 255, .64);
  color: var(--ink-2);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
  font-size: .86rem;
  font-weight: 750;
  backdrop-filter: blur(14px);
}

.dashboard-stage {
  position: relative;
  min-height: 610px;
  perspective: 1500px;
}

.enterprise-dashboard {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, .94), rgba(23, 32, 51, .97)),
    var(--navy);
  box-shadow: var(--shadow-strong);
  transform: rotateX(3deg) rotateY(-5deg);
  transform-origin: center;
  animation: dashboardFloat 7s ease-in-out infinite;
}

.enterprise-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 16%, rgba(249, 115, 22, .20), transparent 28%),
    radial-gradient(circle at 18% 76%, rgba(37, 99, 235, .22), transparent 28%);
}

.dashboard-chrome {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  color: #cbd5e1;
  font-size: .84rem;
  font-weight: 800;
}

.chrome-dots {
  display: inline-flex;
  gap: 7px;
}

.chrome-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #64748b;
}

.chrome-dots span:first-child { background: #fb7185; }
.chrome-dots span:nth-child(2) { background: #fbbf24; }
.chrome-dots span:nth-child(3) { background: #34d399; }

.live-badge,
.ai-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(34, 197, 94, .13);
  color: #bbf7d0;
  font-size: .75rem;
  font-weight: 900;
}

.dashboard-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  min-height: 520px;
}

.dashboard-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px 14px;
  border-right: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .035);
}

.dashboard-sidebar strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.1rem;
}

.dashboard-sidebar span {
  padding: 9px 10px;
  border-radius: 8px;
  color: #94a3b8;
  font-size: .82rem;
  font-weight: 750;
}

.dashboard-sidebar .is-active {
  background: rgba(249, 115, 22, .16);
  color: #fed7aa;
}

.dashboard-main {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.dashboard-head,
.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.dashboard-head strong {
  display: block;
  color: var(--white);
  font-size: 1.35rem;
}

.mini-label {
  display: block;
  color: #94a3b8;
  font-size: .73rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

.metric-card,
.chart-panel,
.assistant-panel,
.activity-stream > div,
.floating-card {
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .055));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.metric-card {
  min-width: 0;
  padding: 14px;
  border-radius: 12px;
}

.metric-card span,
.metric-card small {
  display: block;
  color: #94a3b8;
  font-size: .75rem;
  font-weight: 750;
}

.metric-card strong {
  display: block;
  margin: 4px 0;
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
}

.dashboard-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(190px, .85fr);
  gap: 12px;
}

.chart-panel,
.assistant-panel {
  min-width: 0;
  padding: 15px;
  border-radius: 14px;
}

.chart-head strong,
.assistant-panel strong {
  color: var(--white);
}

.chart-head span {
  color: #86efac;
  font-size: .82rem;
  font-weight: 850;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 9px;
  height: 150px;
  margin-top: 14px;
  padding-top: 20px;
}

.bar-chart i {
  flex: 1;
  min-width: 12px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, #fb923c, #2563eb);
  box-shadow: 0 12px 26px rgba(37, 99, 235, .22);
  animation: barRise 1.3s ease both;
}

.bar-chart i:nth-child(2) { animation-delay: .08s; }
.bar-chart i:nth-child(3) { animation-delay: .16s; }
.bar-chart i:nth-child(4) { animation-delay: .24s; }
.bar-chart i:nth-child(5) { animation-delay: .32s; }
.bar-chart i:nth-child(6) { animation-delay: .40s; }

.assistant-panel {
  position: relative;
  overflow: hidden;
}

.assistant-orb {
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, .82), transparent 20%),
    conic-gradient(from 90deg, #fb923c, #2563eb, #06b6d4, #fb923c);
  box-shadow: 0 18px 42px rgba(37, 99, 235, .28);
  animation: spinSoft 7s linear infinite;
}

.assistant-panel p {
  margin: 8px 0 14px;
  color: #cbd5e1;
  font-size: .88rem;
}

.assistant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.assistant-actions span {
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  color: #e2e8f0;
  font-size: .74rem;
  font-weight: 850;
}

.activity-stream {
  display: grid;
  gap: 9px;
}

.activity-stream > div {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  column-gap: 10px;
  align-items: center;
  padding: 11px 12px;
  border-radius: 12px;
}

.activity-stream strong {
  color: var(--white);
  font-size: .88rem;
}

.activity-stream small {
  grid-column: 2;
  color: #94a3b8;
  font-size: .76rem;
}

.status-dot,
.pulse-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.status-dot.green { background: var(--green); }
.status-dot.orange { background: var(--orange); }
.status-dot.blue { background: var(--blue); }

.pulse-dot {
  position: relative;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, .45);
  animation: pulse 1.9s ease-out infinite;
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: 230px;
  padding: 15px;
  border-radius: 16px;
  color: var(--white);
}

.floating-card strong {
  display: block;
  margin: 5px 0;
  line-height: 1.25;
}

.floating-card small {
  color: #cbd5e1;
}

.floating-card-ai {
  right: -12px;
  top: 32px;
  animation: floatCard 6.5s ease-in-out infinite;
}

.floating-card-voice {
  left: -34px;
  bottom: 76px;
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  column-gap: 10px;
  animation: floatCard 7s ease-in-out infinite reverse;
}

.floating-card-voice small {
  grid-column: 2;
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, .78);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 22px 70px rgba(15, 23, 42, .08);
  backdrop-filter: blur(18px);
}

.trust-strip div {
  padding: 20px;
  background: rgba(255, 255, 255, .55);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--ink);
  font-size: 1rem;
}

.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .9rem;
}

.audience-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.audience-strip div {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(226, 232, 240, .84);
  border-radius: 16px;
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 16px 48px rgba(15, 23, 42, .07);
  backdrop-filter: blur(18px);
}

.audience-strip span,
.audience-strip strong {
  display: block;
}

.audience-strip span {
  margin-bottom: 7px;
  color: var(--orange-2);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.audience-strip strong {
  color: var(--ink);
  line-height: 1.28;
}

.intelligence-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 50%, rgba(37, 99, 235, .13), transparent 30%),
    linear-gradient(180deg, #ffffff, #f8fafc);
}

.visual-frame,
.wide-product-visual,
.module-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 24px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
}

.visual-frame::after,
.wide-product-visual::after,
.module-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
}

.visual-frame img,
.wide-product-visual img,
.module-visual img {
  width: 100%;
}

.wide-product-visual {
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(15, 23, 42, .14);
  transition: transform .35s ease, box-shadow .35s ease;
}

.wide-product-visual:hover,
.module-visual:hover,
.visual-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 38px 98px rgba(15, 23, 42, .16);
}

.product-visual-section {
  background:
    radial-gradient(circle at 50% 12%, rgba(249, 115, 22, .10), transparent 26%),
    linear-gradient(180deg, #ffffff, #f8fafc);
}

.module-visual {
  margin-bottom: 24px;
  border-radius: 24px;
}

.security-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 34%, rgba(249, 115, 22, .18), transparent 28%),
    linear-gradient(135deg, #0f172a, #101828 52%, #172033);
  color: var(--white);
}

.security-section h2,
.security-section p {
  color: var(--white);
}

.security-section p {
  opacity: .84;
}

.security-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
  gap: 44px;
  align-items: center;
}

.premium-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.premium-list li {
  position: relative;
  padding: 13px 14px 13px 44px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .055);
  color: #e2e8f0;
  font-weight: 750;
}

.premium-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(249, 115, 22, .14);
}

.security-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 38%, rgba(249, 115, 22, .20), transparent 34%),
    rgba(255, 255, 255, .07);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
}

.security-ring {
  display: grid;
  width: min(280px, 78vw);
  height: min(280px, 78vw);
  place-items: center;
  margin: 0 auto 26px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .10) 0 48%, transparent 49%),
    conic-gradient(from 180deg, #f97316, #2563eb, #06b6d4, #f97316);
}

.security-ring span {
  display: block;
  color: var(--white);
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
}

.security-ring small {
  display: block;
  margin-top: -70px;
  color: #cbd5e1;
  font-weight: 800;
}

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

.security-metrics div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .07);
}

.security-metrics strong,
.security-metrics span {
  display: block;
}

.security-metrics strong {
  color: var(--white);
  font-size: 1.12rem;
}

.security-metrics span {
  margin-top: 4px;
  color: #cbd5e1;
  font-size: .78rem;
}

.before-after-section {
  background:
    radial-gradient(circle at 50% 20%, rgba(249, 115, 22, .10), transparent 30%),
    linear-gradient(180deg, #f8fafc, #ffffff);
}

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

.compare-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 34px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.compare-panel h2 {
  font-size: clamp(1.8rem, 2.7vw, 2.75rem);
}

.compare-panel ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.compare-panel li {
  position: relative;
  padding-left: 28px;
  color: inherit;
}

.compare-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.compare-before {
  border: 1px solid rgba(226, 232, 240, .9);
  background: rgba(255, 255, 255, .82);
  color: var(--ink-2);
}

.compare-before li::before {
  background: #94a3b8;
}

.compare-after {
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 84% 12%, rgba(249, 115, 22, .22), transparent 28%),
    linear-gradient(135deg, var(--navy), #172033);
  color: #e2e8f0;
}

.compare-after h2,
.compare-after p,
.compare-after .eyebrow {
  color: var(--white);
}

.compare-after li::before {
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(249, 115, 22, .14);
}

.rollout-section {
  background:
    radial-gradient(circle at 16% 24%, rgba(37, 99, 235, .09), transparent 28%),
    #ffffff;
}

.rollout-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: rollout;
}

.rollout-step {
  position: relative;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 18px 52px rgba(15, 23, 42, .07);
}

.rollout-step::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 44px;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(37, 99, 235, .35));
}

.rollout-step:last-child::after {
  display: none;
}

.rollout-step span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), #24314f);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .18);
}

.rollout-step p {
  margin-bottom: 0;
}

.integrations-section {
  background:
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, .08), transparent 32%),
    #ffffff;
}

.integration-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 26px;
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 26px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow);
}

.integration-rail span {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid rgba(148, 163, 184, .32);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, .88));
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
}

.integration-rail span:nth-child(3n) {
  color: var(--orange-2);
}

.integration-rail span:nth-child(4n) {
  color: var(--blue);
}

.faq-section {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.intelligence-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.ai-network {
  position: relative;
  min-height: 390px;
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(249, 115, 22, .12), transparent 26%),
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, .12), transparent 28%),
    rgba(255, 255, 255, .78);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ai-network::before,
.ai-network::after {
  content: "";
  position: absolute;
  inset: 72px 90px;
  border: 1px solid rgba(37, 99, 235, .16);
  border-radius: 50%;
  animation: orbit 12s linear infinite;
}

.ai-network::after {
  inset: 104px 132px;
  border-color: rgba(249, 115, 22, .18);
  animation-duration: 16s;
  animation-direction: reverse;
}

.node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 22px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 42px rgba(15, 23, 42, .10);
  color: var(--ink);
  font-weight: 900;
  backdrop-filter: blur(16px);
}

.node-core {
  left: 50%;
  top: 50%;
  width: 108px;
  height: 108px;
  border: 0;
  background: linear-gradient(135deg, var(--navy), #24314f);
  color: var(--white);
  transform: translate(-50%, -50%);
  box-shadow: 0 24px 62px rgba(15, 23, 42, .24);
}

.node-crm { left: 12%; top: 18%; }
.node-erp { right: 13%; top: 17%; }
.node-dms { left: 16%; bottom: 17%; }
.node-time { right: 20%; bottom: 12%; }
.node-ticket { left: 50%; top: 7%; transform: translateX(-50%); }

.product-panel {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 16px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #475569;
}

.dot.orange { background: var(--orange); }

.panel-body {
  padding: 22px;
}

.workflow {
  display: grid;
  gap: 12px;
}

.workflow-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
  color: var(--white);
}

.workflow-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(249, 115, 22, .16);
  color: #fed7aa;
  font-weight: 900;
}

.workflow-item strong { display: block; }

.workflow-item small {
  color: #cbd5e1;
  font-size: .84rem;
}

.badge {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(249, 115, 22, .14);
  color: #fed7aa;
  font-size: .76rem;
  font-weight: 800;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 560px;
  margin-bottom: 0;
}

.executive-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(37, 99, 235, .09), transparent 28%),
    linear-gradient(180deg, #ffffff, #f8fafc);
}

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

.outcome-card {
  position: relative;
  min-width: 0;
  min-height: 250px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, .86));
  box-shadow: 0 20px 52px rgba(15, 23, 42, .07);
  transition: transform .28s ease, box-shadow .28s ease;
}

.outcome-card::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, .16), transparent 68%);
}

.outcome-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 72px rgba(15, 23, 42, .12);
}

.outcome-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.outcome-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.2;
}

.outcome-card p {
  margin: 10px 0 0;
}

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

.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.card.lift {
  box-shadow: 0 16px 42px rgba(15, 23, 42, .07);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, .26);
  box-shadow: 0 22px 58px rgba(15, 23, 42, .10);
}

.card p:last-child,
.feature p:last-child { margin-bottom: 0; }

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--soft-2);
  color: var(--navy);
  font-weight: 900;
}

.band {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dark-band {
  background: var(--navy);
  color: var(--white);
}

.dark-band h2,
.dark-band h3,
.dark-band p { color: var(--white); }

.dark-band p { opacity: .82; }

.dark-band .card {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .07);
}

.dark-band .card h3,
.dark-band .card p {
  color: var(--white);
}

.feature {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.feature:first-child { border-top: 0; }

.feature .icon { margin-bottom: 0; }

.module-card {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
}

.module-label {
  color: var(--orange-2);
  font-size: .8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 26px;
  align-items: start;
}

.pricing-panel {
  padding: 32px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
}

.pricing-panel p { color: #cbd5e1; }

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-2);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .4em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: calc(.4em + 4px);
  width: 5px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.dark-band .check-list li { color: #e2e8f0; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 46px;
  background:
    radial-gradient(circle at 82% 10%, rgba(249, 115, 22, .13), transparent 30%),
    radial-gradient(circle at 18% 10%, rgba(37, 99, 235, .10), transparent 28%),
    linear-gradient(180deg, var(--soft), var(--white));
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .45), transparent 82%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 650;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.faq details:last-child { border-bottom: 1px solid var(--line); }

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq p {
  max-width: 860px;
  margin: 10px 0 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, 1.18fr);
  gap: 34px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-aside a,
.legal a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 750;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

input, textarea, select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 142px;
  resize: vertical;
}

input:focus, textarea:focus, select:focus {
  outline: 3px solid rgba(249, 115, 22, .22);
  border-color: var(--orange);
}

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

.check-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-2);
  font-weight: 700;
}

.check-pill input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--orange);
}

.legal {
  max-width: 860px;
}

.legal h2 {
  margin-top: 40px;
  font-size: 1.55rem;
}

.founder-note {
  max-width: 840px;
  margin: 0 auto;
}

.founder-note .lead {
  margin-bottom: 18px;
}

.founder-signoff {
  color: var(--muted);
}

.founder-signoff strong {
  color: var(--ink);
}

.site-footer {
  padding: 54px 0 30px;
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes dashboardFloat {
  0%, 100% { transform: rotateX(3deg) rotateY(-5deg) translateY(0); }
  50% { transform: rotateX(2deg) rotateY(-4deg) translateY(-10px); }
}

@keyframes floatCard {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -12px, 0); }
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, -18px, 0) scale(1.08); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .45); }
  70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes barRise {
  from { transform: scaleY(.2); opacity: .35; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes spinSoft {
  to { transform: rotate(360deg); }
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

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

.footer-title {
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 850;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-copy,
.footer-address {
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .92rem;
}

@media (max-width: 940px) {
  .nav-toggle { display: inline-block; }

  .main-nav {
    position: fixed;
    inset: 72px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open { display: flex; }

  .main-nav a { padding: 12px; }

  .hero-grid,
  .intelligence-grid,
  .security-grid,
  .pricing,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-premium {
    min-height: auto;
  }

  .dashboard-stage {
    min-height: auto;
    padding: 24px 0 44px;
  }

  .enterprise-dashboard {
    transform: none;
    animation: none;
  }

  .floating-card-ai {
    right: 12px;
    top: 0;
  }

  .floating-card-voice {
    left: 12px;
    bottom: 8px;
  }

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

  .audience-strip,
  .before-after-grid,
  .rollout-track {
    grid-template-columns: 1fr;
  }

  .rollout-step::after {
    right: auto;
    top: auto;
    left: 44px;
    bottom: -18px;
    width: 2px;
    height: 20px;
  }

  .ai-network {
    min-height: 360px;
  }

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

  .section-head {
    display: block;
  }

  .section-head p { margin-top: 12px; }

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

@media (max-width: 640px) {
  .nav-shell, .container {
    width: min(100% - 24px, 1120px);
  }

  .hero { padding: 58px 0 54px; }
  .section { padding: 58px 0; }
  .section-tight { padding: 44px 0; }

  h1 { font-size: clamp(2.15rem, 13vw, 3.25rem); }
  h2 { font-size: clamp(1.75rem, 8vw, 2.35rem); }

  .hero-proof {
    display: grid;
  }

  .hero-proof span {
    width: 100%;
  }

  .dashboard-stage {
    padding-bottom: 18px;
  }

  .floating-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-bottom: 12px;
    animation: none;
  }

  .floating-card-voice {
    grid-template-columns: 14px minmax(0, 1fr);
  }

  .enterprise-dashboard {
    border-radius: 16px;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dashboard-sidebar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
  }

  .dashboard-sidebar strong {
    flex: 0 0 auto;
    margin: 0 8px 0 0;
  }

  .dashboard-sidebar span {
    flex: 0 0 auto;
  }

  .dashboard-main {
    padding: 14px;
  }

  .dashboard-head {
    align-items: start;
    flex-direction: column;
  }

  .metric-grid,
  .dashboard-split {
    grid-template-columns: 1fr;
  }

  .bar-chart {
    height: 120px;
  }

  .trust-strip {
    margin-top: 20px;
    border-radius: 14px;
  }

  .trust-strip div {
    padding: 16px;
  }

  .audience-strip div,
  .compare-panel,
  .rollout-step {
    padding: 18px;
    border-radius: 16px;
  }

  .visual-frame,
  .wide-product-visual,
  .module-visual {
    border-radius: 16px;
  }

  .ai-network {
    min-height: 430px;
  }

  .ai-network::before,
  .ai-network::after {
    inset: 70px 44px;
  }

  .ai-network::after {
    inset: 116px 74px;
  }

  .node {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    font-size: .86rem;
  }

  .node-core {
    width: 96px;
    height: 96px;
  }

  .node-crm { left: 7%; top: 17%; }
  .node-erp { right: 7%; top: 17%; }
  .node-dms { left: 8%; bottom: 16%; }
  .node-time { right: 9%; bottom: 16%; }
  .node-ticket { top: 4%; }

  .grid.four,
  .grid.three,
  .grid.two,
  .outcome-grid,
  .field-grid,
  .checkbox-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .security-panel {
    padding: 18px;
    border-radius: 18px;
  }

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

  .integration-rail {
    justify-content: flex-start;
    padding: 16px;
    border-radius: 18px;
  }

  .integration-rail span {
    min-height: 44px;
    padding: 10px 13px;
    font-size: .9rem;
  }

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

  .panel-body { padding: 14px; }

  .workflow-item {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .workflow-item .badge {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .card { padding: 20px; }

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

  .hero-actions,
  .cta-row {
    flex-direction: column;
  }

  .button { width: 100%; }

  .footer-bottom {
    display: block;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
