:root {
  color-scheme: light;
  --ink: #101116;
  --muted: #626774;
  --soft: #f5f3ee;
  --paper: #ffffff;
  --line: rgba(16, 17, 22, 0.12);
  --violet: #7048ff;
  --violet-deep: #4a2bd6;
  --amber: #f6ad1b;
  --green: #1fae82;
  --blue: #1d67f2;
  --dark: #050507;
  --dark-2: #12131b;
  --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;
  font-size: 16px;
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 40px, var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.brand span {
  color: var(--violet);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #343844;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  padding: 10px 0;
}

.nav-links a[aria-current="page"] {
  color: var(--violet-deep);
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 750;
  line-height: 1;
}

.button {
  background: var(--ink);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.button:hover,
.button-secondary:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.94) 0%, rgba(5, 5, 7, 0.74) 38%, rgba(5, 5, 7, 0.2) 72%),
    linear-gradient(0deg, rgba(5, 5, 7, 0.76), rgba(5, 5, 7, 0.08) 48%, rgba(5, 5, 7, 0.28));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max));
  min-height: 760px;
  margin: 0 auto;
  padding: 110px 0 82px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 750;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 72px;
  line-height: 0.98;
  font-weight: 850;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 21px;
  line-height: 1.5;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 900px);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
}

.proof-item {
  min-height: 132px;
  padding: 20px;
  background: rgba(10, 11, 18, 0.68);
}

.proof-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.proof-item span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  color: #fff;
  background: var(--dark-2);
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 40px;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--violet-deep);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-dark .section-kicker {
  color: #a996ff;
}

.section h2,
.page-title h1 {
  margin-bottom: 16px;
  font-size: 48px;
  line-height: 1.08;
}

.section-lead,
.page-lead {
  color: var(--muted);
  font-size: 19px;
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.feature,
.plan,
.legal-card,
.audience,
.workflow-step,
.faq-item,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature,
.audience,
.workflow-step,
.faq-item,
.contact-card {
  padding: 26px;
}

.feature h3,
.audience h3,
.workflow-step h3,
.faq-item h3,
.contact-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.25;
}

.feature p,
.audience p,
.workflow-step p,
.faq-item p,
.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 6px;
  background: rgba(112, 72, 255, 0.1);
  color: var(--violet-deep);
  font-weight: 850;
}

.showcase {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 40px;
  align-items: center;
}

.showcase-media {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.showcase-copy ul,
.legal-content ul,
.check-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.showcase-copy li,
.legal-content li,
.check-list li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 26px;
}

.showcase-copy li::before,
.legal-content li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
}

.plan {
  padding: 30px;
}

.plan-highlight {
  border-color: rgba(112, 72, 255, 0.44);
  box-shadow: 0 24px 70px rgba(74, 43, 214, 0.13);
}

.plan-name {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.plan-price {
  margin-bottom: 10px;
  font-size: 38px;
  line-height: 1;
  font-weight: 850;
}

.plan-note {
  min-height: 54px;
  color: var(--muted);
}

.plan .button {
  width: 100%;
  margin-top: 24px;
}

.page-hero {
  padding: 82px 0 54px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.page-title {
  width: min(100% - 40px, 940px);
  margin: 0 auto;
}

.page-title .eyebrow {
  color: var(--violet-deep);
  background: rgba(112, 72, 255, 0.08);
  border-color: rgba(112, 72, 255, 0.18);
}

.legal-content {
  width: min(100% - 40px, 900px);
  margin: 0 auto;
  padding: 72px 0;
}

.legal-content h2 {
  margin: 44px 0 12px;
  font-size: 30px;
  line-height: 1.18;
}

.legal-content p,
.legal-content li {
  color: #4d5360;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 40px;
  align-items: center;
  padding: 44px;
  border-radius: 8px;
  background: #11131c;
  color: #fff;
}

.split-band p {
  color: rgba(255, 255, 255, 0.72);
}

.split-band img {
  border-radius: 8px;
}

.footer {
  padding: 48px 0;
  color: rgba(255, 255, 255, 0.68);
  background: var(--dark);
}

.footer-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 900px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-proof,
  .grid-4,
  .grid-3,
  .grid-2,
  .section-head,
  .showcase,
  .split-band {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .section h2,
  .page-title h1 {
    font-size: 38px;
  }
}

@media (max-width: 560px) {
  .nav,
  .container,
  .hero-inner,
  .footer-inner,
  .page-title,
  .legal-content {
    width: min(100% - 28px, var(--max));
  }

  .hero,
  .hero-inner {
    min-height: 760px;
  }

  .hero-inner {
    padding-top: 76px;
  }

  .hero h1 {
    font-size: 40px;
  }

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

  .button,
  .button-secondary {
    width: 100%;
  }

  .section h2,
  .page-title h1 {
    font-size: 32px;
  }

  .split-band {
    padding: 26px;
  }
}
