@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/SpaceGrotesk-Variable.ttf") format("truetype");
  font-display: swap;
  font-weight: 300 700;
}

@font-face {
  font-family: "Sora";
  src: url("assets/fonts/Sora-Variable.ttf") format("truetype");
  font-display: swap;
  font-weight: 300 800;
}

:root {
  --background: #f9fafb;
  --foreground: #20232d;
  --card: #ffffff;
  --muted: #f2f5f8;
  --muted-foreground: #727885;
  --accent: #ecf2ff;
  --accent-strong: #dae7ff;
  --primary: #405bdb;
  --primary-hover: #3449b7;
  --primary-foreground: #ffffff;
  --border: #e1e7ef;
  --ring: rgba(64, 91, 219, 0.22);
  --shadow-sm: 0 1px 2px rgba(18, 24, 38, 0.05);
  --shadow-lg: 0 22px 56px rgba(18, 24, 38, 0.11);
  --container: 1152px;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  color: var(--foreground);
  font-family: "Sora", Inter, ui-sans-serif, system-ui, sans-serif;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(236, 242, 255, 0.9), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, var(--background) 42rem);
  color: var(--foreground);
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
}

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

svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.page-shell {
  min-height: 100vh;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(225, 231, 239, 0.68);
  background: rgba(249, 250, 251, 0.82);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--container));
  height: 64px;
  padding-inline: 20px;
  margin-inline: auto;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 140px;
  height: auto;
}

.desktop-nav,
.desktop-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 32px;
}

.desktop-nav a,
.link-muted {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.link-muted:hover,
.site-footer a:hover {
  color: var(--foreground);
}

.desktop-actions {
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

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

.button:focus-visible,
.menu-toggle:focus-visible,
.yeroom-range:focus-visible {
  outline: 4px solid var(--ring);
  outline-offset: 2px;
}

.button-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.button-primary:hover {
  background: var(--primary-hover);
}

.button-outline {
  border-color: rgba(32, 35, 45, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--foreground);
}

.button-outline:hover {
  background: var(--muted);
}

.button-small {
  min-height: 36px;
  padding-inline: 20px;
}

.button-large {
  min-height: 48px;
  padding-inline: 28px;
  font-size: 1rem;
}

.menu-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
}

.menu-icon,
.close-icon {
  position: absolute;
  width: 20px;
  height: 20px;
}

.menu-icon span,
.close-icon span {
  position: absolute;
  left: 2px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-icon span:first-child {
  top: 6px;
}

.menu-icon span:last-child {
  top: 13px;
}

.close-icon span:first-child {
  top: 9px;
  transform: rotate(45deg);
}

.close-icon span:last-child {
  top: 9px;
  transform: rotate(-45deg);
}

.menu-toggle[aria-expanded="false"] .close-icon,
.menu-toggle[aria-expanded="true"] .menu-icon {
  display: none;
}

.mobile-panel {
  border-top: 1px solid rgba(225, 231, 239, 0.68);
  background: var(--background);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: min(100%, var(--container));
  padding: 16px 20px;
  margin-inline: auto;
}

.mobile-nav a:not(.button) {
  border-radius: 10px;
  padding: 11px 8px;
  font-weight: 700;
}

.mobile-nav a:not(.button):hover {
  background: var(--muted);
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-copy {
  padding-top: 64px;
  padding-bottom: 40px;
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", "Sora", Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
}

h1 {
  max-width: 920px;
  margin-inline: auto;
  font-size: clamp(3rem, 8vw, 4.75rem);
  font-weight: 700;
  line-height: 0.98;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  text-wrap: balance;
}

h3 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0;
}

.hero-copy > p {
  max-width: 688px;
  margin: 24px auto 0;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.hero-note {
  margin-top: 16px !important;
  font-size: 0.875rem !important;
  line-height: 1.5 !important;
}

.creator-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding-bottom: 16px;
}

.creator-card {
  position: relative;
  min-height: 264px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #20232d;
  isolation: isolate;
}

.creator-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(15, 18, 27, 0.9) 0%,
    rgba(15, 18, 27, 0.58) 34%,
    rgba(15, 18, 27, 0.08) 68%,
    transparent 100%
  );
}

.creator-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-content {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  left: 12px;
  color: var(--background);
}

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

.creator-content strong {
  font-family: "Space Grotesk", "Sora", sans-serif;
  font-size: 0.95rem;
}

.creator-content span {
  margin-top: 3px;
  color: rgba(249, 250, 251, 0.72);
  font-size: 0.75rem;
}

.showcase-section,
.calculator-section,
.features-section {
  background: rgba(236, 242, 255, 0.58);
}

.showcase-section {
  padding: 80px 0 96px;
}

.center-block {
  text-align: center;
}

.center-block p {
  max-width: 690px;
  margin: 20px auto 0;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.75;
}

.narrow {
  max-width: 760px;
  margin-inline: auto;
}

.devices-frame {
  max-width: 896px;
  margin: 48px auto 0;
}

.devices-frame img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 50px rgba(18, 24, 38, 0.16));
}

.stats-section {
  padding: 64px 0 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.stats-grid article {
  padding: 32px;
  border-right: 1px solid var(--border);
}

.stats-grid article:last-child {
  border-right: 0;
}

.stats-grid strong {
  display: block;
  color: var(--primary);
  font-family: "Space Grotesk", "Sora", sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 12px;
  color: var(--muted-foreground);
  line-height: 1.65;
}

.section,
.features-section,
.faq-section {
  padding: 80px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

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

.split-grid > div > p,
.calculator-grid > div > p,
.contact-panel > div > p {
  margin-top: 20px;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pill-dark {
  background: rgba(249, 250, 251, 0.1);
  color: rgba(249, 250, 251, 0.82);
}

.pill-on-soft {
  background: var(--card);
}

.experience-grid,
.features-grid,
.promise-grid,
.timeline-grid {
  display: grid;
  gap: 16px;
}

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

.feature-card,
.step-card,
.comparison-card,
.slider-panel,
.contact-card,
.faq-list details {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.feature-card {
  padding: 24px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent);
  color: var(--primary);
}

.card-index {
  display: block;
  margin-top: 24px;
  color: var(--primary);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 800;
}

.feature-card h3 {
  margin-top: 10px;
}

.features-grid .feature-card h3 {
  margin-top: 20px;
}

.feature-card p,
.step-card p,
.comparison-card li,
.promise-grid p,
.faq-list p,
.contact-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
}

.feature-card p,
.step-card p,
.promise-grid p,
.contact-card p {
  margin-top: 8px;
}

.offer-section {
  padding: 0 0 80px;
}

.offer-panel {
  border-radius: 32px;
  background: var(--foreground);
  color: var(--background);
  padding: 64px;
}

.offer-panel p {
  color: rgba(249, 250, 251, 0.72) !important;
}

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

.promise-grid article {
  min-height: 156px;
  padding: 24px;
  border: 1px solid rgba(249, 250, 251, 0.16);
  border-radius: 20px;
  background: rgba(249, 250, 251, 0.06);
}

.promise-grid h3 {
  color: var(--background);
}

.calculator-section {
  padding: 80px 0;
}

.calculator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.calculator-result {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(32, 35, 45, 0.1);
}

.calculator-result > div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
}

.revenue {
  color: var(--primary);
  font-family: "Space Grotesk", "Sora", sans-serif;
  font-size: clamp(3rem, 6vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.revenue-label {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.calculator-result p {
  margin-top: 12px;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.calculator-result strong {
  color: var(--foreground);
}

.slider-panel {
  display: grid;
  gap: 32px;
  padding: 32px;
}

.slider-field {
  display: block;
}

.slider-field span {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
}

.slider-field output {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  margin-top: 12px;
  border: 1px solid rgba(64, 91, 219, 0.42);
  border-radius: 999px;
  padding: 5px 12px;
  background: var(--card);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 800;
}

.yeroom-range {
  width: 100%;
  height: 10px;
  margin-top: 12px;
  border-radius: 999px;
  appearance: none;
  background: linear-gradient(to right, var(--primary) 0%, var(--primary) 10%, var(--muted) 10%, var(--muted) 100%);
  cursor: pointer;
}

.yeroom-range::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  border: 3px solid var(--card);
  border-radius: 50%;
  appearance: none;
  background: var(--foreground);
  box-shadow: 0 1px 5px rgba(18, 24, 38, 0.24);
}

.yeroom-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 3px solid var(--card);
  border-radius: 50%;
  background: var(--foreground);
  box-shadow: 0 1px 5px rgba(18, 24, 38, 0.24);
}

.comparison-section {
  padding-top: 88px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.comparison-card {
  padding: 32px;
}

.muted-card {
  background: rgba(242, 245, 248, 0.72);
}

.strong-card {
  border: 2px solid rgba(64, 91, 219, 0.32);
  background: rgba(236, 242, 255, 0.64);
}

.comparison-card ul {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.comparison-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.negative {
  background: rgba(114, 120, 133, 0.16);
  color: var(--muted-foreground);
}

.positive {
  background: var(--primary);
  color: var(--primary-foreground);
}

.features-section {
  padding-top: 80px;
  padding-bottom: 96px;
}

.features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
}

.sticky-copy {
  position: sticky;
  top: 96px;
}

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

.step-card {
  padding: 24px;
}

.step-card > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 20px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-family: "Space Grotesk", "Sora", sans-serif;
  font-weight: 700;
}

.faq-section {
  padding-top: 80px;
}

.faq-container {
  max-width: 832px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 40px;
}

.faq-list details {
  padding: 0 24px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-family: "Space Grotesk", "Sora", sans-serif;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--muted);
  color: var(--muted-foreground);
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list p {
  max-width: 720px;
  padding-bottom: 20px;
}

.contact-section {
  padding-bottom: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--card);
  padding: 64px;
}

.contact-panel .button {
  margin-top: 28px;
}

.contact-card {
  border-color: transparent;
  background: var(--foreground);
  color: var(--background);
  padding: 40px;
}

.contact-card img {
  width: 44px;
  filter: invert(1);
}

.contact-card h3 {
  margin-top: 24px;
  font-size: 1.5rem;
}

.contact-card p {
  color: rgba(249, 250, 251, 0.72);
  font-size: 1rem;
}

.site-footer {
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer-brand img {
  width: 120px;
  height: auto;
}

.site-footer p,
.site-footer a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 600;
}

.site-footer p {
  text-align: center;
}

@media (max-width: 1024px) {
  .creator-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-grid,
  .calculator-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .sticky-copy {
    position: static;
  }
}

@media (max-width: 768px) {
  .desktop-nav,
  .desktop-actions {
    display: none;
  }

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

  .hero-copy {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .creator-card {
    min-height: 220px;
  }

  .showcase-section,
  .section,
  .features-section,
  .calculator-section,
  .faq-section {
    padding: 64px 0;
  }

  .stats-grid,
  .experience-grid,
  .promise-grid,
  .comparison-grid,
  .features-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .stats-grid article:last-child {
    border-bottom: 0;
  }

  .offer-panel,
  .contact-panel {
    padding: 40px 28px;
    border-radius: 28px;
  }

  .slider-panel,
  .comparison-card,
  .contact-card {
    padding: 28px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    padding-inline: 14px;
  }

  .brand img {
    width: 126px;
  }

  .hero-copy {
    padding-top: 42px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .creator-strip {
    gap: 10px;
  }

  .creator-card {
    min-height: 190px;
    border-radius: 18px;
  }

  .offer-panel,
  .contact-panel {
    padding: 32px 22px;
  }

  .revenue {
    font-size: 2.65rem;
  }
}
