/* StockBook Professional Landing Page */

:root {
  --bg: #f6f8ff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --primary: #2563eb;
  --primary-2: #7c3aed;
  --accent: #14b8a6;
  --gold: #f59e0b;
  --dark: #0b1120;
  --border: rgba(15, 23, 42, 0.1);
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.14);
  --radius: 30px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(circle at 10% 10%, rgba(37, 99, 235, .18), transparent 28%),
    radial-gradient(circle at 90% 5%, rgba(20, 184, 166, .16), transparent 25%),
    radial-gradient(circle at 60% 90%, rgba(124, 58, 237, .15), transparent 28%),
    linear-gradient(180deg, #f8fbff, #f5f7ff);
}

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

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

.noise {
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: .32;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  pointer-events: none;
  z-index: -2;
  background: radial-gradient(circle, rgba(37, 99, 235, .14), transparent 62%);
  transform: translate(-50%, -50%);
  opacity: .9;
}

.orb {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  filter: blur(34px);
  opacity: .32;
  pointer-events: none;
  z-index: -1;
  animation: drift 12s ease-in-out infinite alternate;
}

.orb-blue {
  left: -120px;
  top: 140px;
  background: var(--primary);
}

.orb-teal {
  right: -140px;
  top: 260px;
  background: var(--accent);
  animation-delay: -4s;
}

.orb-purple {
  left: 40%;
  bottom: -180px;
  background: var(--primary-2);
  animation-delay: -7s;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: rgba(246, 248, 255, .78);
  border-bottom: 1px solid var(--border);
  transition: .25s ease;
}

.nav.scrolled {
  box-shadow: 0 18px 50px rgba(15, 23, 42, .08);
}

.nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -.05em;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 14px 34px rgba(37, 99, 235, .3);
  transform: rotate(-4deg);
  animation: logoPop 4s ease-in-out infinite;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
  transition: .25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
  border: 0;
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .08);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding: 0 0 18px;
}

.mobile-menu.open {
  display: grid;
  gap: 10px;
}

.mobile-menu a {
  padding: 14px 16px;
  background: #fff;
  border-radius: 16px;
  font-weight: 800;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: .25s ease;
  white-space: nowrap;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 46px rgba(37, 99, 235, .30);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 26px 60px rgba(37, 99, 235, .38);
}

.btn-glass {
  background: rgba(255,255,255,.86);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-glass:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, .1);
}

.btn-white {
  background: #fff;
  color: #1d4ed8;
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, .45);
  color: #fff;
}

.full {
  width: 100%;
}

.hero {
  min-height: calc(100vh - 76px);
  padding: 72px 0 64px;
}

.hero-grid {
  min-height: calc(100vh - 210px);
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 54px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  background: rgba(37,99,235,.08);
  color: #1d4ed8;
  border: 1px solid rgba(37,99,235,.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 22px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(20, 184, 166, .12);
  animation: blink 1.4s ease-in-out infinite;
}

h1 {
  font-size: clamp(46px, 6.8vw, 88px);
  line-height: .95;
  letter-spacing: -.085em;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200%;
  animation: shine 5s ease infinite;
}

.hero-text {
  color: var(--muted);
  font-size: 18px;
  max-width: 620px;
  margin-bottom: 30px;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

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

.trust-row span {
  background: rgba(255,255,255,.7);
  border: 1px solid var(--border);
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  min-height: 650px;
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1100px;
}

.orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, .12);
}

.orbit-one {
  width: 520px;
  height: 520px;
  animation: spin 24s linear infinite;
}

.orbit-two {
  width: 420px;
  height: 420px;
  animation: spinReverse 28s linear infinite;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  box-shadow: 0 0 30px currentColor;
}

.orbit-one::before {
  color: var(--accent);
  background: var(--accent);
  left: 80px;
  top: 38px;
}

.orbit-one::after {
  color: var(--primary);
  background: var(--primary);
  right: 56px;
  bottom: 80px;
}

.orbit-two::before {
  color: var(--primary-2);
  background: var(--primary-2);
  right: 20px;
  top: 160px;
}

.orbit-two::after {
  color: var(--gold);
  background: var(--gold);
  left: 80px;
  bottom: 54px;
}

.phone {
  width: 326px;
  min-height: 650px;
  border-radius: 48px;
  background: #0b1120;
  padding: 14px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 3;
  transform: rotateY(-10deg) rotateX(4deg);
  animation: phoneFloat 5s ease-in-out infinite;
}

.phone::before {
  content: "";
  position: absolute;
  inset: 9px 80px auto;
  height: 22px;
  border-radius: 0 0 16px 16px;
  background: #0b1120;
  z-index: 5;
}

.screen {
  background: #f8fafc;
  min-height: 622px;
  border-radius: 38px;
  padding: 22px;
  overflow: hidden;
  position: relative;
}

.screen::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px;
  height: 170px;
  background: linear-gradient(180deg, transparent, rgba(37,99,235,.1));
  pointer-events: none;
}

.app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.app-top span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 900;
}

.app-top h3 {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.profile-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.6);
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 14px;
  border-radius: 21px;
  box-shadow: 0 12px 34px rgba(15,23,42,.06);
  animation: cardBob 4s ease-in-out infinite;
}

.stat-card:nth-child(2),
.stat-card:nth-child(4) {
  animation-delay: -1.7s;
}

.stat-card small {
  color: var(--muted);
  font-weight: 900;
  font-size: 11px;
}

.stat-card strong {
  display: block;
  font-size: 22px;
  letter-spacing: -.06em;
  margin-top: 4px;
}

.ai-card {
  background: linear-gradient(135deg, #172033, #0b1120);
  color: #fff;
  padding: 18px;
  border-radius: 25px;
  margin: 14px 0;
  position: relative;
  overflow: hidden;
}

.ai-card::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 130px;
  height: 130px;
  background: rgba(20,184,166,.35);
  border-radius: 50%;
  animation: glow 3s ease-in-out infinite;
}

.ai-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ai-card-head span,
.ai-card-head b {
  position: relative;
  z-index: 1;
}

.ai-card-head b {
  font-size: 10px;
  padding: 4px 8px;
  background: rgba(20, 184, 166, .18);
  border: 1px solid rgba(20, 184, 166, .4);
  border-radius: 999px;
}

.ai-card p {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  margin-top: 5px;
}

.voice-line {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 8px;
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 800;
}

.bars {
  display: flex;
  gap: 3px;
  align-items: center;
}

.bars span {
  width: 4px;
  border-radius: 99px;
  background: var(--accent);
  animation: pulse 1s ease-in-out infinite;
}

.bars span:nth-child(1) { height: 10px; }
.bars span:nth-child(2) { height: 18px; animation-delay: .15s; }
.bars span:nth-child(3) { height: 12px; animation-delay: .3s; }
.bars span:nth-child(4) { height: 22px; animation-delay: .45s; }

.activity-list {
  display: grid;
  gap: 10px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 19px;
  padding: 12px;
  animation: slideItem 7s ease-in-out infinite;
}

.activity-item:nth-child(2) {
  animation-delay: -2s;
}

.activity-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(37,99,235,.1);
  display: grid;
  place-items: center;
}

.activity-item b {
  display: block;
  font-size: 13px;
}

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

.floating-pill {
  position: absolute;
  z-index: 4;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: 0 18px 50px rgba(15,23,42,.12);
  animation: floatCard 4.8s ease-in-out infinite;
}

.floating-pill small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.floating-pill strong {
  font-weight: 900;
}

.pill-left {
  left: 20px;
  top: 150px;
}

.pill-right {
  right: 2px;
  bottom: 140px;
  animation-delay: -2s;
}

.mini-chart {
  position: absolute;
  left: 24px;
  bottom: 66px;
  z-index: 4;
  width: 150px;
  height: 96px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(15, 23, 42, .12);
  display: flex;
  align-items: end;
  gap: 8px;
  backdrop-filter: blur(18px);
}

.chart-bar {
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  animation: growBar 1.8s ease both;
}

.section,
.metrics-section {
  padding: 82px 0;
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 44px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #93c5fd;
}

.section-head h2,
.showcase-copy h2,
.cta-card h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -.065em;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: .8s cubic-bezier(.2,.8,.2,1);
}

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

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

.metric {
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 14px 45px rgba(15,23,42,.06);
}

.metric strong {
  font-size: 34px;
  letter-spacing: -.06em;
  display: block;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.marquee {
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid var(--border);
  background: rgba(255,255,255,.42);
}

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

.marquee span {
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 900;
  color: var(--muted);
  box-shadow: 0 8px 20px rgba(15,23,42,.04);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.price-card,
details {
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  box-shadow: 0 16px 50px rgba(15,23,42,.07);
}

.feature-card {
  border-radius: var(--radius);
  padding: 28px;
  transition: .28s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,.08), transparent 45%);
  opacity: 0;
  transition: .28s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(15,23,42,.12);
}

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

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 19px;
  display: grid;
  place-items: center;
  background: rgba(37,99,235,.1);
  font-size: 25px;
  margin-bottom: 18px;
  position: relative;
}

.feature-card h3,
.feature-card p {
  position: relative;
}

.feature-card h3 {
  font-size: 20px;
  letter-spacing: -.035em;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--muted);
  font-size: 15px;
}

.ai-showcase {
  background: linear-gradient(135deg, #0b1120, #151f35);
  color: #fff;
  border-radius: 44px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.ai-showcase::before {
  content: "";
  position: absolute;
  inset: -130px auto auto -130px;
  width: 330px;
  height: 330px;
  background: rgba(37,99,235,.48);
  border-radius: 50%;
  filter: blur(34px);
}

.showcase-copy,
.steps {
  position: relative;
}

.showcase-copy p {
  color: rgba(255,255,255,.72);
  margin-bottom: 24px;
}

.steps {
  display: grid;
  gap: 14px;
}

.step-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 18px;
  transition: .25s ease;
}

.step-card:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,.12);
}

.step-card span {
  color: #93c5fd;
  font-weight: 900;
  font-size: 12px;
}

.step-card b {
  display: block;
  margin: 4px 0;
}

.step-card p {
  color: rgba(255,255,255,.64);
  font-size: 14px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline-line {
  position: absolute;
  height: 2px;
  left: 6%;
  right: 6%;
  top: 34px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: .35;
}

.timeline-item {
  position: relative;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 14px 45px rgba(15,23,42,.06);
}

.timeline-item span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 900;
  margin-bottom: 22px;
  box-shadow: 0 10px 30px rgba(37,99,235,.22);
}

.timeline-item h3 {
  letter-spacing: -.03em;
  margin-bottom: 6px;
}

.timeline-item p {
  color: var(--muted);
  font-size: 14px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  border-radius: var(--radius);
  padding: 30px;
  transition: .25s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-7px);
}

.price-card.popular {
  transform: scale(1.035);
  border: 2px solid var(--primary);
  box-shadow: 0 30px 86px rgba(37,99,235,.18);
}

.popular-label {
  display: inline-flex;
  padding: 7px 10px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(37,99,235,.1);
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 900;
}

.price-card h3 {
  font-size: 24px;
  letter-spacing: -.04em;
}

.price {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -.065em;
  margin: 16px 0;
}

.price span {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  margin: 20px 0 24px;
  font-weight: 700;
}

.price-card li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
  margin-right: 9px;
}

.faq-wrap {
  max-width: 940px;
}

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

details {
  border-radius: 23px;
  padding: 18px 22px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  color: var(--muted);
  margin-top: 10px;
}

.cta-card {
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2), var(--accent));
  background-size: 200%;
  animation: shine 7s ease infinite;
  color: #fff;
  border-radius: 46px;
  padding: 68px 24px;
  box-shadow: 0 32px 90px rgba(37,99,235,.26);
  position: relative;
  overflow: hidden;
}

.cta-card p {
  color: rgba(255,255,255,.86);
  max-width: 660px;
  margin: 0 auto 26px;
}

.cta-actions {
  justify-content: center;
}

.cta-sparkle {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}

.cta-sparkle.one {
  left: -80px;
  top: -120px;
}

.cta-sparkle.two {
  right: -110px;
  bottom: -130px;
}

.footer {
  padding: 38px 0;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

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

@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(40px, -30px, 0) scale(1.12); }
}

@keyframes logoPop {
  0%,100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-5px); }
}

@keyframes blink {
  0%, 100% { opacity: .6; transform: scale(.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes shine {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  to { transform: rotate(-360deg); }
}

@keyframes phoneFloat {
  0%,100% { transform: rotateY(-10deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-4deg) rotateX(2deg) translateY(-14px); }
}

@keyframes cardBob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes glow {
  0%,100% { transform: scale(1); opacity: .8; }
  50% { transform: scale(1.15); opacity: 1; }
}

@keyframes pulse {
  0%,100% { transform: scaleY(.7); opacity: .6; }
  50% { transform: scaleY(1.2); opacity: 1; }
}

@keyframes slideItem {
  0%,100% { transform: translateX(0); }
  50% { transform: translateX(7px); }
}

@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

@keyframes growBar {
  from { transform: scaleY(.2); transform-origin: bottom; opacity: .3; }
  to { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
}

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

@media (max-width: 940px) {
  .nav-links,
  .desktop-cta {
    display: none;
  }

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

  .hero-grid,
  .ai-showcase {
    grid-template-columns: 1fr;
  }

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

  .features-grid,
  .pricing-grid,
  .metrics,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline-line {
    display: none;
  }

  .price-card.popular {
    transform: none;
  }

  .ai-showcase {
    padding: 36px;
    border-radius: 34px;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    padding-top: 46px;
  }

  .hero-grid {
    gap: 20px;
  }

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

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

  .phone {
    width: 292px;
    min-height: 594px;
  }

  .screen {
    min-height: 566px;
    padding: 19px;
  }

  .orbit-one {
    width: 360px;
    height: 360px;
  }

  .orbit-two {
    width: 300px;
    height: 300px;
  }

  .floating-pill,
  .mini-chart {
    display: none;
  }

  .section,
  .metrics-section {
    padding: 58px 0;
  }

  h1 {
    font-size: clamp(44px, 15vw, 70px);
  }
}

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