:root {
  --ink: #101011;
  --ink-soft: #242426;
  --paper: #f4f4f1;
  --surface: #ffffff;
  --surface-soft: #eeeeea;
  --line: #deded8;
  --line-dark: #c7c7c0;
  --muted: #73767d;
  --muted-dark: #55585e;
  --success: #166534;
  --danger: #9f1239;
  --warning-bg: #fff8df;
  --warning-line: #eadca6;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 42px;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.09);
  --shadow-sm: 0 12px 32px rgba(17, 17, 17, 0.07);
  --container: 1240px;
  --header-height: 82px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 95% 8%, rgba(255, 255, 255, 0.9), rgba(255,255,255,0) 27rem),
    var(--paper);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 2px;
}

p,
ul,
ol {
  margin-top: 0;
}

::selection {
  color: #fff;
  background: #111;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 11px 16px;
  border-radius: 10px;
  color: #fff;
  background: #111;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(244, 244, 241, 0.86);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 32px rgba(17, 17, 17, 0.04);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 49px;
  height: 49px;
  flex: 0 0 49px;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.1;
}

.brand-name {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-tagline {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.primary-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 23px;
}

.nav-links a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.language-switcher a {
  display: grid;
  min-width: 34px;
  height: 31px;
  place-items: center;
  border-radius: 999px;
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}

.language-switcher a[aria-current="true"] {
  color: #fff;
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 47px;
  height: 47px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 19px;
  height: 2px;
  margin-inline: auto;
  border-radius: 2px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span {
  margin-block: 4px;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 21px;
  border: 1px solid var(--ink);
  border-radius: 15px;
  color: #fff;
  background: var(--ink);
  font-size: 14px;
  font-weight: 860;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.btn:hover {
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.16);
  text-decoration: none;
  transform: translateY(-2px);
}

.btn:active {
  box-shadow: none;
  transform: translateY(0);
}

.btn--light {
  border-color: var(--line-dark);
  color: var(--ink);
  background: var(--surface);
}

.btn--ghost {
  border-color: transparent;
  color: var(--ink);
  background: transparent;
}

.btn--white {
  border-color: #fff;
  color: var(--ink);
  background: #fff;
}

.btn--large {
  min-height: 58px;
  padding: 17px 27px;
  border-radius: 17px;
  font-size: 16px;
}

.btn--full {
  width: 100%;
}

.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 820;
  text-decoration: none;
}

.link-arrow::after {
  content: "↗";
  transition: transform 150ms ease;
}

.link-arrow:hover::after {
  transform: translate(2px, -2px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section {
  padding-block: 96px;
}

.section--tight {
  padding-block: 70px;
}

.section--no-top {
  padding-top: 0;
}

.section-heading {
  display: grid;
  max-width: 790px;
  gap: 10px;
  margin-bottom: 42px;
}

.section-heading--row {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  align-items: end;
  gap: 60px;
}

.section-title {
  margin: 0;
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 920;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-title--sm {
  font-size: clamp(34px, 4vw, 54px);
}

.section-lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted-dark);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.hero {
  padding-block: 34px 30px;
}

.hero-shell {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  padding: clamp(38px, 6vw, 76px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-shell::before,
.hero-shell::after,
.orbit-decoration::before,
.orbit-decoration::after {
  position: absolute;
  z-index: -1;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-shell::before {
  width: 430px;
  height: 430px;
  top: -260px;
  right: 20px;
}

.hero-shell::after {
  width: 310px;
  height: 310px;
  top: -180px;
  right: 120px;
}

.hero-grid {
  display: grid;
  min-height: 540px;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  align-items: center;
  gap: clamp(45px, 6vw, 86px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(55px, 7.4vw, 105px);
  font-weight: 940;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.hero-lead {
  max-width: 630px;
  margin: 30px 0 0;
  color: var(--muted-dark);
  font-size: clamp(19px, 2.25vw, 25px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.hero-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 670;
}

.hero-price-inline {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.hero-price-inline strong {
  font-size: 17px;
}

.hero-price-inline del {
  color: var(--muted);
  font-weight: 650;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: #fafaf8;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.pill::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.platform-preview {
  position: relative;
  width: 100%;
  max-width: 540px;
  justify-self: end;
  transform: rotate(1.4deg);
}

.preview-window {
  overflow: hidden;
  border: 1px solid #d9d9d4;
  border-radius: 28px;
  background: #f4f4f2;
  box-shadow: 0 26px 70px rgba(17,17,17,0.17);
}

.preview-topbar {
  display: flex;
  min-height: 61px;
  align-items: center;
  gap: 10px;
  padding: 11px 17px;
  border-bottom: 1px solid #ddddda;
  background: #fff;
}

.preview-topbar img {
  width: 31px;
  height: 31px;
}

.preview-account {
  display: grid;
  gap: 1px;
  line-height: 1.15;
}

.preview-account strong {
  font-size: 11px;
}

.preview-account span {
  color: var(--muted);
  font-size: 8px;
}

.preview-language {
  margin-left: auto;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-dark);
  background: #fff;
  font-size: 7px;
  font-weight: 900;
}

.preview-body {
  padding: 26px;
}

.preview-banner {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid #deded9;
  border-radius: 22px;
  background: #fff;
}

.preview-banner::before,
.preview-banner::after {
  position: absolute;
  border: 1px solid #e0e0dc;
  border-radius: 50%;
  content: "";
}

.preview-banner::before {
  width: 160px;
  height: 160px;
  top: -72px;
  right: 4px;
}

.preview-banner::after {
  width: 112px;
  height: 112px;
  top: -46px;
  right: 55px;
}

.preview-banner small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-banner strong {
  display: block;
  max-width: 280px;
  font-size: 29px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.preview-banner img {
  position: absolute;
  width: 58px;
  height: 58px;
  right: 20px;
  bottom: 15px;
}

.preview-course {
  width: 67%;
  min-width: 290px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid #deded9;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 13px 28px rgba(17,17,17,0.07);
}

.preview-index {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 12px;
  border: 1px solid #111;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.preview-course h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.preview-course-meta,
.preview-progress-line,
.preview-next-label {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
}

.preview-course-meta {
  margin: 8px 0;
}

.preview-progress-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.preview-progress {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8e8e4;
}

.preview-progress span {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: #111;
}

.preview-next-label {
  display: block;
  margin: 12px 0 2px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-next {
  display: block;
  margin-bottom: 11px;
  font-size: 10px;
  font-weight: 860;
  line-height: 1.3;
}

.preview-button {
  display: grid;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: #111;
  font-size: 9px;
  font-weight: 900;
}

.preview-float {
  position: absolute;
  top: 18px;
  right: -15px;
  display: grid;
  width: 108px;
  min-height: 58px;
  place-items: center;
  padding: 9px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 15px;
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-sm);
  font-size: 10px;
  font-weight: 880;
  line-height: 1.2;
  text-align: center;
  transform: rotate(-4deg);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--surface);
}

.trust-stat {
  min-height: 125px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.trust-stat:last-child {
  border-right: 0;
}

.trust-stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 920;
  letter-spacing: -0.055em;
  line-height: 1;
}

.trust-stat span {
  color: var(--muted-dark);
  font-size: 13px;
  font-weight: 680;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
  gap: clamp(50px, 8vw, 120px);
}

.intro-statement {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.intro-copy {
  display: grid;
  gap: 26px;
}

.intro-copy p {
  margin: 0;
  color: var(--muted-dark);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.58;
}

.big-quote {
  margin: 0;
  font-size: clamp(39px, 5.1vw, 66px);
  font-weight: 920;
  letter-spacing: -0.06em;
  line-height: 1;
}

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

.feature-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.feature-card::after {
  position: absolute;
  width: 150px;
  height: 150px;
  right: -75px;
  bottom: -75px;
  border: 1px solid #e1e1dd;
  border-radius: 50%;
  content: "";
}

.feature-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 62px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.feature-card h3 {
  max-width: 270px;
  margin: 0 0 11px;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.feature-card p {
  max-width: 320px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.52;
}

.dark-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 7vw, 82px);
  border-radius: var(--radius-xl);
  color: #fff;
  background: #111;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.dark-panel::before,
.dark-panel::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  content: "";
}

.dark-panel::before {
  width: 420px;
  height: 420px;
  top: -250px;
  right: -30px;
}

.dark-panel::after {
  width: 290px;
  height: 290px;
  top: -155px;
  right: 95px;
}

.dark-panel .eyebrow,
.dark-panel .section-lead {
  color: rgba(255,255,255,0.66);
}

.module-list {
  display: grid;
  margin-top: 54px;
  border-top: 1px solid rgba(255,255,255,0.22);
}

.module-row {
  display: grid;
  min-height: 116px;
  grid-template-columns: 78px minmax(0, 0.9fr) minmax(260px, 1.1fr);
  align-items: center;
  gap: 25px;
  padding-block: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.19);
}

.module-row span:first-child {
  color: rgba(255,255,255,0.52);
  font-size: 13px;
  font-weight: 900;
}

.module-row h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 31px);
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.module-row p {
  margin: 0;
  color: rgba(255,255,255,0.64);
  font-size: 14px;
  line-height: 1.55;
}

.module-note {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  color: rgba(255,255,255,0.61);
  font-size: 13px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.step-card {
  min-height: 286px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.step-number {
  display: block;
  margin-bottom: 54px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.step-card p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 15px;
}

.creator-panel {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.creator-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  padding: 50px;
  border-right: 1px solid var(--line);
  background: #efefeb;
}

.creator-visual::before,
.creator-visual::after {
  position: absolute;
  border: 1px solid #d4d4cf;
  border-radius: 50%;
  content: "";
}

.creator-visual::before {
  width: 470px;
  height: 470px;
}

.creator-visual::after {
  width: 330px;
  height: 330px;
}

.creator-monogram {
  position: relative;
  z-index: 2;
  display: grid;
  width: 215px;
  height: 215px;
  place-items: center;
  border: 1px solid #bababa;
  border-radius: 50%;
  color: #fff;
  background: #111;
  font-size: 70px;
  font-weight: 920;
  letter-spacing: -0.07em;
}

.creator-copy {
  padding: clamp(42px, 7vw, 82px);
}

.creator-copy h2 {
  margin: 0 0 25px;
  font-size: clamp(41px, 5vw, 68px);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.creator-copy p {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--muted-dark);
  font-size: 18px;
}

.creator-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 30px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.72fr);
  align-items: stretch;
  gap: 18px;
}

.pricing-message,
.price-card {
  padding: clamp(36px, 6vw, 68px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.pricing-message {
  position: relative;
  overflow: hidden;
}

.pricing-message::after {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -210px;
  bottom: -195px;
  border: 1px solid #ddddda;
  border-radius: 50%;
  content: "";
}

.pricing-message h2 {
  max-width: 680px;
  margin: 0 0 24px;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.pricing-message p {
  max-width: 680px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 19px;
}

.price-card {
  color: #fff;
  background: #111;
}

.price-card .eyebrow {
  color: rgba(255,255,255,0.56);
}

.price-reference {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 5px;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  font-weight: 700;
}

.discount-tag {
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.price-main {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 10px 0 4px;
}

.price-main span:first-child {
  padding-top: 10px;
  color: rgba(255,255,255,0.72);
  font-size: 30px;
  font-weight: 850;
}

.price-main strong {
  font-size: clamp(72px, 8vw, 105px);
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.price-subline {
  margin-bottom: 28px;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  font-weight: 680;
}

.inclusion-list {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.inclusion-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255,255,255,0.87);
  font-size: 14px;
}

.inclusion-list li::before {
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  place-items: center;
  margin-top: 2px;
  border: 1px solid rgba(255,255,255,0.33);
  border-radius: 50%;
  content: "✓";
  font-size: 10px;
  font-weight: 900;
}

.price-card .fineprint {
  margin: 15px 0 0;
  color: rgba(255,255,255,0.48);
  font-size: 11px;
  line-height: 1.5;
}

.guarantee-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 26px;
  margin-top: 18px;
  padding: 28px 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.guarantee-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 900;
}

.guarantee-strip h3 {
  margin: 0 0 4px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.guarantee-strip p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 14px;
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  position: relative;
  padding: 27px 64px 27px 0;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 860;
  letter-spacing: -0.025em;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  content: "+";
  font-size: 19px;
  transform: translateY(-50%);
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-width: 860px;
  padding: 0 64px 28px 0;
  color: var(--muted-dark);
  font-size: 16px;
}

.final-cta {
  padding-bottom: 30px;
}

.final-cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 92px);
  border-radius: var(--radius-xl);
  color: #fff;
  background: #111;
  isolation: isolate;
}

.final-cta-panel::before,
.final-cta-panel::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255,255,255,0.17);
  border-radius: 50%;
  content: "";
}

.final-cta-panel::before {
  width: 540px;
  height: 540px;
  top: -310px;
  right: -30px;
}

.final-cta-panel::after {
  width: 350px;
  height: 350px;
  top: -190px;
  right: 120px;
}

.final-cta-panel h2 {
  max-width: 830px;
  margin: 0 0 24px;
  font-size: clamp(46px, 6.8vw, 90px);
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.final-cta-panel p {
  max-width: 690px;
  margin: 0 0 30px;
  color: rgba(255,255,255,0.66);
  font-size: 19px;
}

.site-footer {
  padding-block: 42px 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(140px, 0.55fr));
  gap: 40px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand {
  max-width: 390px;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand p {
  color: var(--muted-dark);
  font-size: 14px;
}

.footer-column h3 {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 22px;
  color: var(--muted);
  font-size: 11px;
}

.withdraw-link {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  color: var(--ink) !important;
  background: var(--surface);
  font-weight: 860 !important;
}

.withdraw-fab {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 13px;
  color: var(--ink);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 10px 30px rgba(17,17,17,0.12);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.withdraw-fab:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

/* Secondary and legal pages */
.page-hero {
  padding-block: 34px 48px;
}

.page-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: clamp(38px, 7vw, 78px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.page-hero-card::before,
.page-hero-card::after {
  position: absolute;
  border: 1px solid #deded9;
  border-radius: 50%;
  content: "";
}

.page-hero-card::before {
  width: 360px;
  height: 360px;
  top: -210px;
  right: -40px;
}

.page-hero-card::after {
  width: 240px;
  height: 240px;
  top: -130px;
  right: 100px;
}

.page-hero-card h1 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0;
  font-size: clamp(49px, 7vw, 88px);
  letter-spacing: -0.068em;
  line-height: 0.93;
}

.page-hero-card p {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 22px 0 0;
  color: var(--muted-dark);
  font-size: 19px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 820px);
  align-items: start;
  justify-content: space-between;
  gap: clamp(45px, 8vw, 110px);
  padding-bottom: 100px;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.legal-nav a {
  padding: 8px 10px;
  border-radius: 9px;
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 780;
  text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--surface-soft);
}

.legal-content {
  min-width: 0;
}

.legal-content > p:first-child,
.legal-intro {
  color: var(--muted-dark);
  font-size: 18px;
}

.legal-content h2 {
  margin: 54px 0 14px;
  font-size: 30px;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.legal-content h2:first-of-type {
  margin-top: 32px;
}

.legal-content h3 {
  margin: 29px 0 10px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.legal-content p,
.legal-content li {
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.25rem;
}

.legal-content strong {
  color: var(--ink);
}

.legal-meta {
  display: inline-flex;
  margin: 20px 0 8px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-dark);
  background: var(--surface);
  font-size: 11px;
  font-weight: 820;
}

.notice {
  margin: 24px 0;
  padding: 20px 22px;
  border: 1px solid var(--warning-line);
  border-radius: 16px;
  background: var(--warning-bg);
  color: #4c431e;
  font-size: 14px;
}

.notice--plain {
  border-color: var(--line);
  background: var(--surface);
  color: var(--muted-dark);
}

.notice--success {
  border-color: #a7d7b6;
  background: #effaf2;
  color: #14532d;
}

.notice--error {
  border-color: #f2b6c7;
  background: #fff1f5;
  color: var(--danger);
}

/* Checkout */
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(390px, 0.63fr);
  align-items: start;
  gap: 18px;
  padding-bottom: 100px;
}

.checkout-copy,
.order-summary {
  padding: clamp(32px, 5vw, 55px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.checkout-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 5vw, 68px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.checkout-copy > p {
  color: var(--muted-dark);
  font-size: 18px;
}

.checkout-points {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.checkout-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted-dark);
  font-size: 14px;
}

.checkout-points li::before {
  content: "✓";
  color: var(--ink);
  font-weight: 900;
}

.order-summary {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  color: #fff;
  background: #111;
}

.order-summary h2 {
  margin: 0 0 24px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.order-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}

.order-line strong {
  color: #fff;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  padding-block: 23px 27px;
}

.order-total span {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
}

.order-total strong {
  font-size: 43px;
  letter-spacing: -0.055em;
  line-height: 1;
}

.checkout-status {
  margin-top: 14px;
  color: rgba(255,255,255,0.58);
  font-size: 11px;
  line-height: 1.5;
}

.checkout-status[data-state="error"] {
  color: #ffc2d2;
}

.checkout-status[data-state="ready"] {
  color: #b9f2ca;
}

.checkout-contact {
  display: none;
  margin-top: 15px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.17);
  border-radius: 13px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.76);
  font-size: 12px;
}

.checkout-contact.is-visible {
  display: block;
}

.checkout-contact a {
  color: #fff;
  font-weight: 800;
}

.secure-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 15px;
  color: rgba(255,255,255,0.54);
  font-size: 10px;
}

.secure-note::before {
  content: "◉";
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding-bottom: 100px;
}

.contact-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.contact-card small {
  display: block;
  margin-bottom: 50px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card h2 {
  margin: 0 0 11px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.contact-card p {
  color: var(--muted-dark);
  font-size: 14px;
}

/* Form and withdrawal flow */
.form-shell {
  max-width: 790px;
  margin: 0 auto 100px;
  padding: clamp(30px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  gap: 20px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label,
.form-label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--line-dark);
  border-radius: 13px;
  outline: none;
  color: var(--ink);
  background: #fff;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(17,17,17,0.08);
}

.form-help {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.review-list {
  display: grid;
  margin: 24px 0;
  border-top: 1px solid var(--line);
}

.review-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.review-row dt {
  color: var(--muted);
  font-weight: 800;
}

.review-row dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-weight: 700;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.success-mark {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-bottom: 25px;
  border: 1px solid #8fc7a2;
  border-radius: 50%;
  color: var(--success);
  background: #effaf2;
  font-size: 30px;
  font-weight: 900;
}

/* Error and success pages */
.centered-page {
  display: grid;
  min-height: calc(100vh - var(--header-height));
  place-items: center;
  padding: 50px 20px 100px;
}

.centered-card {
  width: min(100%, 760px);
  padding: clamp(42px, 8vw, 82px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}

.centered-card img {
  width: 88px;
  height: 88px;
  margin: 0 auto 25px;
}

.centered-card h1 {
  margin: 0 0 17px;
  font-size: clamp(43px, 7vw, 76px);
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.centered-card p {
  max-width: 570px;
  margin: 0 auto 26px;
  color: var(--muted-dark);
  font-size: 17px;
}

/* Accessibility and states */
:focus-visible {
  outline: 3px solid #111;
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: 12px;
  }

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

  .platform-preview {
    max-width: 660px;
    justify-self: start;
    transform: none;
  }

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

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

  .trust-stat:nth-child(2) {
    border-right: 0;
  }

  .trust-stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

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

  .footer-main {
    grid-template-columns: 1.15fr repeat(3, minmax(120px, 0.55fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .brand-tagline,
  .desktop-only {
    display: none !important;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .primary-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    margin: 0;
    padding: 30px 20px 50px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: var(--paper);
  }

  .primary-nav.is-open {
    display: block;
  }

  .nav-links {
    display: grid;
    gap: 0;
  }

  .nav-links a {
    padding: 19px 3px;
    border-bottom: 1px solid var(--line);
    font-size: 22px;
  }

  .nav-links a::after {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .primary-nav .mobile-nav-actions {
    display: grid;
    gap: 10px;
    margin-top: 28px;
  }

  .section-heading--row,
  .intro-grid,
  .creator-panel,
  .pricing-layout,
  .checkout-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .intro-statement,
  .legal-nav,
  .order-summary {
    position: static;
  }

  .module-row {
    grid-template-columns: 50px 1fr;
  }

  .module-row p {
    grid-column: 2;
  }

  .creator-visual {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-main {
    grid-template-columns: 1.3fr repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .legal-nav {
    display: flex;
    overflow-x: auto;
  }

  .legal-nav a {
    flex: 0 0 auto;
  }
}

@media (max-width: 420px) {
  .site-header .brand-copy {
    display: none;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-inner {
    gap: 10px;
  }

  .brand-mark {
    width: 43px;
    height: 43px;
    flex-basis: 43px;
  }

  .brand-name {
    font-size: 14px;
  }

  .language-switcher a {
    min-width: 29px;
    height: 29px;
    font-size: 10px;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-shell,
  .dark-panel,
  .final-cta-panel,
  .page-hero-card,
  .creator-panel,
  .pricing-message,
  .price-card {
    border-radius: 26px;
  }

  .hero-shell {
    padding: 32px 24px 25px;
  }

  .hero h1 {
    font-size: clamp(49px, 16vw, 68px);
  }

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

  .hero-actions,
  .form-actions {
    display: grid;
  }

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

  .preview-body {
    padding: 16px;
  }

  .preview-banner {
    min-height: 117px;
    padding: 19px;
  }

  .preview-banner strong {
    font-size: 23px;
  }

  .preview-banner img {
    width: 47px;
    height: 47px;
  }

  .preview-course {
    width: 100%;
    min-width: 0;
  }

  .preview-float {
    display: none;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-stat {
    min-height: 105px;
    padding: 20px;
  }

  .section {
    padding-block: 70px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

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

  .feature-card,
  .step-card {
    min-height: 250px;
  }

  .feature-number,
  .step-number {
    margin-bottom: 42px;
  }

  .module-row {
    min-height: 0;
    grid-template-columns: 36px 1fr;
    gap: 15px;
    padding-block: 22px;
  }

  .module-row p {
    font-size: 13px;
  }

  .module-note {
    display: grid;
  }

  .creator-visual {
    min-height: 300px;
  }

  .creator-monogram {
    width: 165px;
    height: 165px;
    font-size: 53px;
  }

  .creator-copy,
  .pricing-message,
  .price-card {
    padding: 32px 25px;
  }

  .guarantee-strip {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .faq-answer {
    padding-right: 0;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
  }

  .withdraw-fab {
    right: 10px;
    bottom: 10px;
    max-width: calc(100vw - 20px);
  }

  .page-hero-card {
    min-height: 260px;
    padding: 34px 25px;
  }

  .page-hero-card h1 {
    font-size: clamp(43px, 14vw, 62px);
  }

  .legal-layout {
    gap: 35px;
    padding-bottom: 70px;
  }

  .legal-content h2 {
    font-size: 27px;
  }

  .checkout-copy,
  .order-summary,
  .form-shell {
    padding: 29px 24px;
    border-radius: 23px;
  }

  .review-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .withdraw-fab,
  .legal-nav,
  .btn {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .page-hero-card,
  .legal-content,
  .form-shell {
    border: 0;
    box-shadow: none;
  }

  .legal-layout {
    display: block;
  }
}

/* Static withdrawal assistant */
.form-shell h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.form-shell [data-withdrawal-review] > p:not(.eyebrow):not(.form-help) {
  color: var(--muted-dark);
  font-size: 15px;
}

.form-shell [data-withdrawal-text] {
  min-height: 270px;
  background: var(--surface-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.55;
}

.form-shell [data-withdrawal-copy-status]:not(:empty) {
  margin-top: 14px;
  color: var(--success);
  font-weight: 750;
}

/* Header action visibility */
.mobile-nav-actions {
  display: none;
}

.withdrawal-page .withdraw-fab {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .primary-nav {
    height: calc(100dvh - var(--header-height));
  }
}
