:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-muted: #f7f9fd;
  --ink: #111827;
  --muted: #667085;
  --line: #e6eaf2;
  --blue: #357cff;
  --blue-strong: #1662f4;
  --blue-deep: #0f55e8;
  --blue-soft: #e9f1ff;
  --orange: #f25a1d;
  --orange-strong: #d9460f;
  --accent: #ffd84d;
  --shadow: 0 24px 70px rgba(35, 91, 189, 0.16);
  --soft-shadow: 0 16px 50px rgba(15, 23, 42, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "Aptos", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 35px rgba(17, 24, 39, 0.05);
}

.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 48px), var(--container));
  min-height: 78px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #101828;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.nav-panel {
  display: flex;
  gap: 34px;
  align-items: center;
  justify-content: center;
  color: #5b6475;
  font-size: 14px;
  font-weight: 600;
}

.nav-panel a {
  transition: color 0.2s ease;
}

.nav-panel a:hover {
  color: var(--blue-strong);
}

.nav-client-cta {
  display: none;
}

.header-cta {
  justify-self: end;
  padding: 12px 25px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.header-cta:hover {
  background: var(--orange-strong);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.section-pad {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  padding-top: 84px;
  text-align: center;
}

.hero-copy {
  max-width: 780px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}

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

h1 {
  margin-bottom: 18px;
  color: #101828;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

h2 {
  margin-bottom: 16px;
  color: #101828;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  color: #111827;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

p {
  color: var(--muted);
}

.hero-text {
  max-width: 610px;
  margin: 0 auto 28px;
  font-size: 18px;
}

.btn {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn-primary {
  background: var(--blue);
  padding: 18px 30px;
  letter-spacing: 0.07em;
  color: #fff;
  box-shadow: 0 18px 34px rgba(53, 124, 255, 0.25);
}

.btn-primary:hover {
  background: var(--blue-strong);
}

.btn-secondary {
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.hero-visual {
  position: relative;
  overflow: visible;
  min-height: auto;
  margin-top: 58px;
  padding: 0;
  border-radius: 28px;
}

.hero-visual::before {
  display: none;
}

.hero-visual::after {
  display: none;
}

.dashboard-preview-frame {
  overflow: hidden;
  border-radius: 28px;
  background: #f4f6fa;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.16);
}

.dashboard-preview-image {
  display: block;
  width: 100%;
  height: auto;
}

.orb {
  position: absolute;
  z-index: 2;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.12),
    0 0 42px rgba(255, 255, 255, 0.9);
}

.orb-one {
  top: 88px;
  left: 24%;
}

.orb-two {
  right: 28%;
  bottom: 100px;
}

.hero-chip {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue-strong);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 18px 50px rgba(31, 96, 220, 0.28);
}

.hero-stats-card {
  position: absolute;
  top: 54px;
  right: 70px;
  z-index: 3;
  min-width: 132px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  text-align: left;
  backdrop-filter: blur(16px);
}

.hero-stats-card span {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
  opacity: 0.72;
}

.hero-stats-card strong {
  font-size: 30px;
  line-height: 1;
}

.chart-lines {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  width: 100%;
  height: 88%;
}

.grid-line,
.panel-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
}

.area {
  fill: url("#chartFill");
}

.panel-area {
  fill: rgba(255, 255, 255, 0.26);
}

.line,
.panel-line {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-width: 7;
}

.dot {
  fill: #fff;
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 9;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 48px;
  color: #7a8496;
  font-size: 14px;
  font-weight: 800;
}

.brand-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  background: #fff;
}

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

.section-heading p:not(.eyebrow) {
  margin-bottom: 24px;
}

.cards-grid {
  display: grid;
  gap: 22px;
}

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

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

.feature-card,
.workflow-card,
.story-card,
.insight-card {
  min-height: 214px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.03);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.feature-card:hover,
.workflow-card:hover,
.story-card:hover,
.insight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(53, 124, 255, 0.28);
  box-shadow: var(--soft-shadow);
}

.card-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.card-icon i {
  font-size: 20px;
  line-height: 1;
}

.analytics-panel {
  position: relative;
  overflow: hidden;
  min-height: auto;
  margin-top: 34px;
  border-radius: 28px;
  background: #f4f6fa;
  box-shadow: var(--shadow);
}

.analytics-image {
  display: block;
  width: 100%;
  height: auto;
}

.experience {
  padding-top: 76px;
}

.workflow-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.workflow-card::after {
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(53, 124, 255, 0.08);
  content: "";
}

.workflow-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #d7dfec;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.workflow-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 18px;
  background: var(--blue-soft);
  color: var(--blue-strong);
  font-size: 22px;
}

.workflow-card h3,
.workflow-card p {
  position: relative;
  z-index: 1;
}

.workflow-card h3 {
  max-width: 260px;
  margin-bottom: 14px;
  font-size: 22px;
}

.workflow-card p {
  max-width: 280px;
  margin-bottom: 0;
}

.story-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.story-card p {
  color: #384154;
  font-size: 17px;
}

.story-card div {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 12px;
  align-items: center;
}

.story-card strong,
.story-card small {
  display: block;
  grid-column: 2;
}

.story-card small {
  color: var(--muted);
  font-size: 12px;
}

.avatar {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 32%, #fff4b0 0 16%, transparent 17%),
    linear-gradient(135deg, #e3ecff, #bcd2ff);
}

.blue-cta {
  padding-top: 42px;
  padding-bottom: 42px;
}

.cta-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  overflow: hidden;
  padding: 54px;
  border-radius: 8px;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(255, 255, 255, 0.2),
      transparent 18%
    ),
    linear-gradient(135deg, #1d6fff, #4390ff 62%, #63a7ff);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-card h2,
.cta-card p {
  color: #fff;
}

.cta-card h2 {
  max-width: 560px;
}

.cta-card p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-list {
  display: grid;
  gap: 14px;
}

.cta-list div {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 62px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.cta-list span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
}

.cta-list strong {
  color: #fff;
}

.insight-card {
  min-height: 198px;
}

.insight-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 16px;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  font-size: 20px;
}

.insight-card h3 {
  margin-bottom: 12px;
  color: #101828;
  font-weight: 800;
}

.insight-card p {
  margin-bottom: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.55;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
}

.faq {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
  padding-top: 78px;
}

.faq-intro {
  position: sticky;
  top: 112px;
}

.faq-intro h2 {
  max-width: 360px;
}

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

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

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 78px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1f2937;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.faq-item button span {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-left: 24px;
}

.faq-item button span::before,
.faq-item button span::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  content: "";
  transition: transform 0.2s ease;
}

.faq-item button span::after {
  transform: rotate(90deg);
}

.faq-item.open button span::after {
  transform: rotate(0deg);
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-content p {
  overflow: hidden;
  margin-bottom: 0;
  padding-right: 42px;
}

.faq-item.open .faq-content {
  grid-template-rows: 1fr;
  padding-bottom: 28px;
}

.footer {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 74px 0 34px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 46px;
}

.footer h3 {
  margin-bottom: 18px;
  font-size: 14px;
}

.footer a:not(.brand):not(.btn) {
  display: block;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 14px;
}

.footer p {
  max-width: 290px;
  font-size: 14px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #8a94a6;
  font-size: 13px;
}

.client-modal {
  width: min(calc(100% - 32px), 460px);
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  color: var(--ink);
}

.client-modal::backdrop {
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(8px);
}

.client-modal-card {
  position: relative;
  padding: 36px;
  border: 1px solid rgba(230, 234, 242, 0.9);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.24);
}

.client-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #e11d48;
  color: #fff;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.client-modal-close:hover {
  background: #be123c;
  transform: translateY(-1px);
}

.client-modal-card h2 {
  margin-bottom: 12px;
  font-size: 34px;
}

.client-modal-card p:not(.eyebrow) {
  margin-bottom: 24px;
}

.client-modal-field {
  display: grid;
  gap: 9px;
  margin-bottom: 24px;
}

.client-modal-field span {
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.client-modal-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid #d8e0ed;
  border-radius: 16px;
  background: #f8fafc;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.client-modal-field input:focus {
  border-color: #3b82f6;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.client-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.client-modal-submit {
  background: var(--orange);
  color: #fff;
}

.client-modal-submit:hover {
  background: var(--orange-strong);
}

.client-access-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 12%, rgba(53, 124, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #f8fbff, #eef4ff);
}

.client-access-shell {
  display: grid;
  width: min(calc(100% - 32px), 760px);
  min-height: 100vh;
  margin: 0 auto;
  place-items: center;
  padding: 48px 0;
}

.client-access-card {
  width: 100%;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.client-access-brand {
  margin-bottom: 28px;
}

.client-access-card h1 {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: clamp(32px, 5vw, 52px);
}

.client-access-card p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 26px;
}

.client-link-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.client-link-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8fafc;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.client-link-card:hover {
  border-color: rgba(53, 124, 255, 0.3);
  box-shadow: var(--soft-shadow);
  transform: translateY(-2px);
}

.client-link-card strong {
  color: #101828;
  font-size: 17px;
}

.client-link-card span {
  color: var(--muted);
  font-size: 14px;
}

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

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

.js-enabled .reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

@media (max-width: 980px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    min-height: 70px;
  }

  .menu-toggle {
    display: inline-grid !important;
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 30;
    gap: 5px;
    justify-self: end;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid #d8e2f3;
    border-radius: 999px;
    background: #f8fbff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: #111827;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-panel {
    position: fixed;
    top: 70px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 4px;
    justify-content: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--soft-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-panel a {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .nav-panel a:hover {
    background: var(--blue-soft);
  }

  .nav-client-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 8px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
  }

  .nav-client-cta:hover {
    background: var(--orange-strong);
  }

  .header-cta {
    display: none;
  }

  .cards-grid.three,
  .cards-grid.six,
  .cta-card,
  .faq,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .faq {
    gap: 28px;
  }

  .faq-intro {
    position: static;
  }

  .cta-card {
    gap: 28px;
    padding: 38px;
  }
}

@media (max-width: 640px) {
  .navbar,
  .section-pad,
  .footer {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero {
    padding-top: 58px;
  }

  .section-pad {
    padding: 66px 0;
  }

  h1 {
    overflow-wrap: break-word;
    font-size: 28px;
    line-height: 0.95;
    letter-spacing: -0.01em;
  }

  .hero-copy,
  .section-heading {
    max-width: 100%;
  }

  h2 {
    overflow-wrap: break-word;
    font-size: 26px;
    letter-spacing: -0.035em;
  }

  .hero-text {
    max-width: 330px;
    font-size: 15px;
  }

  .hero-visual {
    min-height: auto;
    margin-top: 34px;
  }

  .dashboard-preview-frame {
    overflow-x: auto;
    border-radius: 18px;
  }

  .dashboard-preview-image {
    min-width: 720px;
  }

  .hero-chip {
    padding: 10px 16px;
    font-size: 11px;
  }

  .hero-stats-card {
    display: none;
  }

  .orb-one {
    left: 18%;
  }

  .orb-two {
    right: 18%;
    bottom: 62px;
  }

  .brand-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 28px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .feature-card,
  .workflow-card,
  .story-card,
  .insight-card {
    min-height: auto;
    padding: 24px;
  }

  .analytics-panel {
    overflow-x: auto;
    border-radius: 18px;
  }

  .analytics-image {
    min-width: 720px;
  }

  .cta-card {
    padding: 28px;
  }

  .cta-list div {
    min-height: 56px;
  }

  .faq-item button {
    min-height: 72px;
    font-size: 15px;
  }

  .faq-content p {
    padding-right: 0;
  }

  .footer {
    padding-top: 54px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 34px;
  }

  .client-link-list {
    grid-template-columns: 1fr;
  }
}

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

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