@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap");

:root {
  --primary: #0b1f3f;
  --primary-dark: #08172f;
  --accent: #c18a2d;
  --dark: #0b1220;
  --ink: #0c1424;
  --muted: #5f6b7c;
  --line: rgba(15, 23, 42, 0.12);
  --soft-line: rgba(193, 138, 45, 0.2);
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #eef2f7;
  --container: 1180px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow-soft: 0 18px 48px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 16px 34px rgba(15, 23, 42, 0.08);
  --shadow-blue: 0 22px 50px rgba(37, 99, 235, 0.22);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -8%, rgba(11, 31, 63, 0.2), transparent 35%),
    radial-gradient(circle at 92% 18%, rgba(193, 138, 45, 0.18), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 44%, #e7edf6 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.page-glow {
  position: fixed;
  z-index: -1;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.5;
  pointer-events: none;
  animation: floatGlow 12s ease-in-out infinite alternate;
}

.page-glow-one {
  top: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.28), transparent 68%);
}

.page-glow-two {
  right: -170px;
  top: 220px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.18), transparent 66%);
  animation-delay: -4s;
}

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

.section-space {
  padding: 86px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 0;
  transition: background 0.24s ease, box-shadow 0.24s ease, backdrop-filter 0.24s ease;
}

.site-header.is-scrolled {
  background: rgba(248, 250, 252, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
}

.header-shell {
  min-height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand span {
  font-family: "Playfair Display", "Manrope", serif;
  font-size: 16px;
  letter-spacing: -0.04em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--ink);
}

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

.header-actions,
.hero-actions,
.trust-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px) scale(1.01);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #0f2a57 58%, #20407a);
  box-shadow: 0 22px 50px rgba(11, 31, 63, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 26px 58px rgba(37, 99, 235, 0.28);
}

.btn-soft,
.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.btn-ghost {
  background: transparent;
  box-shadow: none;
}

.btn-sm {
  min-height: 40px;
  padding-inline: 14px;
  font-size: 13px;
}

.btn-lg {
  min-height: 52px;
  padding-inline: 22px;
}

.mobile-menu-toggle,
.mobile-nav,
.mobile-nav-scrim,
.sticky-mobile-cta {
  display: none;
}

.mobile-menu-toggle {
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.mobile-menu-toggle span {
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--dark);
}

.hero-section {
  padding: 38px 0 92px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  align-items: center;
  gap: 54px;
}

.hero-copy {
  display: grid;
  gap: 20px;
}

.eyebrow,
.section-kicker {
  width: fit-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid rgba(193, 138, 45, 0.26);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.06);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(193, 138, 45, 0.18);
}

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

h1,
h2,
h3 {
  font-family: "Playfair Display", "Manrope", serif;
  color: var(--ink);
  letter-spacing: -0.055em;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

h3 {
  font-size: 18px;
  line-height: 1.22;
}

.hero-lead,
.section-heading p,
.product-row p,
.feature-card p,
.value-card p,
.value-list span,
.timeline-step p,
.testimonial-card p,
.pricing-card p,
.pricing-card small,
.transparency-panel p,
.final-cta p,
.site-footer p,
.site-footer a,
.footer-bottom p {
  color: var(--muted);
}

.hero-lead {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.68;
}

.trust-strip span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(193, 138, 45, 0.2);
  border-radius: 999px;
  color: #7a5b1f;
  background: rgba(193, 138, 45, 0.12);
  font-size: 12px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -26px;
  z-index: -1;
  border-radius: 42px;
  background:
    radial-gradient(circle at 20% 16%, rgba(11, 31, 63, 0.2), transparent 34%),
    radial-gradient(circle at 86% 80%, rgba(193, 138, 45, 0.16), transparent 32%);
  filter: blur(3px);
}

.dashboard-preview {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.84)),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.14), transparent 38%);
  box-shadow: 0 36px 90px rgba(15, 23, 42, 0.16);
  animation: dashboardFloat 6s ease-in-out infinite;
}

.tax-highlight-section .split-grid {
  align-items: center;
}

.tax-card {
  padding: 26px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(193, 138, 45, 0.16), transparent 40%),
    linear-gradient(140deg, rgba(11, 31, 63, 0.98), rgba(18, 41, 88, 0.95));
  color: #f4f7ff;
  border: 1px solid rgba(193, 138, 45, 0.28);
  box-shadow: 0 24px 54px rgba(11, 31, 63, 0.24);
}

.tax-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.tax-chip {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(193, 138, 45, 0.4);
  color: #f6deb4;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.tax-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: rgba(236, 242, 255, 0.82);
}

.dashboard-preview::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -70%;
  width: 62%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: rotate(18deg);
  animation: sheen 6.5s ease-in-out infinite;
}

.preview-topbar,
.preview-hero-card,
.chart-head,
.insight-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.preview-topbar {
  position: relative;
  z-index: 1;
  padding: 4px 4px 16px;
}

.preview-label,
.preview-topbar strong,
.secure-pill,
.mini-stat span,
.preview-hero-card span,
.preview-hero-card small,
.chart-head span {
  display: block;
}

.preview-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.preview-topbar strong {
  color: var(--dark);
  font-size: 18px;
  line-height: 1.2;
}

.secure-pill,
.pricing-badge {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  color: #126932;
  background: rgba(34, 197, 94, 0.11);
  font-size: 11px;
  font-weight: 900;
}

.preview-hero-card,
.mini-stat,
.chart-panel,
.insight-card,
.product-row,
.feature-card,
.value-card,
.value-list article,
.timeline-step,
.testimonial-card,
.pricing-card,
.transparency-panel,
.final-cta {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.preview-hero-card {
  position: relative;
  z-index: 1;
  padding: 20px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.17), transparent 40%),
    linear-gradient(135deg, #0f172a, #172554);
  color: #ffffff;
}

.preview-hero-card span,
.preview-hero-card small {
  color: rgba(226, 232, 240, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.preview-hero-card strong {
  display: block;
  margin: 4px 0;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.trend-ring {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle, #172554 56%, transparent 57%),
    conic-gradient(var(--accent) 0 72%, rgba(255, 255, 255, 0.2) 72% 100%);
}

.trend-ring span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.preview-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.mini-stat,
.chart-panel,
.insight-card {
  border-radius: 18px;
}

.mini-stat {
  padding: 14px;
}

.mini-stat span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.mini-stat strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 17px;
  letter-spacing: -0.04em;
}

.mini-stat.accent {
  background: #ecfdf5;
  border-color: rgba(34, 197, 94, 0.18);
}

.chart-panel {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  padding: 16px;
}

.chart-head strong {
  color: var(--ink);
  font-size: 14px;
}

.chart-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.animated-bars {
  height: 152px;
  display: flex;
  align-items: end;
  gap: 12px;
  margin-top: 18px;
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fafc, #eff6ff);
}

.animated-bars span {
  flex: 1;
  height: var(--h);
  min-height: 28px;
  border-radius: 999px 999px 9px 9px;
  background: linear-gradient(180deg, #93c5fd, var(--primary));
  transform-origin: bottom;
  animation: growBar 1.2s cubic-bezier(0.2, 0.9, 0.2, 1) both, barPulse 3.4s ease-in-out infinite;
}

.animated-bars span:nth-child(2) {
  animation-delay: 0.08s, 1.1s;
}

.animated-bars span:nth-child(3) {
  animation-delay: 0.16s, 1.8s;
}

.animated-bars span:nth-child(4) {
  animation-delay: 0.24s, 0.6s;
}

.animated-bars span:nth-child(5) {
  animation-delay: 0.32s, 1.4s;
}

.animated-bars span:nth-child(6) {
  animation-delay: 0.4s, 2s;
}

.insight-card {
  position: relative;
  z-index: 1;
  justify-content: flex-start;
  margin-top: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.88);
}

.insight-icon,
.feature-icon,
.product-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
  font-weight: 900;
}

.insight-card strong {
  color: var(--ink);
}

.insight-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.trust-section {
  margin-top: -28px;
}

.trust-shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.trust-shell div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

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

.trust-shell strong {
  color: var(--dark);
  font-size: 14px;
}

.trust-shell span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.split-grid,
.value-grid,
.pricing-grid,
.transparency-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 34px;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.section-heading.center {
  margin: 0 auto 34px;
  text-align: center;
  justify-items: center;
}

.product-stack {
  display: grid;
  gap: 12px;
}

.product-row {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.product-row:hover,
.feature-card:hover,
.timeline-step:hover,
.testimonial-card:hover,
.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.11);
}

.product-row h3,
.feature-card h3,
.timeline-step h3,
.pricing-card h3,
.transparency-panel h3 {
  margin-bottom: 6px;
}

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

.feature-card {
  padding: 20px;
  border-radius: 22px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.feature-icon {
  margin-bottom: 16px;
  transition: transform 0.24s ease, background 0.24s ease;
}

.feature-card:hover .feature-icon {
  transform: rotate(-5deg) scale(1.06);
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

.value-section {
  position: relative;
}

.value-card,
.value-list article {
  border-radius: 24px;
}

.value-card {
  padding: 28px;
}

.primary-value {
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.2), transparent 34%),
    linear-gradient(135deg, #0f172a, #172554 58%, #1e3a8a);
  border-color: rgba(255, 255, 255, 0.12);
}

.primary-value h2,
.primary-value p {
  color: #ffffff;
}

.primary-value p {
  color: rgba(226, 232, 240, 0.78);
}

.value-list {
  display: grid;
  gap: 12px;
}

.value-list article {
  padding: 20px;
}

.value-list strong,
.value-list span {
  display: block;
}

.value-list strong {
  color: var(--dark);
  font-size: 18px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 38px;
  height: 2px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0), rgba(37, 99, 235, 0.22), rgba(37, 99, 235, 0));
}

.timeline-step {
  position: relative;
  padding: 22px;
  border-radius: 22px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.timeline-step span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
  font-size: 12px;
  font-weight: 900;
}

.testimonial-card {
  padding: 22px;
  border-radius: 24px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.testimonial-card.featured {
  border-color: rgba(37, 99, 235, 0.22);
  background: linear-gradient(180deg, #ffffff, #eff6ff);
}

.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #60a5fa);
  font-size: 12px;
  font-weight: 900;
}

.testimonial-card p {
  color: #273142;
  font-size: 16px;
  line-height: 1.62;
}

.testimonial-card strong {
  display: block;
  margin-top: 16px;
  color: var(--dark);
}

.pricing-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 26px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.price-line {
  display: flex;
  align-items: end;
  gap: 8px;
}

.price-line strong {
  color: var(--dark);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.07em;
}

.price-line span {
  color: var(--muted);
  font-weight: 700;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-card small {
  font-size: 12px;
}

.transparency-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border-radius: 24px;
}

.transparency-panel article {
  padding: 18px;
  border-radius: 18px;
  background: var(--surface-soft);
}

.final-cta-section {
  padding: 28px 0 94px;
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 54px 24px;
  border-radius: 34px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.13), transparent 32%),
    #ffffff;
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta p {
  max-width: 620px;
  font-size: 17px;
}

.site-footer {
  padding: 58px 0 26px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.8fr);
  gap: 28px;
  align-items: start;
}

.site-footer h3 {
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.site-footer a,
.site-footer p {
  display: block;
  font-size: 13px;
  line-height: 1.7;
}

.site-footer a {
  margin-top: 8px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--primary);
  transform: translateX(2px);
}

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

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.sticky-mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  transform: translateY(12px);
}

.sticky-mobile-cta.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-mobile-cta .btn {
  width: 100%;
}

body.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s cubic-bezier(0.2, 0.85, 0.2, 1), transform 0.72s cubic-bezier(0.2, 0.85, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

body.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-grid [data-reveal]:nth-child(2),
.testimonial-grid [data-reveal]:nth-child(2) {
  --reveal-delay: 90ms;
}

.feature-grid [data-reveal]:nth-child(3),
.testimonial-grid [data-reveal]:nth-child(3) {
  --reveal-delay: 180ms;
}

.feature-grid [data-reveal]:nth-child(4) {
  --reveal-delay: 270ms;
}

.feature-grid [data-reveal]:nth-child(5) {
  --reveal-delay: 360ms;
}

.feature-grid [data-reveal]:nth-child(6) {
  --reveal-delay: 450ms;
}

:where(a, button):focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.24), 0 0 0 7px rgba(37, 99, 235, 0.1);
}

@keyframes floatGlow {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(36px, 28px, 0) scale(1.06);
  }
}

@keyframes dashboardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes sheen {
  0%,
  52% {
    transform: translateX(0) rotate(18deg);
    opacity: 0;
  }

  62% {
    opacity: 1;
  }

  100% {
    transform: translateX(320%) rotate(18deg);
    opacity: 0;
  }
}

@keyframes growBar {
  from {
    transform: scaleY(0.24);
    opacity: 0.45;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes barPulse {
  0%,
  100% {
    filter: saturate(1);
  }

  50% {
    filter: saturate(1.2) brightness(1.06);
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions .btn-sm {
    display: none;
  }

  .mobile-menu-toggle,
  .mobile-nav,
  .mobile-nav-scrim,
  .sticky-mobile-cta {
    display: flex;
  }

  .header-shell {
    grid-template-columns: 1fr auto;
    min-height: 60px;
  }

  .hero-grid,
  .split-grid,
  .value-grid,
  .pricing-grid,
  .transparency-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 36px;
  }

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

  .trust-shell,
  .feature-grid,
  .testimonial-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .mobile-nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(15, 23, 42, 0.36);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }

  body.is-menu-open .mobile-nav-scrim {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    width: min(88vw, 370px);
    padding: 18px;
    flex-direction: column;
    gap: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: -24px 0 70px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(18px);
    transform: translateX(106%);
    transition: transform 0.24s ease;
  }

  body.is-menu-open .mobile-nav {
    transform: translateX(0);
  }

  .mobile-nav-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
  }

  .mobile-nav-close {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
    color: var(--dark);
    font-size: 24px;
  }

  .mobile-nav-cta,
  .mobile-nav-links {
    display: grid;
    gap: 10px;
  }

  .mobile-nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
    color: var(--ink);
    font-weight: 800;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 14px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section-space {
    padding: 58px 0;
  }

  .site-header {
    padding: 8px 0;
  }

  .header-shell {
    min-height: 56px;
    border-radius: 18px;
    padding-inline: 12px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .brand span {
    font-size: 15px;
  }

  .hero-section {
    padding: 22px 0 70px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-lead,
  .final-cta p {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn,
  .mobile-nav-cta .btn {
    width: 100%;
  }

  .trust-strip {
    gap: 8px;
  }

  .dashboard-preview {
    padding: 12px;
    border-radius: 24px;
  }

  .preview-hero-card {
    padding: 16px;
    border-radius: 20px;
  }

  .preview-hero-card strong {
    font-size: 28px;
  }

  .trend-ring {
    width: 72px;
    height: 72px;
  }

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

  .animated-bars {
    height: 126px;
    gap: 8px;
  }

  .trust-section {
    margin-top: -18px;
  }

  .trust-shell,
  .value-card,
  .pricing-card,
  .transparency-panel,
  .final-cta {
    border-radius: 22px;
  }

  .transparency-panel {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 34px 16px;
  }

  .final-cta-section {
    padding-bottom: 72px;
  }

  .site-footer {
    padding-bottom: 104px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 26px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 9.5px;
  }
}

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

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
