:root {
  color-scheme: light;
  --bg: oklch(0.975 0.009 143);
  --surface: oklch(0.995 0.006 143);
  --surface-2: oklch(0.942 0.018 142);
  --ink: oklch(0.185 0.018 158);
  --muted: oklch(0.46 0.018 155);
  --line: oklch(0.86 0.016 146);
  --green: oklch(0.43 0.086 162);
  --teal: oklch(0.42 0.079 205);
  --violet: oklch(0.45 0.094 294);
  --gold: oklch(0.74 0.094 87);
  --shadow: 0 24px 70px oklch(0.32 0.03 155 / 0.13);
  --radius: 18px;
  --radius-sm: 10px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 86% 0%, oklch(0.93 0.025 93 / 0.9), transparent 32rem),
    linear-gradient(180deg, var(--bg), oklch(0.955 0.012 143));
  color: var(--ink);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(20px, calc((100vw - var(--max)) / 2));
  background: oklch(0.975 0.009 143 / 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid oklch(0.86 0.016 146 / 0.72);
}

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

.brand {
  gap: 10px;
  font-weight: 760;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--ink);
  color: var(--surface);
  font-size: 13px;
}

.nav {
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a,
.site-footer a {
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 760;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta {
  background: var(--surface);
  border: 1px solid var(--line);
}

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

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

.button.secondary {
  border: 1px solid var(--line);
  background: oklch(0.99 0.006 143 / 0.8);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: center;
  padding: 64px 0 48px;
}

.availability {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 24px;
  font-size: 76px;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 32px;
  line-height: 1.05;
}

.hero-lede {
  max-width: 62ch;
  color: var(--muted);
  font-size: 19px;
}

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

.trust-list {
  display: grid;
  gap: 9px;
  max-width: 66ch;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.trust-list li {
  position: relative;
  padding-left: 24px;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.hero-media {
  max-width: 590px;
  justify-self: end;
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--line);
  transform: rotate(1deg);
}

.outcome-band {
  padding: 48px 0;
  background: var(--ink);
  color: var(--surface);
}

.outcome-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.outcome-grid h2 {
  margin-bottom: 18px;
  font-size: 46px;
}

.outcome-grid p {
  max-width: 56ch;
  color: oklch(0.83 0.014 150);
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: outcomes;
}

.outcome-list li {
  counter-increment: outcomes;
  padding: 18px 0;
  border-top: 1px solid oklch(0.55 0.02 154);
  color: oklch(0.92 0.012 150);
}

.outcome-list li::before {
  content: counter(outcomes, decimal-leading-zero);
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: 800;
}

.versions,
.proof,
.faq {
  padding: 96px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.tier {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px oklch(0.3 0.03 155 / 0.08);
}

.tier.recommended {
  border-color: oklch(0.62 0.08 205);
  box-shadow: 0 24px 62px oklch(0.3 0.05 205 / 0.16);
}

.tier img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.tier-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.recommend-label {
  width: fit-content;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 5px 11px;
  background: oklch(0.91 0.047 205);
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.tier h3,
.tier-subtitle,
.price {
  margin-bottom: 8px;
}

.tier-subtitle {
  color: var(--muted);
  font-weight: 700;
}

.price {
  font-size: 44px;
  line-height: 1;
  font-weight: 860;
}

.tier p:not(.price):not(.tier-subtitle):not(.recommend-label) {
  color: var(--muted);
}

.tier ul,
.plain-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.tier li,
.plain-list li {
  position: relative;
  padding-left: 24px;
}

.tier li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.tier-pro li::before,
.tier-pro .tier-button {
  background: var(--teal);
}

.tier-studio li::before,
.tier-studio .tier-button {
  background: var(--violet);
}

.tier-button {
  margin-top: auto;
  color: var(--surface);
}

.tier-starter .tier-button {
  background: var(--green);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

figure {
  margin: 0;
}

figure img {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px oklch(0.3 0.03 155 / 0.1);
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.fit-section {
  padding: 88px 0;
  background: var(--surface-2);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
}

.fit-grid h2 {
  font-size: 48px;
}

.plain-list {
  font-size: 18px;
}

.plain-list.muted li::before {
  background: oklch(0.62 0.035 65);
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
}

details p {
  max-width: 68ch;
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--ink), oklch(0.28 0.042 184));
  color: var(--surface);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.final-cta p {
  max-width: 62ch;
  color: oklch(0.86 0.014 150);
}

.site-footer {
  padding: 42px 0;
  background: oklch(0.16 0.018 158);
  color: oklch(0.86 0.014 150);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  margin-bottom: 6px;
  color: var(--surface);
  font-weight: 800;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-page {
  max-width: 820px;
  padding: 76px 0 110px;
}

.legal-page h1 {
  max-width: none;
  font-size: 66px;
}

.legal-page h2 {
  margin-top: 38px;
  font-size: 28px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .hero,
  .outcome-grid,
  .pricing-grid,
  .proof-grid,
  .fit-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero-media {
    transform: none;
  }

  .pricing-grid {
    max-width: 560px;
    margin: 0 auto;
  }

  .final-cta-inner {
    text-align: left;
  }
}

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

  .site-header {
    padding: 14px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    max-width: 100%;
    font-size: 50px;
    line-height: 0.98;
  }

  h2,
  .outcome-grid h2,
  .fit-grid h2 {
    font-size: 34px;
    line-height: 1.05;
  }

  .availability {
    max-width: 24ch;
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 0.06em;
  }

  .legal-page h1 {
    font-size: 42px;
  }

  .hero-lede {
    font-size: 17px;
  }

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

  .outcome-list {
    grid-template-columns: 1fr;
  }

  .versions,
  .proof,
  .faq {
    padding: 70px 0;
  }

  .tier-body {
    padding: 22px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
