:root {
  --bg: #f4fbff;
  --bg-soft: #eef8ff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-dark: #0d2340;
  --text: #0f1f35;
  --text-soft: #58708c;
  --line: rgba(15, 31, 53, 0.1);
  --line-strong: rgba(255, 255, 255, 0.3);
  --primary: #1098f7;
  --primary-deep: #0e6fd0;
  --cyan: #08c5f5;
  --green: #74dd63;
  --green-deep: #1ab27b;
  --shadow-xl: 0 50px 120px -58px rgba(16, 52, 92, 0.34);
  --shadow-lg: 0 28px 70px -34px rgba(15, 31, 53, 0.22);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1200px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(8, 197, 245, 0.22), transparent 25%),
    radial-gradient(circle at top right, rgba(116, 221, 99, 0.18), transparent 24%),
    linear-gradient(180deg, #f7fcff 0%, #f2f8ff 42%, #eef8ff 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.landing-shell {
  position: relative;
  overflow: clip;
}

.landing-shell::before,
.landing-shell::after {
  content: '';
  position: fixed;
  inset: auto;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}

.landing-shell::before {
  top: -8rem;
  left: -7rem;
  background: rgba(16, 152, 247, 0.22);
}

.landing-shell::after {
  right: -9rem;
  top: 22rem;
  background: rgba(116, 221, 99, 0.18);
}

.shell-container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  padding: 18px 0 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow-lg);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-lockup img {
  width: min(210px, 32vw);
}

.site-nav,
.header-actions,
.hero-actions,
.hero-highlights,
.hero-stats,
.footer-badges,
.window-dots,
.metric-strip,
.surface-lines,
.hero-visual,
.benefits-grid,
.modules-grid,
.proof-cards,
.security-grid,
.pillars-grid,
.analytics-kpis {
  display: flex;
}

.site-nav,
.header-actions,
.hero-actions {
  align-items: center;
  gap: 14px;
}

.site-nav a {
  position: relative;
  color: rgba(15, 31, 53, 0.82);
  font-size: 0.96rem;
  font-weight: 600;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--green) 100%);
  box-shadow: 0 18px 42px -26px rgba(16, 152, 247, 0.65);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(16, 152, 247, 0.18);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 40px -26px rgba(18, 58, 100, 0.14);
}

.button-ghost {
  color: var(--text);
  border-color: rgba(15, 31, 53, 0.1);
  background: rgba(255, 255, 255, 0.4);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(15, 31, 53, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
}

.hero-section {
  padding: 52px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(400px, 0.97fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  padding: 34px 0 20px;
}

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

.hero-copy h1,
.section-heading h2,
.final-cta-card h2 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 7vw, 5.85rem);
}

.hero-copy p,
.section-heading p,
.feature-panel p,
.benefit-card p,
.module-card p,
.flow-card p,
.pillar-card p,
.security-card p,
.footer-brand p,
.footer-column a,
.experience-spotlight p,
.final-cta-card p {
  color: var(--text-soft);
  line-height: 1.75;
}

.hero-copy > p {
  max-width: 62ch;
  margin: 24px 0 28px;
  font-size: 1.05rem;
}

.hero-actions {
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-highlights {
  flex-direction: column;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  position: relative;
  padding-left: 22px;
  color: rgba(15, 31, 53, 0.86);
  font-weight: 500;
}

.hero-highlights li::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--green));
  box-shadow: 0 0 0 6px rgba(8, 197, 245, 0.1);
}

.hero-stats {
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats article {
  min-width: 170px;
  flex: 1 1 170px;
  padding: 18px 20px;
  border: 1px solid rgba(15, 31, 53, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 46px -34px rgba(15, 31, 53, 0.18);
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.18rem;
  font-weight: 800;
}

.hero-stats span {
  display: block;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 720px;
}

.hero-orbit {
  position: absolute;
  inset: auto;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(16, 152, 247, 0.18), transparent 68%);
  filter: blur(16px);
  animation: drift 10s ease-in-out infinite;
}

.hero-orbit-one {
  top: 40px;
  left: 10px;
  width: 14rem;
  height: 14rem;
}

.hero-orbit-two {
  right: 18px;
  bottom: 72px;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(116, 221, 99, 0.2), transparent 68%);
  animation-delay: -3s;
}

.dashboard-window,
.feature-panel,
.benefit-card,
.module-card,
.flow-card,
.experience-spotlight,
.experience-metrics article,
.pillar-card,
.kpi-card,
.security-card,
.final-cta-card {
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-xl);
}

.dashboard-window {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 18px;
  border-radius: 30px;
}

.window-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.window-dots {
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 31, 53, 0.16);
}

.window-dots span:nth-child(1) {
  background: #ff9f8f;
}

.window-dots span:nth-child(2) {
  background: #ffd166;
}

.window-dots span:nth-child(3) {
  background: #7ae582;
}

.window-label {
  color: rgba(15, 31, 53, 0.6);
  font-size: 0.82rem;
  font-weight: 700;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 16px;
}

.dashboard-sidebar,
.dashboard-main,
.analytics-card,
.experience-aside,
.proof-metrics,
.analytics-surface {
  display: flex;
  flex-direction: column;
}

.dashboard-sidebar {
  gap: 16px;
}

.sidebar-card,
.sidebar-list,
.analytics-card,
.experience-spotlight,
.proof-metrics,
.analytics-surface {
  padding: 18px;
  border: 1px solid rgba(15, 31, 53, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
}

.sidebar-chip {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 152, 247, 0.1);
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sidebar-card strong,
.card-head strong,
.experience-spotlight h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.sidebar-card p,
.sidebar-list span,
.sidebar-list strong,
.card-head span,
.queue-list span,
.queue-list strong,
.experience-metrics span,
.experience-metrics strong,
.kpi-card span,
.kpi-card small,
.proof-metrics span,
.proof-metrics strong,
.analytics-surface-head span,
.analytics-surface-head strong {
  line-height: 1.5;
}

.sidebar-list {
  gap: 14px;
}

.sidebar-list div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-list span,
.card-head span,
.analytics-surface-head span,
.kpi-card span {
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.sidebar-list strong,
.proof-metrics strong,
.experience-metrics strong,
.kpi-card strong {
  font-size: 1rem;
}

.metric-strip {
  gap: 14px;
  margin-bottom: 16px;
}

.metric-strip article {
  flex: 1 1 0;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(16, 152, 247, 0.1), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(16, 152, 247, 0.1);
}

.metric-strip strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.48rem;
}

.metric-strip span,
.metric-strip small {
  display: block;
}

.metric-strip span {
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.metric-strip small {
  color: rgba(15, 31, 53, 0.72);
}

.analytics-board {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 16px;
}

.analytics-card {
  gap: 18px;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  min-height: 180px;
}

.bar-chart span {
  flex: 1 1 0;
  height: var(--size);
  min-height: 34px;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(180deg, rgba(8, 197, 245, 0.95), rgba(116, 221, 99, 0.9));
  box-shadow: inset 0 -12px 22px rgba(255, 255, 255, 0.18);
}

.queue-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.queue-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(15, 31, 53, 0.08);
}

.queue-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.queue-list em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 14px;
  background: rgba(15, 31, 53, 0.06);
  color: var(--primary-deep);
  font-style: normal;
  font-weight: 800;
}

.queue-list strong {
  display: block;
  margin-bottom: 4px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  max-width: 240px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(9, 25, 46, 0.9);
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 30px 60px -34px rgba(9, 25, 46, 0.7);
}

.floating-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(154, 220, 255, 0.86);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  font-size: 0.97rem;
  line-height: 1.55;
}

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

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

.section {
  padding: 48px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.is-centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.final-cta-card h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.section-heading p {
  max-width: 62ch;
  margin: 18px 0 0;
  font-size: 1rem;
}

.proof-grid,
.benefits-grid,
.modules-grid,
.experience-layout,
.pillars-grid,
.analytics-layout,
.security-grid,
.footer-grid,
.footer-bottom {
  display: grid;
}

.proof-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.85fr);
  gap: 18px;
}

.proof-cards {
  flex-direction: column;
  gap: 16px;
}

.feature-panel,
.benefit-card,
.module-card,
.pillar-card,
.security-card {
  border-radius: 26px;
  padding: 24px;
}

.feature-panel strong,
.benefit-card strong,
.module-card strong,
.pillar-card strong,
.security-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.proof-metrics {
  gap: 14px;
  justify-content: space-between;
  border-radius: 30px;
}

.proof-metrics article,
.experience-metrics article {
  padding: 4px 0;
}

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

.benefit-icon,
.module-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(16, 152, 247, 0.16), rgba(116, 221, 99, 0.18));
  color: var(--primary-deep);
  font-weight: 800;
  font-size: 1rem;
}

.section-modules,
.section-security {
  position: relative;
}

.section-modules::before,
.section-security::before,
.section-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.48)),
    radial-gradient(circle at top left, rgba(8, 197, 245, 0.1), transparent 30%);
}

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

.experience-layout {
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
  gap: 18px;
  align-items: start;
}

.experience-flow {
  display: grid;
  gap: 14px;
}

.flow-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px 22px;
  border-radius: 24px;
}

.flow-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--green));
  color: #fff;
  font-weight: 800;
  font-size: 0.98rem;
}

.flow-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.experience-aside {
  gap: 16px;
}

.experience-spotlight,
.analytics-surface {
  border-radius: 30px;
}

.experience-metrics {
  display: grid;
  gap: 14px;
}

.experience-metrics article {
  border-radius: 24px;
}

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

.analytics-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: start;
}

.analytics-surface {
  margin-top: 22px;
}

.analytics-surface-head strong {
  display: block;
  margin-top: 10px;
  font-size: 1.1rem;
}

.surface-lines {
  position: relative;
  gap: 14px;
  align-items: end;
  height: 240px;
  margin-top: 26px;
}

.surface-lines span {
  position: relative;
  flex: 1 1 0;
  height: calc(28% + var(--offset));
  border-radius: 22px 22px 12px 12px;
  background: linear-gradient(180deg, rgba(16, 152, 247, 0.98), rgba(8, 197, 245, 0.85) 55%, rgba(116, 221, 99, 0.9));
  box-shadow: inset 0 -12px 20px rgba(255, 255, 255, 0.2);
}

.analytics-kpis {
  flex-direction: column;
  gap: 16px;
}

.kpi-card {
  border-radius: 24px;
  padding: 22px;
}

.kpi-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 2rem;
  font-family: 'Space Grotesk', sans-serif;
}

.kpi-card small {
  display: block;
}

.final-cta-card {
  position: relative;
  padding: 42px;
  border-radius: 34px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(6, 23, 43, 0.94), rgba(13, 65, 112, 0.92) 55%, rgba(18, 156, 128, 0.88));
  color: #fff;
  overflow: hidden;
}

.final-cta-card::after {
  content: '';
  position: absolute;
  inset: auto;
  right: -80px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(10px);
}

.final-cta-card .eyebrow,
.final-cta-card p {
  color: rgba(255, 255, 255, 0.84);
}

.final-cta-card p {
  max-width: 58ch;
  margin: 18px auto 28px;
}

.final-cta-card .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 24px 0 40px;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.8fr));
  gap: 20px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}

.footer-brand p {
  max-width: 46ch;
  margin: 18px 0 20px;
}

.footer-badges {
  gap: 10px;
  flex-wrap: wrap;
}

.footer-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(16, 152, 247, 0.08);
  color: var(--primary-deep);
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-column h3 {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 800;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li + li {
  margin-top: 12px;
}

.footer-column a {
  transition: color 160ms ease;
}

.footer-column a:hover {
  color: var(--primary-deep);
}

.footer-bottom {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
  color: rgba(15, 31, 53, 0.62);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal='fade-left'] {
  transform: translate3d(30px, 0, 0);
}

[data-reveal='fade-right'] {
  transform: translate3d(-30px, 0, 0);
}

[data-reveal='fade-down'] {
  transform: translate3d(0, -24px, 0);
}

[data-reveal='zoom-in'] {
  transform: scale(0.96);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1180px) {
  .hero-grid,
  .proof-grid,
  .experience-layout,
  .analytics-layout {
    grid-template-columns: 1fr;
  }

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

  .floating-card {
    position: static;
    max-width: none;
    margin-top: 16px;
  }

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

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

@media (max-width: 920px) {
  .page-shell,
  .landing-shell {
    overflow-x: clip;
  }

  .site-header {
    top: 10px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-lg);
  }

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

  .header-actions {
    margin-left: auto;
  }

  .header-actions .button-ghost {
    display: none;
  }

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

  .analytics-board {
    grid-template-columns: 1fr;
  }

  .metric-strip,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .pillars-grid,
  .security-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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

  .header-inner,
  .hero-copy,
  .final-cta-card,
  .footer-grid {
    padding-inline: 18px;
  }

  .hero-section {
    padding-top: 30px;
  }

  .hero-copy {
    padding-top: 12px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .hero-highlights li {
    font-size: 0.96rem;
  }

  .hero-stats,
  .benefits-grid,
  .modules-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dashboard-window,
  .feature-panel,
  .benefit-card,
  .module-card,
  .flow-card,
  .pillar-card,
  .security-card {
    border-radius: 22px;
  }

  .flow-card {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 34px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
