﻿:root {
  --bg-0: #f3f6fb;
  --bg-1: #ffffff;
  --bg-2: #eef2f7;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --text-0: #0f1727;
  --text-1: #3d4658;
  --text-2: #667086;
  --line: rgba(17, 29, 49, 0.1);
  --line-strong: rgba(17, 29, 49, 0.18);
  --accent-0: #0b6dff;
  --accent-1: #00a3ff;
  --accent-2: #aee0ff;
  --success: #00b67a;
  --shadow-soft: 0 20px 60px rgba(13, 28, 55, 0.12);
  --shadow-card: 0 16px 34px rgba(11, 32, 75, 0.1);
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 10% 0%, rgba(11, 109, 255, 0.16), transparent 30%),
    radial-gradient(circle at 90% 16%, rgba(0, 163, 255, 0.16), transparent 28%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 36%, var(--bg-2) 100%);
  color: var(--text-0);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  background-image: linear-gradient(rgba(16, 29, 52, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 29, 52, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

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

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

.shell {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 0 28px;
  width: 100%;
}

.scroll-progress {
  background: linear-gradient(90deg, var(--accent-0), var(--accent-1));
  height: 3px;
  left: 0;
  position: fixed;
  top: 0;
  transform-origin: left center;
  transform: scaleX(var(--scroll-progress, 0));
  width: 100%;
  z-index: 1200;
}

.topbar {
  left: 0;
  padding: 18px 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: padding 300ms var(--ease-standard), transform 300ms var(--ease-standard);
  z-index: 1100;
}

.topbar.scrolled {
  padding: 10px 0;
}

.nav-shell {
  align-items: center;
  backdrop-filter: blur(18px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 40px rgba(14, 28, 54, 0.1);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px 16px 12px 22px;
  position: relative;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  gap: 10px;
  letter-spacing: -0.03em;
}

.brand::before {
  content: none;
}

.brand-logo {
  border-radius: 6px;
  height: 64px;
  object-fit: contain;
  width: 64px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 2px;
  list-style: none;
}

.nav-link {
  border-radius: 999px;
  color: var(--text-1);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 9px 10px;
  white-space: nowrap;
  transition: background 250ms var(--ease-standard), color 250ms var(--ease-standard), transform 250ms var(--ease-standard);
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(11, 109, 255, 0.09);
  color: var(--text-0);
  transform: translateY(-1px);
}

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

.btn {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  letter-spacing: -0.01em;
  line-height: 1;
  min-height: 44px;
  padding: 0 21px;
  transition: transform 250ms var(--ease-standard), box-shadow 250ms var(--ease-standard), background 250ms var(--ease-standard), color 250ms var(--ease-standard);
}

.btn:focus-visible {
  outline: 3px solid rgba(11, 109, 255, 0.2);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(140deg, var(--accent-0), var(--accent-1));
  box-shadow: 0 10px 26px rgba(11, 109, 255, 0.3);
  color: #ffffff;
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(11, 109, 255, 0.36);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  color: var(--text-0);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

.btn-light {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-0);
}

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

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}

.menu-btn {
  align-items: center;
  background: transparent;
  border: 0;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 40px;
  justify-content: center;
  padding: 0;
  width: 40px;
}

.menu-btn span {
  background: var(--text-0);
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: transform 260ms var(--ease-standard), opacity 200ms ease;
  width: 18px;
}

.menu-btn.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  backdrop-filter: blur(16px);
  background: rgba(247, 250, 255, 0.93);
  border-bottom: 1px solid rgba(17, 29, 49, 0.08);
  box-shadow: var(--shadow-soft);
  display: none;
  left: 0;
  opacity: 0;
  padding: 96px 28px 28px;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateY(-8px);
  transition: opacity 240ms ease, transform 280ms var(--ease-standard);
  z-index: 1090;
}

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

.mobile-drawer nav {
  display: grid;
  gap: 10px;
}

.mobile-link {
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 650;
  padding: 14px 16px;
}

.mobile-link:hover {
  background: rgba(11, 109, 255, 0.08);
}

.mobile-drawer .btn {
  margin-top: 14px;
  width: 100%;
}

main {
  padding-top: 118px;
}

.hero {
  padding: 76px 0 54px;
  position: relative;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 52px;
  grid-template-columns: 1.06fr 0.94fr;
}

.eyebrow {
  color: var(--accent-0);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(2.25rem, 5.8vw, 4.35rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.02;
  margin-top: 18px;
  max-width: 780px;
}

.hero-text {
  color: var(--text-1);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  margin-top: 22px;
  max-width: 640px;
}

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

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.pill {
  align-items: center;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 29, 49, 0.09);
  border-radius: 999px;
  color: var(--text-1);
  display: inline-flex;
  font-size: 0.83rem;
  font-weight: 700;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
}

.pill::before {
  background: linear-gradient(140deg, var(--accent-0), var(--accent-1));
  border-radius: 50%;
  content: "";
  height: 6px;
  width: 6px;
}

.hero-visual {
  min-height: 540px;
  position: relative;
}

.hero-glow {
  background:
    radial-gradient(circle at 38% 38%, rgba(11, 109, 255, 0.37), rgba(11, 109, 255, 0.06) 42%, transparent 70%),
    radial-gradient(circle at 62% 66%, rgba(0, 163, 255, 0.28), transparent 62%);
  filter: blur(3px);
  inset: 0;
  position: absolute;
  transform: translateY(var(--hero-shift, 0px));
  transition: transform 280ms ease-out;
}

.mock-dashboard {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  backdrop-filter: blur(20px);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(247, 250, 255, 0.66));
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  min-height: 486px;
  overflow: hidden;
  padding: 20px;
  position: relative;
  transform: perspective(1400px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--hero-shift, 0px));
  transform-style: preserve-3d;
  transition: transform 340ms var(--ease-standard);
  will-change: transform;
}

.mock-dashboard::after {
  background: radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.dashboard-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.dashboard-title {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.live-state {
  align-items: center;
  background: rgba(0, 182, 122, 0.12);
  border: 1px solid rgba(0, 182, 122, 0.24);
  border-radius: 999px;
  color: #007f56;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 750;
  gap: 7px;
  min-height: 28px;
  padding: 0 11px;
}

.live-state::before {
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 182, 122, 0.7);
  content: "";
  height: 7px;
  width: 7px;
}

.dashboard-grid {
  display: grid;
  gap: 13px;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  z-index: 1;
}

.module {
  background: var(--surface-solid);
  border: 1px solid rgba(15, 33, 61, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 14px;
}

.module-link {
  cursor: pointer;
  display: block;
  transition: transform 220ms var(--ease-standard), box-shadow 220ms var(--ease-standard), border-color 220ms var(--ease-standard);
}

.module-link:hover {
  border-color: rgba(11, 109, 255, 0.36);
  box-shadow: 0 20px 34px rgba(11, 32, 75, 0.16);
  transform: translateY(-3px);
}

.module-link:focus-visible {
  border-color: rgba(11, 109, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(11, 109, 255, 0.18), 0 20px 34px rgba(11, 32, 75, 0.16);
  outline: none;
}

.module h4 {
  color: var(--text-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.module strong {
  display: block;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.module p {
  color: var(--text-2);
  font-size: 0.82rem;
  margin-top: 6px;
}

.module-lg {
  grid-column: span 4;
}

.module-sm {
  grid-column: span 2;
}

.module-chart {
  grid-column: span 6;
  padding-top: 18px;
}

.chart-lines {
  display: grid;
  gap: 8px;
}

.chart-line {
  background: linear-gradient(90deg, rgba(11, 109, 255, 0.16), rgba(0, 163, 255, 0.32));
  border-radius: 999px;
  height: 7px;
  overflow: hidden;
  position: relative;
}

.chart-line::after {
  animation: pulseLine 4.8s ease-in-out infinite;
  background: linear-gradient(90deg, rgba(11, 109, 255, 0.92), rgba(0, 163, 255, 0.92));
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: var(--line-width, 50%);
}

.chart-line:nth-child(1) {
  --line-width: 76%;
}

.chart-line:nth-child(2) {
  --line-width: 62%;
}

.chart-line:nth-child(3) {
  --line-width: 88%;
}

.chart-line:nth-child(4) {
  --line-width: 54%;
}

.float-chip {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 14px;
  box-shadow: 0 15px 28px rgba(15, 34, 67, 0.14);
  color: var(--text-0);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 730;
  min-height: 36px;
  padding: 0 12px;
  position: absolute;
  z-index: 2;
}

.float-chip strong {
  color: var(--accent-0);
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 0.95rem;
  margin-right: 7px;
}

.chip-a {
  animation: floatY 4.8s ease-in-out infinite;
  right: -18px;
  top: 10%;
}

.chip-b {
  animation: floatY 5.4s ease-in-out infinite reverse;
  bottom: 12%;
  left: -32px;
}

.chip-c {
  animation: floatY 6.1s ease-in-out infinite;
  bottom: -18px;
  right: 12%;
}

.hero-ticker {
  margin-top: 44px;
}

.hero-ticker-track {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 29, 49, 0.09);
  border-radius: var(--radius-lg);
  color: var(--text-1);
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  letter-spacing: 0.02em;
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}

.hero-ticker-track span {
  animation: tickerSlide 22s linear infinite;
  display: inline-block;
  padding-left: 100%;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-head {
  margin-bottom: 34px;
  max-width: 720px;
}

.section-head h2 {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-top: 12px;
}

.section-head p {
  color: var(--text-1);
  margin-top: 14px;
}

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

.metric-card {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 29, 49, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  padding: 24px 22px;
  position: relative;
}

.metric-card::before {
  background: linear-gradient(120deg, rgba(11, 109, 255, 0.12), rgba(0, 163, 255, 0));
  content: "";
  inset: 0;
  position: absolute;
}

.metric-label,
.metric-value,
.metric-detail {
  position: relative;
  z-index: 1;
}

.metric-label {
  color: var(--text-2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.metric-value {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-top: 10px;
}

.metric-detail {
  color: var(--text-1);
  font-size: 0.9rem;
  margin-top: 9px;
}

.platform {
  overflow: hidden;
}

.feature-layout {
  align-items: flex-start;
  display: grid;
  gap: 26px;
  grid-template-columns: 0.9fr 1.1fr;
}

.feature-intro {
  position: sticky;
  top: 128px;
}

.feature-intro h3 {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-top: 12px;
}

.feature-intro p {
  color: var(--text-1);
  margin-top: 15px;
}

.inline-link {
  align-items: center;
  color: var(--accent-0);
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 730;
  gap: 6px;
  margin-top: 20px;
}

.inline-link::after {
  content: ">";
  font-size: 0.9rem;
  transform: translateY(-1px);
}

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

.feature-card {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 29, 49, 0.09);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(12, 28, 56, 0.08);
  display: block;
  min-height: 206px;
  overflow: hidden;
  padding: 22px;
  position: relative;
  transition: transform 300ms var(--ease-standard), box-shadow 300ms var(--ease-standard), border-color 300ms var(--ease-standard);
}

.feature-card:hover {
  border-color: rgba(11, 109, 255, 0.4);
  box-shadow: 0 24px 40px rgba(12, 28, 56, 0.14);
  transform: translateY(-5px);
}

.feature-card::before {
  background: linear-gradient(135deg, rgba(11, 109, 255, 0.12), rgba(0, 163, 255, 0.02));
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 250ms ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  align-items: center;
  background: linear-gradient(140deg, rgba(11, 109, 255, 0.16), rgba(0, 163, 255, 0.16));
  border: 1px solid rgba(11, 109, 255, 0.26);
  border-radius: 14px;
  color: var(--accent-0);
  display: inline-flex;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  height: 38px;
  justify-content: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: 38px;
}

.feature-card h4,
.feature-card p,
.feature-meta {
  position: relative;
  z-index: 1;
}

.feature-card h4 {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-top: 17px;
}

.feature-card p {
  color: var(--text-1);
  font-size: 0.94rem;
  margin-top: 11px;
}

.feature-meta {
  color: var(--accent-0);
  display: inline-flex;
  font-size: 0.87rem;
  font-weight: 730;
  margin-top: 18px;
}

.journey {
  background: linear-gradient(180deg, rgba(240, 245, 252, 0.65), rgba(255, 255, 255, 0));
}

.journey-layout {
  align-items: flex-start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
}

.journey-sticky {
  position: sticky;
  top: 130px;
}

.journey-screen {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 29, 49, 0.1);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  min-height: 330px;
  padding: 30px;
  position: relative;
}

.journey-screen::before,
.journey-screen::after {
  border-radius: 28px;
  content: "";
  pointer-events: none;
  position: absolute;
}

.journey-screen::before {
  background: radial-gradient(circle at 18% 12%, rgba(11, 109, 255, 0.22), transparent 56%);
  inset: 0;
}

.journey-screen::after {
  border: 1px solid rgba(255, 255, 255, 0.7);
  inset: 6px;
}

.journey-meta,
.journey-screen h3,
.journey-screen p {
  position: relative;
  z-index: 1;
}

.journey-meta {
  color: var(--accent-0);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.journey-screen h3 {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(1.5rem, 2.1vw, 2.2rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin-top: 16px;
}

.journey-screen p {
  color: var(--text-1);
  margin-top: 14px;
}

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

.journey-step {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(17, 29, 49, 0.1);
  border-radius: 20px;
  padding: 23px 22px;
  transition: transform 260ms var(--ease-standard), box-shadow 260ms var(--ease-standard), border-color 260ms var(--ease-standard);
}

.journey-step.is-active {
  border-color: rgba(11, 109, 255, 0.42);
  box-shadow: 0 14px 30px rgba(12, 29, 59, 0.12);
  transform: translateY(-3px);
}

.journey-step-head {
  align-items: center;
  display: flex;
  gap: 12px;
}

.journey-step-index {
  align-items: center;
  background: linear-gradient(140deg, rgba(11, 109, 255, 0.16), rgba(0, 163, 255, 0.16));
  border-radius: 12px;
  color: var(--accent-0);
  display: inline-flex;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  height: 34px;
  justify-content: center;
  width: 42px;
}

.journey-step h4 {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.journey-step p {
  color: var(--text-1);
  margin-top: 12px;
}

.cta-strip {
  align-items: center;
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.2), transparent 42%),
    linear-gradient(140deg, #0a61e0 0%, #028fda 52%, #00a8e8 100%);
  border-radius: 30px;
  box-shadow: 0 24px 48px rgba(8, 66, 160, 0.28);
  color: #ffffff;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  overflow: hidden;
  padding: 36px;
  position: relative;
}

.cta-strip::before {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 24px;
  content: "";
  inset: 7px;
  pointer-events: none;
  position: absolute;
}

.cta-strip h2 {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-top: 12px;
  max-width: 580px;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.faq-grid {
  align-items: flex-start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.faq-intro p {
  color: var(--text-1);
  margin-top: 16px;
  max-width: 520px;
}

.faq-title {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-top: 12px;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 29, 49, 0.1);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(16, 31, 57, 0.08);
  overflow: hidden;
}

.faq-question {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--text-0);
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  justify-content: space-between;
  line-height: 1.35;
  padding: 18px 20px;
  text-align: left;
  width: 100%;
}

.faq-plus {
  color: var(--accent-0);
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 1.24rem;
  line-height: 1;
  transition: transform 260ms var(--ease-standard);
}

.faq-answer {
  color: var(--text-1);
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 300ms var(--ease-standard), padding 300ms var(--ease-standard);
}

.faq-answer p {
  padding-bottom: 20px;
}

.faq-item.is-open .faq-answer {
  max-height: 220px;
  padding-top: 2px;
}

.faq-item.is-open .faq-plus {
  transform: rotate(45deg);
}

.footer {
  border-top: 1px solid rgba(17, 29, 49, 0.08);
  margin-top: 42px;
  padding: 34px 0 44px;
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

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

.footer-link {
  border-radius: 999px;
  color: var(--text-1);
  font-size: 0.9rem;
  font-weight: 650;
  padding: 8px 13px;
}

.footer-link:hover {
  background: rgba(11, 109, 255, 0.08);
  color: var(--text-0);
}

.footer-note {
  color: var(--text-2);
  font-size: 0.82rem;
  margin-top: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 750ms var(--ease-standard), transform 750ms var(--ease-standard);
}

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

.parallax-item {
  transform: translateY(var(--parallax-y, 0px));
  transition: transform 180ms linear;
  will-change: transform;
}

@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.75;
  }

  50% {
    opacity: 1;
  }
}

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

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

@keyframes tickerSlide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 1130px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 510px;
  }

  .feature-layout,
  .journey-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .feature-intro,
  .journey-sticky {
    position: static;
  }

  .section {
    padding: 86px 0;
  }
}

@media (max-width: 1160px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .mobile-drawer {
    display: block;
  }

  .hero {
    padding-top: 62px;
  }

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

@media (max-width: 760px) {
  .shell {
    padding: 0 18px;
  }

  .topbar {
    padding: 12px 0;
  }

  .nav-shell {
    border-radius: 22px;
    min-height: 62px;
    padding: 10px 12px 10px 16px;
  }

  main {
    padding-top: 92px;
  }

  .hero {
    padding-bottom: 34px;
  }

  .hero-title {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 450px;
  }

  .mock-dashboard {
    min-height: 430px;
    padding: 16px;
  }

  .dashboard-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .module-lg {
    grid-column: span 4;
  }

  .module-sm {
    grid-column: span 2;
  }

  .module-chart {
    grid-column: span 4;
  }

  .chip-a {
    right: -8px;
  }

  .chip-b {
    left: -6px;
  }

  .chip-c {
    right: 5%;
  }

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

  .cta-strip {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
  }

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

@media (max-width: 540px) {
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .float-chip {
    font-size: 0.72rem;
  }

  .faq-question {
    font-size: 0.94rem;
    padding: 16px;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-answer p {
    padding-bottom: 17px;
  }
}

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

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