:root {
  --red: #b53531;
  --red-bright: #ee5049;
  --black: #000;
  --ink: #101014;
  --muted: #666872;
  --amber: #f5a000;
  --violet: #8a5cff;
  --white: #fff;
  --line: rgba(255, 255, 255, 0.14);
  --glass: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f7f5ef;
  overflow-x: hidden;
}

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

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 10%, rgba(181, 53, 49, 0.15), transparent 30rem),
    linear-gradient(180deg, #050505 0, #0c0a09 36rem, #f7f5ef 36rem);
}

.nav {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 30;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 8, 9, 0.9);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red), #111);
  color: #fff;
  font-size: 0.72rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.nav-links a,
.footer-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--amber);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.login-link {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.login-link:hover {
  color: #fff;
  border-color: rgba(245, 160, 0, 0.48);
  background: rgba(245, 160, 0, 0.12);
}

.nav-cta {
  padding: 13px 18px;
  border-radius: 999px;
  background: #fff;
  color: #090909;
  font-size: 0.9rem;
  font-weight: 800;
}

.section-dark {
  color: #fff;
  background: #050505;
}

.section-light {
  background:
    radial-gradient(circle at 8% 10%, rgba(245, 160, 0, 0.14), transparent 26rem),
    radial-gradient(circle at 92% 18%, rgba(181, 53, 49, 0.11), transparent 28rem),
    #f7f5ef;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px 6vw 58px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.76)),
    url("assets/soar19-hero-bg.png") center / cover no-repeat;
  transform: none;
}

.aurora {
  position: absolute;
  width: 44vw;
  height: 44vw;
  min-width: 420px;
  min-height: 420px;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
}

.aurora-one {
  top: 4%;
  left: 42%;
  background: var(--red);
}

.aurora-two {
  right: -18%;
  bottom: -10%;
  background: var(--amber);
}

#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  width: min(1320px, 100%);
  margin: 0 auto;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--amber);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

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

h1 {
  max-width: 820px;
  font-size: clamp(3.2rem, 5.35vw, 6.25rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 650px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 850;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #ef4d46 58%, #1b0b0b);
  box-shadow: 0 18px 45px rgba(181, 53, 49, 0.4);
}

.button-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
}

.product-stage {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1300px;
}

.product-glow {
  position: absolute;
  inset: 12% 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 22% 18%, rgba(245, 160, 0, 0.34), transparent 26%),
    radial-gradient(circle at 78% 72%, rgba(181, 53, 49, 0.38), transparent 30%);
  filter: blur(22px);
  opacity: 0.7;
}

.dashboard {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  backdrop-filter: none;
  box-shadow: var(--shadow);
  transform: rotateY(-7deg) rotateX(5deg);
  animation: none;
}

.dash-top,
.panel-head,
.ticket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dash-label,
.metric-card span,
.panel-head span,
.ticket span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.75rem;
  font-weight: 700;
}

.dash-top h2 {
  margin-top: 5px;
  font-size: 1.55rem;
}

.dash-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.75rem;
}

.dash-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #44df98;
  box-shadow: 0 0 14px #44df98;
}

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

.metric-card,
.chart-panel,
.ticket-list {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.28);
}

.metric-card {
  min-height: 134px;
  padding: 16px;
  overflow: hidden;
}

.metric-card strong {
  display: block;
  margin-top: 14px;
  font-size: 2rem;
}

.metric-card small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.48);
}

.accent-red {
  box-shadow: inset 0 -48px 80px rgba(181, 53, 49, 0.18);
}

.accent-amber {
  box-shadow: inset 0 -48px 80px rgba(245, 160, 0, 0.17);
}

.accent-green {
  box-shadow: inset 0 -48px 80px rgba(68, 223, 152, 0.16);
}

.dash-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
  margin-top: 12px;
}

.chart-panel {
  min-height: 240px;
  padding: 18px;
}

.panel-head b {
  color: #44df98;
  font-size: 0.75rem;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 160px;
  margin-top: 28px;
}

.chart-bars i {
  flex: 1;
  min-width: 18px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--amber), var(--red));
  box-shadow: 0 12px 24px rgba(181, 53, 49, 0.22);
  animation: growBar 1.2s ease both;
}

.ticket-list {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.ticket {
  min-height: 64px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.ticket strong {
  font-size: 0.9rem;
}

.ticket small {
  color: var(--amber);
  white-space: nowrap;
}

.urgent {
  outline: 1px solid rgba(245, 160, 0, 0.38);
}

.benefits,
.verticals,
.integrations,
.differentiators,
.metrics,
.final-cta {
  padding: 112px 6vw;
}

.section-heading {
  width: min(880px, 100%);
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2,
.ai-copy h2,
.cta-panel h2 {
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.98;
  text-wrap: balance;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.benefit-card {
  min-height: 246px;
  padding: 28px;
  border: 1px solid rgba(16, 16, 20, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(10, 10, 10, 0.07);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(181, 53, 49, 0.3);
  box-shadow: 0 34px 90px rgba(181, 53, 49, 0.15);
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 32px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--black), var(--red));
  font-weight: 900;
}

.benefit-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.benefit-card p {
  color: var(--muted);
  line-height: 1.65;
}

.vertical-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.vertical-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(16, 16, 20, 0.08);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(8, 8, 9, 0.84)),
    radial-gradient(circle at 18% 18%, rgba(245, 160, 0, 0.22), transparent 38%),
    radial-gradient(circle at 92% 12%, rgba(181, 53, 49, 0.42), transparent 34%),
    #121212;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.vertical-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 46px);
  opacity: 0.42;
}

.vertical-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 160, 0, 0.38);
  box-shadow: 0 34px 90px rgba(181, 53, 49, 0.16);
}

.vertical-card span,
.vertical-card h3,
.vertical-card p,
.vertical-card b {
  position: relative;
  z-index: 1;
}

.vertical-card span {
  width: fit-content;
  margin-bottom: 78px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--amber);
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.78rem;
  font-weight: 850;
}

.vertical-card h3 {
  font-size: 1.2rem;
  line-height: 1.25;
}

.vertical-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.58;
}

.vertical-card b {
  width: fit-content;
  margin-top: 18px;
  color: #fff;
  font-size: 0.86rem;
}

.ai-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  min-height: 720px;
  padding: 110px 6vw;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 36%, rgba(138, 92, 255, 0.28), transparent 22rem),
    radial-gradient(circle at 20% 80%, rgba(181, 53, 49, 0.24), transparent 24rem),
    #060508;
}

.ai-copy {
  max-width: 620px;
  justify-self: end;
}

.ai-copy p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.75;
}

.flow-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
}

.flow-lines span {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138, 92, 255, 0.8), transparent);
  animation: flow 5s linear infinite;
}

.flow-lines span:nth-child(1) {
  top: 25%;
}

.flow-lines span:nth-child(2) {
  top: 44%;
  animation-delay: 1.2s;
}

.flow-lines span:nth-child(3) {
  top: 62%;
  animation-delay: 2.4s;
}

.flow-lines span:nth-child(4) {
  top: 78%;
  animation-delay: 3.2s;
}

.ai-visual {
  position: relative;
  min-height: 460px;
}

.chat-window {
  position: absolute;
  inset: 58px 9% auto 8%;
  max-width: 560px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.chat-header span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 24px var(--amber);
}

.message {
  width: fit-content;
  max-width: 86%;
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
}

.message.ai {
  margin-left: auto;
  color: #fff;
  background: linear-gradient(135deg, rgba(181, 53, 49, 0.9), rgba(138, 92, 255, 0.58));
}

.message.compact {
  background: rgba(245, 160, 0, 0.18);
}

.floating-card {
  position: absolute;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(7, 7, 9, 0.66);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
  animation: floatCard 5s ease-in-out infinite;
}

.card-one {
  top: 8px;
  left: 12%;
}

.card-two {
  top: 38%;
  right: 2%;
  animation-delay: 0.6s;
}

.card-three {
  bottom: 14%;
  left: 0;
  animation-delay: 1.1s;
}

.card-four {
  bottom: 4%;
  right: 14%;
  animation-delay: 1.7s;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  width: min(1180px, 100%);
  margin: 0 auto;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marquee 28s linear infinite;
}

.logo-track span {
  min-width: 190px;
  padding: 22px 24px;
  border: 1px solid rgba(16, 16, 20, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: #1d1d21;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.06);
  font-weight: 850;
  text-align: center;
}

.section-mixed {
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7f5ef 0%, #fff 58%, #0a0807 58%, #050505 100%);
}

.differentiators .section-heading {
  margin-bottom: 64px;
}

.differentiators .section-heading h2 {
  max-width: 980px;
  margin: 0 auto;
  color: var(--ink);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.diff-card {
  min-height: 176px;
  display: flex;
  align-items: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 20% 12%, rgba(245, 160, 0, 0.18), transparent 50%),
    #100e0d;
  font-size: 1.05rem;
  font-weight: 850;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  transition: transform 220ms ease, border-color 220ms ease;
}

.diff-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 160, 0, 0.44);
}

.metrics {
  background:
    radial-gradient(circle at 18% 18%, rgba(181, 53, 49, 0.24), transparent 28rem),
    #050505;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.big-metric {
  min-height: 196px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
}

.big-metric strong {
  display: block;
  color: #fff;
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
  line-height: 1;
}

.big-metric span {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 50%, rgba(181, 53, 49, 0.42), transparent 30rem),
    radial-gradient(circle at 84% 42%, rgba(245, 160, 0, 0.32), transparent 28rem),
    linear-gradient(135deg, #050505, #160b0b 48%, #070707);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 120deg, transparent, rgba(181, 53, 49, 0.28), rgba(245, 160, 0, 0.22), transparent);
  animation: spin 16s linear infinite;
}

.cta-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.cta-panel .button {
  margin-top: 34px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px 6vw;
  color: rgba(255, 255, 255, 0.74);
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
  max-width: 460px;
  margin-top: 12px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

@keyframes heroFloat {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.4%, -1%, 0);
  }
}

@keyframes driftOne {
  to {
    transform: translate3d(-14%, 12%, 0) scale(1.08);
  }
}

@keyframes driftTwo {
  to {
    transform: translate3d(-16%, -10%, 0) scale(0.92);
  }
}

@keyframes dashboardEnter {
  from {
    opacity: 0;
    transform: translateY(42px) rotateY(-14deg) rotateX(9deg) scale(0.95);
  }
}

@keyframes floatCard {
  50% {
    transform: translateY(-12px);
  }
}

@keyframes growBar {
  from {
    transform: scaleY(0.25);
    transform-origin: bottom;
  }
}

@keyframes flow {
  from {
    transform: translateX(-12%);
  }
  to {
    transform: translateX(12%);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

@media (max-width: 1100px) {
  .hero-content,
  .ai-section {
    grid-template-columns: 1fr;
  }

  .product-stage,
  .ai-copy {
    justify-self: stretch;
  }

  .benefit-grid,
  .vertical-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .metric-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav {
    inset: 12px 12px auto;
    height: 58px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    padding: 11px 13px;
    font-size: 0.78rem;
  }

  .login-link {
    padding: 10px 11px;
    font-size: 0.78rem;
  }

  .hero {
    padding: 104px 18px 52px;
    align-items: start;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.4rem);
  }

  .hero-copy p {
    font-size: 1rem;
  }

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

  .dashboard {
    padding: 14px;
    border-radius: 22px;
    backdrop-filter: blur(12px);
    transform: none;
  }

  .aurora {
    filter: blur(32px);
    opacity: 0.22;
  }

  #particles {
    opacity: 0.22;
  }

  .dash-grid,
  .dash-body,
  .benefit-grid,
  .vertical-grid,
  .diff-grid,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .metric-card {
    min-height: 116px;
  }

  .chart-panel {
    min-height: 210px;
  }

  .benefits,
  .verticals,
  .integrations,
  .differentiators,
  .metrics,
  .final-cta,
  .ai-section {
    padding: 76px 18px;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2,
  .ai-copy h2,
  .cta-panel h2 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .ai-visual {
    min-height: 560px;
  }

  .chat-window {
    inset: 68px 0 auto;
  }

  .floating-card {
    max-width: 210px;
    font-size: 0.85rem;
  }

  .card-two {
    top: 4px;
    right: 0;
  }

  .card-three {
    bottom: 20px;
  }

  .card-four {
    right: 0;
    bottom: 98px;
  }

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

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