:root {
  --ink: #101018;
  --ink-soft: #353343;
  --muted: #6f6b7d;
  --line: #e7e5ef;
  --paper: #ffffff;
  --soft: #f8f7fb;
  --cream: #f3f1eb;
  --night: #0a0118;
  --primary: #7559ff;
  --primary-dark: #4f2ee9;
  --mint: #00b248;
  --amber: #ff8a34;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(16, 16, 24, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

.topbar {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 18px;
  color: #ffffff;
  background: var(--night);
  font-size: 0.86rem;
  line-height: 1.35;
  text-align: center;
}

.site-header {
  position: absolute;
  inset: 42px 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  color: #ffffff;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 152px;
}

.brand-link img {
  width: 154px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.95rem;
}

.site-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  padding: 0 15px;
  color: rgba(255, 255, 255, 0.82);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  outline: 0;
}

.site-nav .nav-cta {
  margin-left: 10px;
  color: var(--night);
  background: #ffffff;
  font-weight: 700;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--night);
  background: #e8ff6e;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100vh - 42px);
  overflow: hidden;
  color: #ffffff;
  background: var(--night);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.54;
  filter: saturate(0.95) contrast(1.05);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 1, 24, 0.96) 0%, rgba(10, 1, 24, 0.76) 43%, rgba(10, 1, 24, 0.38) 100%),
    linear-gradient(180deg, rgba(10, 1, 24, 0.25) 0%, rgba(10, 1, 24, 0.82) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100vh - 42px);
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 154px 0 78px;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #251a2c;
  background: #e8ff6e;
  border: 1px solid rgba(10, 1, 24, 0.08);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 4.7rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.24rem;
  line-height: 1.58;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 22px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 16px 36px rgba(117, 89, 255, 0.36);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-dark);
}

.button-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  color: #ffffff;
  background: var(--night);
  box-shadow: 0 16px 32px rgba(10, 1, 24, 0.2);
}

.button-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: grid;
  width: min(780px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 42px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}

.hero-stats div {
  min-height: 96px;
  padding: 18px;
  background: rgba(10, 1, 24, 0.56);
}

.hero-stats dt {
  margin: 0 0 8px;
  color: #ffffff;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.93rem;
  line-height: 1.45;
}

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

.proof-band {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 34px 0;
}

.proof-grid h2 {
  max-width: 760px;
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.22;
}

.proof-grid .section-kicker {
  margin-bottom: 12px;
  color: #ffffff;
  background: var(--primary);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-bottom: 2px solid var(--primary);
  color: var(--primary-dark);
  font-weight: 900;
}

.feature-section,
.apps-section {
  padding: 92px 0;
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2,
.showcase-copy h2,
.ai-layout h2,
.pricing-layout h2,
.final-inner h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p,
.showcase-copy p,
.ai-layout p,
.pricing-layout p,
.final-inner p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

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

.feature-card,
.app-grid article,
.steps article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.feature-card {
  min-height: 330px;
  padding: 18px;
}

.feature-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--soft);
}

.feature-card h3,
.app-grid h3,
.steps h3 {
  margin: 18px 0 8px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.feature-card p,
.app-grid p,
.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.showcase-section {
  padding: 100px 0;
  background: #ffffff;
}

.showcase-grid,
.pricing-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 58px;
  align-items: center;
}

.showcase-copy {
  min-width: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mint);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.showcase-media {
  position: relative;
  min-width: 0;
}

.showcase-media::before {
  content: "";
  position: absolute;
  inset: 8% -4% -3% 8%;
  z-index: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(117, 89, 255, 0.2), rgba(0, 178, 72, 0.18));
}

.showcase-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.ai-section {
  padding: 100px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 8%, rgba(117, 89, 255, 0.36), transparent 30%),
    linear-gradient(135deg, #0a0118 0%, #17111f 55%, #231a2a 100%);
}

.ai-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.ai-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.ai-layout .section-kicker {
  color: var(--night);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 30px 0 30px;
}

.steps article {
  min-height: 170px;
  padding: 18px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.steps strong {
  color: #e8ff6e;
  font-size: 0.86rem;
}

.steps h3 {
  color: #ffffff;
}

.video-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: #000000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.video-panel video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.apps-section {
  background: #ffffff;
}

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

.app-grid article {
  min-height: 190px;
  padding: 22px;
}

.app-grid img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.pricing-section {
  padding: 96px 0;
  background: var(--cream);
}

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

.score-list div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 86px;
  border: 1px solid rgba(10, 1, 24, 0.1);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.64);
}

.score-list span {
  color: var(--primary);
  font-weight: 950;
  font-size: 1.1rem;
}

.score-list p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1.45;
}

.final-cta {
  padding: 96px 0;
  color: #ffffff;
  background: var(--night);
}

.final-inner {
  text-align: center;
}

.final-inner img {
  width: 176px;
  margin: 0 auto 28px;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: #ffffff;
}

.final-inner h2,
.final-inner p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.final-inner p {
  color: rgba(255, 255, 255, 0.72);
}

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

.site-footer {
  padding: 40px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #050109;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-grid img {
  width: 150px;
  margin-bottom: 16px;
}

.footer-grid p {
  max-width: 640px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 24px;
  color: #ffffff;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #e8ff6e;
  outline: 0;
}

@media (max-width: 1060px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .showcase-copy {
    max-width: 820px;
  }
}

@media (max-width: 820px) {
  .topbar {
    flex-direction: column;
    gap: 2px;
    font-size: 0.78rem;
  }

  .site-header {
    inset: 58px 0 auto 0;
    width: min(var(--max), calc(100% - 28px));
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    width: min(320px, calc(100vw - 28px));
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(10, 1, 24, 0.96);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero-inner {
    width: min(var(--max), calc(100% - 28px));
    padding-top: 150px;
  }

  .hero h1 {
    font-size: 3rem;
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .section-inner {
    width: min(var(--max), calc(100% - 28px));
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .proof-grid h2 {
    font-size: 1.42rem;
  }

  .feature-section,
  .showcase-section,
  .ai-section,
  .apps-section,
  .pricing-section,
  .final-cta {
    padding: 68px 0;
  }

  .section-heading h2,
  .showcase-copy h2,
  .ai-layout h2,
  .pricing-layout h2,
  .final-inner h2 {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .steps,
  .app-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .brand-link img {
    width: 136px;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    object-position: 58% center;
  }

  .hero-inner {
    min-height: 770px;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: 2.38rem;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

  .feature-card {
    min-height: auto;
  }

  .score-list div {
    grid-template-columns: 42px 1fr;
  }
}
