:root {
  --midnight: #0c0f1a;
  --navy: #111827;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --mint: #10f0a0;
  --steel: #94a3b8;
  --muted: #6b7280;
  --smoke: #f1f5f9;
  --glass: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.09);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--smoke);
  background: var(--midnight);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
img, svg, video { max-width: 100%; }
section { scroll-margin-top: 84px; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100vw - 1160px) / 2));
  background: rgba(12, 15, 26, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand strong {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 24px;
  line-height: 1;
}
.brand small { display: block; margin-top: 4px; color: var(--steel); font-size: 11px; }
.brand-mark {
  position: relative;
  width: 38px;
  height: 31px;
  flex: 0 0 auto;
}
.brand-mark i {
  position: absolute;
  left: 0;
  width: 32px;
  height: 9px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--mint));
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.45);
}
.brand-mark i:nth-child(1) { top: 0; transform: translateX(0); }
.brand-mark i:nth-child(2) { top: 11px; transform: translateX(6px); }
.brand-mark i:nth-child(3) { top: 22px; transform: translateX(2px); }
.nav-links { display: flex; gap: 24px; color: #cbd5e1; font-size: 14px; }
.nav-links a:hover { color: white; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 124px 0 66px;
  background: radial-gradient(circle at 72% 36%, rgba(37, 99, 235, 0.16), transparent 31%), var(--midnight);
  overflow: hidden;
}
.dot-grid {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background-image: radial-gradient(rgba(6, 182, 212, 0.34) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 72%);
  animation: pulseGrid 5s ease-in-out infinite;
}
.glow-area::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: var(--glow-x, 50%);
  top: var(--glow-y, 45%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 68%);
  pointer-events: none;
}
.particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(16, 240, 160, 0.6);
  animation: drift 12s linear infinite;
}
.particles span:nth-child(1) { left: 10%; top: 28%; }
.particles span:nth-child(2) { left: 82%; top: 20%; animation-delay: -3s; }
.particles span:nth-child(3) { left: 70%; top: 78%; animation-delay: -7s; }
.particles span:nth-child(4) { left: 34%; top: 66%; animation-delay: -5s; }
.particles span:nth-child(5) { left: 92%; top: 54%; animation-delay: -9s; }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 54px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(37, 99, 235, 0.75);
  background: rgba(37, 99, 235, 0.1);
  border-radius: 999px;
  padding: 9px 13px;
  color: #dbeafe;
  font-size: 13px;
  font-weight: 700;
}
h1, h2, h3 { margin: 0; }
h1, .section-title, .final-cta h2 {
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: 0;
}
h1 {
  max-width: 780px;
  margin-top: 24px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.98;
  font-weight: 800;
}
#typewriter {
  display: inline-block;
  min-width: 16ch;
  min-height: 1em;
  color: var(--mint);
  text-shadow: 0 0 24px rgba(16, 240, 160, 0.28);
  vertical-align: baseline;
}
.hero-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--steel);
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.4);
}
.btn-secondary { border: 1px solid var(--blue); background: transparent; color: white; }
.btn-mint { width: 100%; color: #03130d; background: var(--mint); box-shadow: 0 0 24px rgba(16, 240, 160, 0.32); }
.pulse { animation: pulseShadow 2.4s ease-in-out infinite; }
.social-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 22px;
  color: var(--steel);
  font-size: 14px;
}
.social-proof span::first-letter { color: var(--mint); }

.dashboard-orbit { position: relative; min-height: 520px; perspective: 1100px; }
.dashboard-card {
  position: absolute;
  inset: 62px 0 auto auto;
  width: min(460px, 100%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: rotateY(-13deg) rotateX(7deg);
  animation: floatPanel 3s ease-in-out infinite;
}
.panel-top, .task-row, .metric-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 8px;
}
.panel-top, .task-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px; color: var(--steel); }
.panel-top strong, .task-row b { color: var(--mint); font-family: "JetBrains Mono", monospace; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.metric-grid article { padding: 18px; animation: cardIn 700ms ease both; }
.metric-grid article:nth-child(2) { animation-delay: 180ms; }
.metric-grid small { display: block; color: var(--steel); }
.metric-grid strong { display: block; margin-top: 8px; font-size: 24px; }
.bars {
  height: 160px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 22px 10px;
  margin: 18px 0;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.08), rgba(16, 240, 160, 0.03));
}
.bars i { flex: 1; border-radius: 999px 999px 4px 4px; background: linear-gradient(180deg, var(--cyan), var(--blue)); }
.task-row span { width: 9px; height: 9px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 14px var(--mint); }
.floating-note, .floating-chip {
  position: absolute;
  right: -4px;
  z-index: 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 15px;
  background: rgba(17, 24, 39, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  animation: softFloat 3.5s ease-in-out infinite;
}
.floating-note { top: 52px; }
.floating-chip { bottom: 70px; left: 24px; right: auto; color: var(--mint); font-family: "JetBrains Mono", monospace; font-size: 13px; }

.section { padding: 104px 0; position: relative; }
.pain, .process, .niches, .faq { background: var(--navy); }
.solution, .plans, .testimonials, .final-cta { background: var(--midnight); }
.section-title {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}
.section-title.left { margin-left: 0; text-align: left; }
.pain-grid, .plan-grid, .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.glass-card, .plan-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass);
  padding: 24px;
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.glass-card:hover, .plan-card:hover { transform: translateY(-8px); border-color: rgba(6, 182, 212, 0.35); box-shadow: 0 18px 54px rgba(6, 182, 212, 0.12); }
.danger-icon { color: #ef4444; font-size: 26px; }
.glass-card h3, .plan-card h3 { margin-top: 16px; font-size: 21px; }
.glass-card p, .plan-card p { color: var(--steel); line-height: 1.65; }
.connector {
  width: 2px;
  height: 72px;
  margin: 48px auto -48px;
  background: linear-gradient(var(--cyan), transparent);
  box-shadow: 0 0 18px var(--cyan);
}
.connector::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin-left: -5px;
  transform: rotate(45deg) translateY(56px);
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
}

.two-col { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 52px; align-items: center; }
.lead { color: var(--steel); line-height: 1.8; font-size: 17px; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.check-list li { color: #dbeafe; }
.check-list li::before { content: "✦"; color: var(--mint); margin-right: 10px; }
.mockup {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 16px;
  box-shadow: var(--shadow);
}
.tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 14px; }
.tabs button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--steel);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}
.tabs button.active { color: white; border-color: var(--cyan); background: rgba(6, 182, 212, 0.14); }
.mock-screen {
  min-height: 350px;
  border-radius: 8px;
  padding: 18px;
  background: #0a1222;
  overflow: hidden;
}
.screen-grid { display: grid; gap: 12px; animation: screenIn 240ms ease; }
.screen-row, .screen-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
}
.screen-row span, .screen-row b { min-width: 0; }
.screen-row span { overflow-wrap: anywhere; }
.screen-row b { flex: 0 0 auto; }
.screen-card { min-height: 86px; display: block; }
.screen-card b, .screen-row b { color: var(--mint); }
.screen-bars { display: flex; align-items: end; height: 120px; gap: 10px; }
.screen-bars i { flex: 1; border-radius: 8px 8px 3px 3px; background: linear-gradient(var(--cyan), var(--blue)); }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.timeline::before, .timeline-progress {
  content: "";
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
}
.timeline-progress { width: 0; right: auto; background: linear-gradient(90deg, var(--blue), var(--cyan), var(--mint)); transition: width 1200ms ease; box-shadow: 0 0 14px var(--cyan); }
.timeline.active .timeline-progress { width: 84%; }
.timeline article { position: relative; z-index: 2; text-align: center; padding: 0 8px; }
.timeline article > span {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(37, 99, 235, 0.65);
  border-radius: 50%;
  color: white;
  background: #0f172a;
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
}
.timeline b { display: block; margin-top: 18px; font-size: 24px; }
.timeline h3 { margin-top: 10px; font-size: 18px; }
.timeline p { color: var(--steel); font-size: 14px; line-height: 1.55; }

.plan-grid { align-items: stretch; overflow: visible; }
.plan-card { min-height: 330px; display: flex; flex-direction: column; }
.plan-badge, .choice { color: var(--steel); font-size: 13px; font-weight: 800; }
.choice { align-self: flex-start; margin-bottom: 12px; color: #06120e; background: var(--mint); border-radius: 999px; padding: 7px 10px; }
.plan-icon { margin-top: 18px; font-size: 32px; }
.plan-card a { margin-top: auto; color: var(--mint); font-weight: 800; }
.featured {
  position: relative;
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(var(--midnight), var(--midnight)) padding-box, linear-gradient(135deg, var(--blue), var(--cyan)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 0 38px rgba(37, 99, 235, 0.18);
}
.business-models {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 22px;
}
.business-models div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}
.business-models span { display: block; margin-top: 6px; color: var(--steel); }

.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 20px 0;
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
}

.testimonial .avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  color: #06120e;
  font-weight: 900;
}
.testimonial small { color: var(--steel); }
.testimonial p { color: #facc15; margin: 12px 0; }
.testimonial blockquote { margin: 0; color: #dbeafe; line-height: 1.7; }
.testimonial b { display: block; margin-top: 18px; color: var(--mint); }
.logo-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 34px;
  color: var(--muted);
  font-weight: 800;
}
.stats-band { padding: 56px 0; background: linear-gradient(135deg, #1e3a5f, #0c4a6e); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats-grid strong { display: block; font-family: "JetBrains Mono", monospace; font-size: clamp(34px, 5vw, 58px); }
.stats-grid span { color: #cbd5e1; }

.faq-wrap { max-width: 850px; }
.accordion {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.accordion button {
  width: 100%;
  min-height: 64px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.accordion button span { color: var(--mint); font-size: 24px; }
.accordion div {
  max-height: 0;
  overflow: hidden;
  border-bottom: 1px solid transparent;
  transition: max-height 260ms ease;
}
.accordion div p { margin: 0; padding: 0 20px 18px; color: var(--steel); line-height: 1.7; }
.accordion button.open + div { max-height: 180px; border-bottom-color: var(--line); }

.final-cta { overflow: hidden; }
.cta-inner { position: relative; z-index: 2; max-width: 720px; text-align: center; }
.final-cta h2 { font-size: clamp(34px, 5vw, 52px); line-height: 1.05; }
.final-cta p { color: var(--steel); font-size: 18px; line-height: 1.7; }
.lead-form {
  max-width: 480px;
  display: grid;
  gap: 12px;
  margin: 28px auto 16px;
  text-align: left;
}
.lead-form label { display: grid; gap: 8px; color: #dbeafe; font-size: 14px; font-weight: 700; }
.lead-form input, .lead-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}
.lead-form select option { color: #0c0f1a; }
.lead-form input:focus, .lead-form select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.14); }
.final-cta small { color: var(--steel); }

.site-footer { padding: 54px 0 22px; background: #080b14; }
.site-footer .brand { display: inline-flex; align-items: flex-start; gap: 14px; }
.site-footer .brand-mark { margin-top: 2px; flex: 0 0 38px; }
.site-footer .brand > span:last-child { min-width: 0; padding-left: 2px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.7fr 0.9fr 1fr; gap: 28px; }
.footer-grid h3 { margin-bottom: 14px; font-size: 16px; }
.footer-grid a, .footer-grid p { display: block; margin: 10px 0; color: var(--steel); }
.socials { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.copyright { width: min(1160px, calc(100% - 40px)); margin: 34px auto 0; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 640ms ease, transform 640ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.cursor-dot {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.65);
}

@keyframes pulseGrid { 50% { opacity: 0.72; } }
@keyframes drift { to { transform: translate3d(-40px, -80px, 0); opacity: 0.2; } }
@keyframes floatPanel { 50% { transform: translateY(-6px) rotateY(-13deg) rotateX(7deg); } }
@keyframes tabletPanelFloat { 50% { transform: translateX(-50%) translateY(-6px) rotateY(-8deg) rotateX(5deg); } }
@keyframes softFloat { 50% { transform: translateY(-6px); } }
@keyframes cardIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes screenIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulseShadow { 50% { box-shadow: 0 0 38px rgba(37, 99, 235, 0.58); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 1020px) {
  .site-header { height: auto; min-height: 76px; padding-top: 10px; padding-bottom: 10px; }
  .nav-links {
    display: flex;
    overflow-x: auto;
    max-width: 46vw;
    gap: 10px;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a {
    flex: 0 0 auto;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.04);
  }
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .hero-grid { gap: 34px; }
  .dashboard-orbit {
    width: min(620px, 100%);
    min-height: 420px;
    margin: 0 auto;
  }
  .dashboard-card {
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotateY(-8deg) rotateX(5deg);
    animation-name: tabletPanelFloat;
  }
  .pain-grid, .plan-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: 1fr; text-align: left; }
  .timeline::before, .timeline-progress { top: 0; bottom: 0; left: 31px; right: auto; width: 2px; height: 100%; }
  .timeline-progress { height: 0; transition: height 1200ms ease; }
  .timeline.active .timeline-progress { width: 2px; height: 100%; }
  .timeline article { display: grid; grid-template-columns: 64px 1fr; gap: 0 18px; text-align: left; }
  .timeline article > span { grid-row: span 3; }
  .timeline b { margin-top: 0; }
  .footer-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .container { width: min(100% - 28px, 1160px); }
  section { scroll-margin-top: 118px; }
  .site-header {
    min-height: 96px;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 14px 9px;
  }
  .brand strong { font-size: 20px; }
  .brand small { display: none; }
  .site-header .brand { flex: 1 0 auto; }
  .nav-links {
    order: 3;
    width: 100%;
    max-width: none;
    padding-bottom: 2px;
  }
  .nav-links a {
    min-height: 32px;
    padding: 0 11px;
    font-size: 12px;
  }
  .hero { min-height: auto; padding: 134px 0 58px; }
  .hero-grid { gap: 26px; }
  .badge {
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
  }
  h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.8vw, 46px);
    line-height: 1.04;
  }
  #typewriter {
    display: block;
    width: 16ch;
    max-width: 100%;
  }
  .hero-copy p { font-size: 16px; line-height: 1.62; }
  .hero-actions .btn { width: 100%; }
  .social-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    font-size: 13px;
  }
  .dashboard-orbit {
    display: block;
    min-height: 0;
    perspective: none;
    padding: 8px 0 0;
  }
  .dashboard-card {
    position: relative;
    inset: auto;
    left: auto;
    width: 100%;
    padding: 16px;
    transform: none;
    animation: mobileFloat 3.4s ease-in-out infinite;
  }
  .metric-grid { gap: 10px; }
  .metric-grid article { padding: 13px; }
  .metric-grid strong { font-size: clamp(18px, 5.5vw, 22px); }
  .bars { height: 118px; gap: 8px; padding: 18px 8px; margin: 14px 0; }
  .panel-top, .task-row {
    align-items: flex-start;
    padding: 12px;
    font-size: 13px;
  }
  .floating-note, .floating-chip {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: 10px auto 0;
    padding: 11px 12px;
    animation: mobileFloat 3.8s ease-in-out infinite;
    font-size: 13px;
  }
  .section { padding: 76px 0; }
  .section-title {
    margin-bottom: 30px;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.12;
  }
  .section-title.left { text-align: left; }
  .glass-card, .plan-card { padding: 20px; }
  .pain-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .plan-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 12px;
    margin-right: -14px;
    scrollbar-width: none;
  }
  .plan-grid::-webkit-scrollbar { display: none; }
  .plan-card { min-width: 82%; scroll-snap-align: start; }
  .mockup { padding: 12px; }
  .tabs { grid-template-columns: repeat(2, 1fr); gap: 7px; }
  .tabs button { min-height: 46px; }
  .mock-screen { min-height: 300px; padding: 12px; }
  .screen-row, .screen-card {
    align-items: flex-start;
    padding: 12px;
    font-size: 13px;
  }
  .screen-bars { height: 104px; gap: 7px; }
  .timeline { gap: 20px; }
  .timeline article {
    grid-template-columns: 54px 1fr;
    gap: 0 14px;
    padding: 0;
  }
  .timeline article > span {
    width: 54px;
    height: 54px;
  }
  .timeline::before, .timeline-progress { left: 26px; }
  .timeline p { margin-bottom: 0; }
  .logo-bar {
    justify-content: flex-start;
    gap: 10px;
  }
  .logo-bar span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 11px;
  }
  .stats-band { padding: 42px 0; }
  .stats-grid { gap: 14px; }
  .stats-grid article {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 18px 12px;
    background: rgba(255, 255, 255, 0.06);
  }
  .accordion button {
    min-height: 58px;
    gap: 14px;
    padding: 12px 14px;
    line-height: 1.35;
  }
  .accordion div p { padding: 0 14px 16px; }
  .final-cta h2 { font-size: clamp(29px, 8.5vw, 38px); }
  .final-cta p { font-size: 16px; }
  .lead-form input, .lead-form select, .btn { min-height: 50px; }
  .business-models, .footer-grid, .stats-grid { grid-template-columns: 1fr; }
  .site-footer { padding-top: 42px; }
  .footer-grid { gap: 22px; }
  .site-footer .brand small { display: block; }
  .site-footer .brand { align-items: center; }
  .socials { gap: 10px; }
  .socials a {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 10px;
  }
  .cursor-dot { display: none; }
}

@media (max-width: 430px) {
  .container { width: min(100% - 24px, 1160px); }
  .hero { padding-top: 130px; }
  h1 { font-size: clamp(32px, 10.2vw, 40px); }
  .btn { padding: 0 16px; font-size: 14px; }
  .metric-grid { grid-template-columns: 1fr; }
  .bars { height: 96px; }
  .plan-card { min-width: 88%; }
  .business-models div { text-align: left; }
  .marquee span { padding: 10px 13px; }
}

@media (max-width: 370px) {
  .site-header { min-height: 104px; }
  .hero { padding-top: 140px; }
  h1 { font-size: 31px; }
  .brand-mark { transform: scale(0.9); transform-origin: left center; }
  .brand strong { font-size: 18px; }
  .nav-links a { font-size: 11px; }
  .tabs button { font-size: 13px; }
}

@keyframes mobileFloat {
  50% { transform: translateY(-5px); }
}

@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;
  }
}
