:root {
  --ink: #10141f;
  --muted: #657083;
  --line: #e3e8f0;
  --paper: #f6f8fc;
  --white: #ffffff;
  --blue: #6c5cff;
  --green: #12b886;
  --coral: #ff4d8d;
  --yellow: #ffc857;
  --shadow: 0 18px 50px rgba(25, 28, 45, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--coral));
  border-radius: 8px;
  font-size: 0.82rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
}

.nav-toggle span + span {
  margin-top: 5px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.84fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(48px, 8vw, 104px) clamp(20px, 5vw, 72px) 56px;
  background:
    linear-gradient(135deg, rgba(108, 92, 255, 0.42), transparent 34%),
    linear-gradient(315deg, rgba(255, 77, 141, 0.3), transparent 42%),
    radial-gradient(circle at 72% 28%, rgba(255, 200, 87, 0.22), transparent 28%),
    var(--ink);
}

.hero-content {
  max-width: 760px;
}

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

.hero .eyebrow {
  color: var(--yellow);
}

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

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: 6.6rem;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero h1 {
  color: var(--white);
}

h2 {
  margin: 0;
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.22rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--coral));
  box-shadow: 0 14px 34px rgba(108, 92, 255, 0.28);
}

.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.secondary-dark {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.light {
  color: var(--ink);
  background: var(--white);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof span {
  padding: 9px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual {
  align-self: stretch;
  display: grid;
  min-height: 460px;
  place-items: center;
}

.hero-visual img {
  width: min(100%, 560px);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.36));
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.strip {
  padding-block: 20px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.strip-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px clamp(22px, 5vw, 54px);
  font-size: 1rem;
  font-weight: 800;
}

.intro,
.process,
.packages,
.contact {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

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

.service-card,
.process-step {
  min-height: 230px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card p,
.process-step p,
.split-copy p,
.creator-band p,
.contact-copy p {
  color: var(--muted);
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 44px;
  place-items: center;
  background: #f0edff;
  border-radius: 8px;
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

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

.feature-list div {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(30, 28, 66, 0.07);
}

.feature-list span {
  color: var(--muted);
}

.proof {
  background: var(--paper);
}

.proof-grid,
.package-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.proof-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(30, 28, 66, 0.06);
}

.proof-grid strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.proof-grid p {
  margin: 0;
  color: var(--muted);
}

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

.process-step span {
  display: inline-flex;
  margin-bottom: 50px;
  color: var(--coral);
  font-size: 0.85rem;
  font-weight: 800;
}

.tutorial {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  background: var(--paper);
}

.tutorial-copy p {
  color: var(--muted);
}

.tutorial-copy .button {
  margin-top: 24px;
}

.tutorial-player {
  position: relative;
  min-height: 420px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(108, 92, 255, 0.9), rgba(255, 77, 141, 0.78)),
    var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.tutorial-player::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  pointer-events: none;
}

.play-tutorial {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: var(--white);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(16, 20, 31, 0.24);
}

.play-tutorial span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--blue);
}

.play-tutorial.is-playing span {
  width: 18px;
  height: 20px;
  margin-left: 0;
  border-top: 0;
  border-bottom: 0;
  border-left: 6px solid var(--blue);
  border-right: 6px solid var(--blue);
}

.video-stage {
  position: relative;
  display: grid;
  min-height: 340px;
  place-items: center;
}

.video-card {
  position: absolute;
  display: grid;
  width: min(100%, 480px);
  min-height: 240px;
  align-content: end;
  gap: 12px;
  padding: 28px;
  color: var(--white);
  background: rgba(16, 20, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.video-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.video-card span {
  color: var(--yellow);
  font-size: 0.84rem;
  font-weight: 800;
}

.video-card strong {
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  line-height: 1;
}

.video-card p {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.tutorial-progress {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.tutorial-progress span {
  height: 5px;
  background: rgba(255, 255, 255, 0.26);
  border-radius: 999px;
}

.tutorial-progress span.active {
  background: var(--yellow);
}

.creator-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 184, 134, 0.94), rgba(108, 92, 255, 0.96)),
    #2f3c99;
}

.creator-band .eyebrow,
.creator-band p {
  color: var(--white);
}

.creator-band div {
  max-width: 760px;
}

.results {
  background: var(--paper);
}

.results div {
  min-height: 160px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.results strong {
  display: block;
  color: var(--blue);
  font-size: 4.4rem;
  line-height: 1;
}

.results span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.packages {
  background: var(--white);
}

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

.package-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 420px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.package-card.featured {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}

.package-card > span {
  width: fit-content;
  padding: 7px 10px;
  color: var(--blue);
  background: #f0edff;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.package-card.featured > span {
  color: var(--ink);
  background: var(--yellow);
}

.package-card p {
  margin: 0;
  color: var(--muted);
}

.package-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 8px;
  padding-left: 18px;
  color: #30384a;
}

.package-card.featured ul {
  color: rgba(255, 255, 255, 0.84);
}

.faq {
  background: var(--paper);
}

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

details {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}

.contact-actions a,
.contact-actions span {
  padding: 10px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #30384a;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d9e0ea;
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: #cad2df;
  background: var(--ink);
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 800;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(16, 20, 31, 0.24);
  font-weight: 800;
}

@media (max-width: 920px) {
  .hero,
  .split,
  .tutorial,
  .contact,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 10ch;
    font-size: 4.8rem;
  }

  h2 {
    font-size: 2.85rem;
  }

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

  .results strong {
    font-size: 3.4rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .service-grid,
  .process-grid,
  .proof-grid,
  .package-grid,
  .results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: absolute;
    top: 67px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: var(--ink);
  }

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

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

  .brand span:last-child {
    max-width: 160px;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    max-width: 11ch;
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .strip-track {
    font-size: 0.88rem;
  }

  .results strong {
    font-size: 2.8rem;
  }

  .service-grid,
  .process-grid,
  .proof-grid,
  .package-grid,
  .results {
    grid-template-columns: 1fr;
  }

  .creator-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .tutorial {
    gap: 24px;
  }

  .tutorial-player {
    min-height: 360px;
    padding: 18px;
  }

  .video-stage {
    min-height: 292px;
  }

  .video-card {
    min-height: 220px;
    padding: 22px;
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
  }
}
