:root {
  color-scheme: light;
  --ink: #070912;
  --ink-soft: #1a2030;
  --muted: #657085;
  --line: #e4e7ee;
  --paper: #ffffff;
  --paper-soft: #f6f7fb;
  --purple: #7138f5;
  --purple-dark: #4f22c9;
  --purple-soft: #efe9ff;
  --orange: #ff7a18;
  --orange-soft: #fff0e5;
  --court: #dce1ea;
  --green: #19a56b;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(7, 9, 18, 0.14);
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 78px;
  padding: 16px 36px;
  color: #ffffff;
  background: rgba(7, 9, 18, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  font-size: 1.35rem;
  line-height: 1;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}

.brand-word span {
  color: #9c66ff;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 700;
  font-size: 0.98rem;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.84);
  transition: color 160ms ease, transform 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #ffffff;
}

.nav-cta {
  padding: 14px 22px;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(113, 56, 245, 0.32);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: transparent;
  color: #ffffff;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-5px);
}

.menu-toggle span:last-child {
  transform: translateY(5px);
}

.menu-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.section-shell {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(560px, 1.15fr);
  gap: 46px;
  min-height: 690px;
  padding: 54px 0 38px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0 12% auto auto;
  width: 760px;
  height: 460px;
  border: 2px solid var(--court);
  border-radius: 50%;
  transform: translate(18%, -38%) rotate(-18deg);
  opacity: 0.7;
}

.hero::after {
  right: -4%;
  bottom: 42px;
  width: 420px;
  height: 220px;
  border-top: 3px solid var(--orange);
  border-radius: 50% 50% 0 0;
  transform: rotate(-16deg);
  opacity: 0.78;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
  max-width: 570px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-badges span {
  padding: 8px 11px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(7, 9, 18, 0.05);
  font-size: 0.78rem;
  font-weight: 850;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow.orange {
  color: var(--orange);
}

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

h1 {
  margin-bottom: 24px;
  font-size: 4.15rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.hero-lede {
  max-width: 520px;
  margin-bottom: 28px;
  color: #4f5a70;
  font-size: 1.08rem;
}

.hero-proof-line {
  margin: -8px 0 26px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.5;
}

.hero-banner-slider {
  position: relative;
  max-width: 560px;
  margin: -6px 0 26px;
  color: #ffffff;
}

.hero-banner-viewport {
  overflow: hidden;
  background: #08101d;
  border: 1px solid rgba(7, 9, 18, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(7, 9, 18, 0.16);
}

.hero-banner-track {
  display: flex;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-banner-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 156px;
  padding: 22px 24px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(113, 56, 245, 0.18), transparent 38%),
    linear-gradient(145deg, #08101d, #111a2b);
}

.hero-banner-slide::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--orange);
}

.hero-banner-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: #f6cba9;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-banner-title {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.15;
}

.hero-banner-slide p:not(.hero-banner-title) {
  max-width: 440px;
  margin-bottom: 14px;
  color: #c3ccdc;
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-banner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-banner-tags span {
  padding: 7px 9px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 850;
}

.hero-slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.hero-slider-controls button {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.hero-slider-controls button:hover,
.hero-slider-controls button:focus-visible {
  color: #ffffff;
  background: var(--ink);
  transform: translateY(-1px);
}

.hero-slider-dots {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.hero-slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  background: #c3c9d5;
}

.hero-slider-dots button.is-active {
  width: 25px;
  background: var(--purple);
  border-color: var(--purple);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 16px 36px rgba(113, 56, 245, 0.3);
}

.button.dark {
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(7, 9, 18, 0.24);
}

.button.ghost {
  color: var(--ink);
  background: #ffffff;
  border-color: #b8bfcc;
}

.button.ghost.light {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
}

.button.full {
  width: 100%;
}

.button-icon {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  font-size: 0.95rem;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  font-size: 0.94rem;
  line-height: 1.5;
}

.hero-note::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--orange) 2px, transparent 3px);
}

.hero-visual {
  align-self: center;
  min-height: 520px;
}

.phone-frame {
  position: absolute;
  left: 0;
  bottom: 6px;
  z-index: 3;
  width: 230px;
  padding: 10px;
  background: #080a12;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  box-shadow: 0 30px 70px rgba(7, 9, 18, 0.33);
  transform: rotate(-7deg);
}

.phone-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  border-radius: 26px;
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  width: 72px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #050507;
}

.desktop-frame {
  position: absolute;
  right: 0;
  top: 18px;
  width: min(690px, 100%);
  overflow: hidden;
  background: #ffffff;
  border: 10px solid #090c15;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.desktop-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  color: #ffffff;
  background: #090c15;
}

.desktop-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #343b4b;
}

.desktop-topbar span:first-child {
  background: #ff684d;
}

.desktop-topbar span:nth-child(2) {
  background: #ffbf45;
}

.desktop-topbar span:nth-child(3) {
  background: #21c175;
}

.desktop-topbar strong {
  margin-left: 12px;
  font-size: 0.88rem;
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 410px;
  background: #f7f8fb;
}

.dash-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 18px;
  color: #b7c0d4;
  background: #07101e;
  font-size: 0.84rem;
  font-weight: 750;
}

.dash-sidebar img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
}

.dash-main {
  padding: 22px;
}

.dash-heading,
.dash-stats,
.clip-list article,
.demo-controls {
  display: flex;
  align-items: center;
}

.dash-heading {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.small-label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.dash-heading h2 {
  margin: 0;
  font-size: 1.45rem;
}

.status-pill {
  padding: 8px 12px;
  color: #116647;
  background: #dbfaec;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.dash-stats div {
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.dash-stats strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.32rem;
}

.dash-stats span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.timeline-card {
  margin-bottom: 14px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.video-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 104px;
  color: #ffffff;
  background:
    linear-gradient(rgba(7, 9, 18, 0.24), rgba(7, 9, 18, 0.58)),
    linear-gradient(135deg, #1b2333, #4d5570);
  border-radius: var(--radius);
  font-weight: 850;
}

.play-dot {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.timeline {
  position: relative;
  height: 46px;
  margin-top: 14px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #cad1dd 0 9%, #7138f5 9% 12%, #cad1dd 12% 39%, #ff7a18 39% 42%, #cad1dd 42% 69%, #7138f5 69% 72%, #cad1dd 72% 100%);
}

.marker {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 5px 12px rgba(113, 56, 245, 0.32);
}

.marker.one {
  left: 10%;
}

.marker.two {
  left: 40%;
  background: var(--orange);
}

.marker.three {
  left: 70%;
}

.clip-list {
  display: grid;
  gap: 8px;
}

.clip-list article {
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.clip-list span,
.clip-list em {
  color: var(--muted);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 750;
}

.clip-list em {
  padding: 5px 8px;
  color: #4f22c9;
  background: var(--purple-soft);
  border-radius: 999px;
}

.demo-controls {
  gap: 8px;
  margin-top: 14px;
}

.demo-controls button {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
}

.demo-controls button.is-active {
  color: #ffffff;
  background: var(--ink);
  border-color: var(--ink);
}

.problem-band,
.demo-section,
.trust-band,
.contact-section {
  color: #ffffff;
  background: #08101d;
}

.legal-page {
  background: var(--paper-soft);
}

.legal-shell {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0 92px;
}

.legal-shell h1 {
  margin-bottom: 18px;
  font-size: 3rem;
}

.legal-shell h2 {
  margin-top: 38px;
  font-size: 1.5rem;
}

.legal-shell a {
  color: var(--purple);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.problem-band {
  border-radius: 24px 24px 0 0;
}

.problem-grid,
.demo-grid,
.trust-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  padding: 62px 0;
}

.problem-grid h2,
.demo-grid h2,
.trust-grid h2,
.contact-grid h2 {
  color: #ffffff;
}

.problem-grid p,
.demo-grid p,
.trust-grid p,
.contact-grid p {
  color: #aab4c5;
}

.pain-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pain-list li {
  min-height: 150px;
  padding: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.45;
}

.pain-list span {
  display: block;
  margin-bottom: 22px;
  color: #a66dff;
  font-weight: 900;
}

.lane-section,
.split-section,
.feature-section,
.proof-section,
.screenshots,
.use-cases,
.maker-section,
.roadmap,
.faq-section {
  padding: 86px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.section-intro.narrow {
  display: block;
  max-width: 760px;
}

.steps,
.lane-grid,
.feature-grid,
.proof-grid,
.screenshot-grid,
.audience-grid,
.roadmap-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

.lane-section {
  padding-bottom: 42px;
}

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

.lane-grid article {
  position: relative;
  overflow: hidden;
  min-height: 226px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 249, 252, 0.96)),
    linear-gradient(135deg, rgba(255, 122, 24, 0.16), rgba(113, 56, 245, 0.14));
}

.lane-grid article::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -54px;
  width: 136px;
  height: 136px;
  border: 2px solid rgba(255, 122, 24, 0.26);
  border-radius: 50%;
}

.lane-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  padding: 8px 10px;
  color: #4f22c9;
  background: var(--purple-soft);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.steps article,
.lane-grid article,
.feature-grid article,
.proof-grid article,
.audience-grid article,
.roadmap-grid article,
.faq-grid article {
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(7, 9, 18, 0.06);
}

.step-number,
.feature-icon {
  display: inline-grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: var(--purple);
  background: var(--purple-soft);
  font-weight: 900;
}

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

.feature-icon {
  color: var(--ink);
  background: var(--orange-soft);
}

.proof-section {
  color: #ffffff;
  background: #070912;
}

.proof-section h2,
.proof-section h3 {
  color: #ffffff;
}

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

.proof-grid article {
  min-height: 246px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.proof-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  border-radius: 12px;
  object-fit: cover;
}

.proof-grid p {
  color: #aab4c5;
  font-size: 0.96rem;
}

.screenshot-grid {
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  align-items: stretch;
}

.screen-card {
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(7, 9, 18, 0.08);
}

.screen-card img {
  width: 100%;
  background: #090c15;
}

.screen-card.tall img {
  height: 420px;
  object-fit: cover;
  object-position: top center;
}

.screen-card.wide img {
  height: 280px;
  object-fit: cover;
  object-position: top center;
}

.screen-card.wide {
  grid-row: span 1;
}

.screen-card figcaption {
  padding: 18px;
}

.screen-card figcaption strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.screen-card figcaption span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.ui-preview {
  min-height: 310px;
}

.mini-review,
.mini-export {
  min-height: 220px;
  padding: 18px;
  background: #08101d;
}

.mini-video {
  display: grid;
  height: 105px;
  place-items: center;
  color: #ffffff;
  background:
    linear-gradient(rgba(7, 9, 18, 0.14), rgba(7, 9, 18, 0.6)),
    linear-gradient(135deg, #2b3348, #6b4ae8);
  border-radius: var(--radius);
}

.mini-video span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.mini-row {
  display: grid;
  grid-template-columns: 56px 1fr 48px;
  gap: 10px;
  align-items: center;
  min-height: 36px;
  margin-top: 8px;
  padding: 8px 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  font-size: 0.82rem;
}

.mini-row b,
.mini-row em {
  color: #aab4c5;
  font-style: normal;
}

.export-strip {
  height: 120px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 12%, transparent 12% 16%, rgba(255, 255, 255, 0.14) 16% 34%, transparent 34% 38%, rgba(255, 255, 255, 0.12) 38% 58%, transparent 58% 62%, rgba(255, 255, 255, 0.16) 62% 100%),
    linear-gradient(135deg, #2a2444, #7037f1);
}

.export-controls {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.export-controls span {
  padding: 10px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 800;
}

.demo-grid {
  align-items: center;
}

.demo-list {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.demo-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 800;
}

.demo-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 122, 24, 0.16);
}

.demo-proof {
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.proof-icon {
  width: 74px;
  height: 74px;
  margin-bottom: 22px;
  border-radius: 18px;
  object-fit: cover;
}

.demo-proof-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.demo-proof h3 {
  color: #ffffff;
  font-size: 1.5rem;
}

.demo-proof a {
  color: #ffffff;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.38);
  text-underline-offset: 5px;
}

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

.audience-grid ul,
.roadmap-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.trust-band {
  background: #f5f1ff;
  color: var(--ink);
}

.trust-grid {
  align-items: start;
}

.trust-grid h2 {
  color: var(--ink);
}

.trust-grid p {
  color: #4f5a70;
}

.maker-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(7, 9, 18, 0.08);
}

.maker-icon {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  object-fit: cover;
}

.maker-card .eyebrow {
  margin-bottom: 12px;
}

.maker-card h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.maker-card p {
  margin-bottom: 0;
}

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

.roadmap-grid article:first-child {
  border-color: rgba(25, 165, 107, 0.25);
  background: linear-gradient(180deg, #ffffff, #f3fff9);
}

.roadmap-grid article:last-child {
  border-color: rgba(113, 56, 245, 0.2);
  background: linear-gradient(180deg, #ffffff, #f8f5ff);
}

.faq-section {
  padding-top: 0;
}

.faq-grid {
  grid-template-columns: repeat(5, 1fr);
}

.faq-grid article {
  box-shadow: none;
}

.faq-grid h3 {
  font-size: 1rem;
}

.faq-grid p {
  font-size: 0.94rem;
}

.contact-section {
  background:
    linear-gradient(rgba(8, 16, 29, 0.94), rgba(8, 16, 29, 0.98)),
    linear-gradient(135deg, #08101d, #241548);
}

.contact-grid {
  align-items: start;
}

.email-link {
  display: inline-flex;
  margin-top: 14px;
  color: #ffffff;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.34);
  text-underline-offset: 6px;
}

.waitlist-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
}

.waitlist-form label > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: #f8f9fc;
  border: 1px solid #d8deea;
  border-radius: var(--radius);
  outline: none;
}

.waitlist-form textarea {
  resize: vertical;
}

.checkbox-row {
  display: flex !important;
  grid-template-columns: none;
  gap: 10px !important;
  align-items: flex-start;
  color: var(--muted) !important;
  font-size: 0.82rem !important;
  font-weight: 750 !important;
  line-height: 1.45;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: var(--purple);
}

.checkbox-row span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(113, 56, 245, 0.12);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: 0.92rem;
  line-height: 1.45;
}

.form-status.is-error {
  color: #c0392b;
}

.form-thanks {
  display: grid;
  gap: 4px;
  padding: 14px;
  color: #116647;
  background: #dbfaec;
  border: 1px solid rgba(25, 165, 107, 0.22);
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.45;
}

.form-thanks span {
  color: #2a6d54;
}

.form-thanks[hidden] {
  display: none;
}

.form-powered {
  margin: -2px 0 0;
  color: #717b91;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

.form-powered a {
  color: var(--purple);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(113, 56, 245, 0.28);
  text-underline-offset: 4px;
}

.site-footer {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 46px 24px;
  text-align: center;
  color: #aab4c5;
  background: #070912;
}

.footer-brand {
  color: #ffffff;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
}

.site-footer p {
  margin: 0;
  color: #aab4c5;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.site-footer a {
  color: #ffffff;
  font-weight: 750;
}

.site-footer small {
  color: #7d8798;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

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

  .desktop-frame {
    right: 0;
    width: calc(100% - 140px);
  }

  .problem-grid,
  .demo-grid,
  .trust-grid,
  .contact-grid,
  .section-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pain-list,
  .lane-grid,
  .feature-grid,
  .proof-grid,
  .audience-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 820px) {
  .site-header {
    padding: 14px 20px;
  }

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

  .main-nav {
    position: fixed;
    inset: 72px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #0b0f1a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
  }

  .menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 15px 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .section-shell {
    width: min(100% - 34px, var(--max));
  }

  .hero {
    display: block;
    padding-top: 48px;
    padding-bottom: 42px;
    min-height: auto;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-banner-slider {
    margin-bottom: 24px;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    display: none;
  }

  .hero-copy {
    position: relative;
    z-index: 1;
  }

  .phone-frame,
  .desktop-frame {
    position: relative;
    inset: auto;
    transform: none;
  }

  .phone-frame {
    display: block;
    width: 220px;
    padding: 7px;
    border-radius: 28px;
  }

  .phone-frame img {
    height: 420px;
    border-radius: 22px;
  }

  .desktop-frame {
    display: none;
  }

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

  .dash-sidebar {
    display: none;
  }

  .dash-main {
    padding: 18px;
  }

  .dash-stats,
  .steps,
  .pain-list,
  .lane-grid,
  .feature-grid,
  .proof-grid,
  .screenshot-grid,
  .audience-grid,
  .roadmap-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .split-section,
  .lane-section,
  .feature-section,
  .proof-section,
  .screenshots,
  .use-cases,
  .maker-section,
  .roadmap,
  .faq-section {
    padding: 64px 0;
  }

  .maker-card {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .demo-grid,
  .trust-grid,
  .contact-grid {
    padding: 52px 0;
  }

  .pain-list li {
    min-height: 112px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 1.15rem;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  p {
    font-size: 0.98rem;
  }

  .hero-note {
    align-items: flex-start;
  }

  .hero-banner-slide {
    min-height: 186px;
    padding: 20px;
  }

  .hero-banner-title {
    font-size: 1.08rem;
  }

  .hero-slider-controls {
    justify-content: space-between;
  }

  .phone-frame img {
    height: 520px;
  }

  .dash-heading,
  .clip-list article {
    align-items: flex-start;
    flex-direction: column;
  }

  .screen-card.tall img {
    height: 360px;
  }

  .legal-nav {
    display: none;
  }

  .legal-shell {
    padding-top: 54px;
  }

  .legal-shell h1 {
    font-size: 2.25rem;
  }
}

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