:root {
  --purple: #7a30b0;
  --purple-dark: #35085d;
  --violet: #9542d4;
  --gold: #f2b84b;
  --teal: #1b8a83;
  --ink: #1d1723;
  --muted: #675d70;
  --paper: #fcf9ff;
  --lavender: #efe2f8;
  --line: rgba(53, 8, 93, 0.14);
  --shadow: 0 22px 60px rgba(52, 22, 75, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(252, 249, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--purple-dark);
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(53, 8, 93, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--purple);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--purple);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--purple-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(44px, 6vw, 76px) clamp(20px, 5vw, 64px) 36px;
  background:
    linear-gradient(100deg, rgba(122, 48, 176, 0.12), transparent 52%),
    radial-gradient(circle at 86% 18%, rgba(27, 138, 131, 0.18), transparent 28%),
    var(--paper);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--purple-dark);
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--purple-dark);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-text {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
}

.button-primary {
  color: #fff;
  background: var(--purple);
  box-shadow: 0 12px 28px rgba(122, 48, 176, 0.24);
}

.button-secondary {
  color: var(--purple-dark);
  background: #fff;
  border-color: var(--line);
}

.hero-media img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 18px clamp(20px, 5vw, 64px);
  background: var(--purple-dark);
}

.proof-strip span {
  flex: 0 0 auto;
  padding: 9px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 750;
}

.split-section,
.creator-band,
.screens-section,
.revenue-section,
.contact-section {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 64px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  background: #fff;
}

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

.feature-grid article,
.revenue-grid article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.feature-grid p,
.revenue-grid p,
.creator-copy p,
.contact-section p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.creator-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(53, 8, 93, 0.95), rgba(122, 48, 176, 0.95)),
    var(--purple-dark);
}

.creator-band .eyebrow,
.creator-band h2 {
  color: #fff;
}

.creator-copy p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

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

.creator-list div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.creator-list strong,
.creator-list span {
  display: block;
}

.creator-list strong {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 20px;
}

.creator-list span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

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

.screen-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 18px;
  align-items: start;
}

.screen-rail img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(53, 8, 93, 0.14);
}

.revenue-section {
  background: #fff;
}

.revenue-grid article span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--teal);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 0.66fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  background:
    radial-gradient(circle at 18% 80%, rgba(242, 184, 75, 0.2), transparent 24%),
    var(--lavender);
}

.thanks-section {
  min-height: calc(100vh - 88px);
  padding: clamp(86px, 12vw, 150px) clamp(20px, 5vw, 64px);
  background:
    linear-gradient(100deg, rgba(122, 48, 176, 0.12), transparent 52%),
    radial-gradient(circle at 82% 22%, rgba(27, 138, 131, 0.2), transparent 28%),
    var(--paper);
}

.thanks-section h1 {
  max-width: 900px;
}

.contact-section p {
  margin-top: 20px;
  max-width: 650px;
  font-size: 19px;
}

form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--purple-dark);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(53, 8, 93, 0.2);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(27, 138, 131, 0.18);
  border-color: var(--teal);
}

.hidden {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--purple-dark);
}

.site-footer span:first-child {
  color: #fff;
  font-weight: 900;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    display: none;
    width: min(320px, calc(100vw - 40px));
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .hero,
  .split-section,
  .creator-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .screen-rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .screen-rail img {
    flex: 0 0 min(72vw, 330px);
    scroll-snap-align: start;
  }
}

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

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    display: grid;
  }
}
