:root {
  --ink: #0a0a0a;
  --paper: #ffffff;
  --soft: #f3f3f1;
  --muted: #676767;
  --red: #e32219;
  --line: #d9d9d6;
  --max: 1180px;
}

.afterpay { margin: 14px 0 0; font-size: .92rem; line-height: 1.55; }
.afterpay a, .text-link { color: var(--red); font-weight: 800; }
.text-link { display: block; margin-top: 18px; }
.trust-line { margin: 18px 0 0; font-size: .82rem; font-weight: 800; letter-spacing: .04em; line-height: 1.6; color: var(--red); }

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(var(--max), calc(100% - 36px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img { width: min(230px, 48vw); height: auto; }

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: var(--soft);
  border-radius: 999px;
}

.language-switch button {
  min-width: 48px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  color: #fff;
  background: var(--ink);
}

.lang-panel[hidden] { display: none; }

.wrap { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }
.section { padding: clamp(72px, 10vw, 132px) 0; }

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1, h2, h3 {
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 { font-size: clamp(52px, 8.1vw, 112px); margin-bottom: 28px; }
h2 { font-size: clamp(40px, 5.8vw, 76px); margin-bottom: 26px; }
h3 { font-size: clamp(25px, 3vw, 38px); margin-bottom: 16px; }

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  padding-top: 48px;
  padding-bottom: 48px;
}

.hero-copy { padding: 42px 0; }
.hero-copy .lead {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.38;
  font-weight: 700;
}

.hero-art {
  display: grid;
  place-items: center;
  align-self: stretch;
  overflow: hidden;
}

.hero-art img {
  width: auto;
  max-height: min(78svh, 860px);
  object-fit: contain;
}

.promise {
  border-top: 1px solid var(--line);
}

.promise-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: start;
}

.promise h2 {
  max-width: 660px;
  margin-bottom: 0;
}

.promise-copy {
  max-width: 690px;
  font-size: 18px;
}

.promise-copy p:last-child {
  margin-bottom: 0;
}

.promise-lead {
  font-size: clamp(23px, 2.3vw, 31px);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.promise-callout {
  margin: 34px 0;
  padding: 24px 0 24px 28px;
  border-left: 6px solid var(--red);
  font-size: 20px;
  line-height: 1.42;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.button::after { content: "↗"; font-size: 18px; }
.button:hover { transform: translateY(-2px); background: var(--red); border-color: var(--red); }
.button.secondary { background: #fff; color: var(--ink); }
.button.secondary:hover { color: #fff; background: var(--ink); border-color: var(--ink); }
.button.disabled { color: #808080; background: #ededeb; border-color: #ededeb; cursor: default; }
.button.disabled::after { content: none; }
.button.disabled:hover { transform: none; }

.manifesto { background: var(--ink); color: #fff; }
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: end;
}

.manifesto .stat {
  margin: 0;
  color: var(--red);
  font-size: clamp(96px, 16vw, 220px);
  line-height: 0.78;
  font-weight: 900;
  letter-spacing: -0.09em;
}

.manifesto .copy { max-width: 540px; font-size: clamp(19px, 2vw, 27px); font-weight: 700; }
.manifesto .copy p:last-child { margin-bottom: 0; }

.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head p { color: var(--muted); font-size: 19px; }

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

.example-card { background: var(--soft); }
.example-image { aspect-ratio: 9 / 12; overflow: hidden; background: #fff; }
.example-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.example-body { padding: 28px; }
.example-name { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; }
.example-name h3 { margin-bottom: 8px; }
.reading { color: var(--red); font-size: 13px; font-weight: 900; letter-spacing: 0.12em; }
.example-body p { color: #333; margin-bottom: 0; }

.products { background: var(--soft); }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.product-card { display: flex; flex-direction: column; min-height: 490px; padding: clamp(30px, 4vw, 54px); background: #fff; }
.product-card.featured { color: #fff; background: var(--ink); }
.product-label { color: var(--red); font-size: 13px; font-weight: 900; letter-spacing: 0.15em; }
.price { margin: 16px 0 24px; font-size: clamp(54px, 7vw, 88px); font-weight: 900; letter-spacing: -0.07em; line-height: 1; }
.price small { font-size: 16px; letter-spacing: 0; }
.product-card ul { margin: 0 0 34px; padding: 0; list-style: none; }
.product-card li { padding: 10px 0; border-bottom: 1px solid rgba(127, 127, 127, 0.35); }
.product-card .button { margin-top: auto; }
.product-card.featured .button { background: #fff; color: var(--ink); border-color: #fff; }
.product-card.featured .button:hover { color: #fff; background: var(--red); border-color: var(--red); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: steps; }
.step { position: relative; padding-top: 72px; counter-increment: steps; }
.step::before {
  content: "0" counter(steps);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--red);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}
.step h3 { font-size: 23px; line-height: 1.05; }
.step p { color: var(--muted); }

.faq { max-width: 900px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-size: 19px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-size: 28px; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 760px; padding: 0 44px 24px 0; color: var(--muted); }

.final-cta { text-align: center; background: var(--red); color: #fff; }
.final-cta .eyebrow { color: #fff; }
.final-cta h2 { max-width: 950px; margin-left: auto; margin-right: auto; }
.final-cta .button { background: #fff; color: var(--ink); border-color: #fff; }

.site-footer { padding: 34px 0; background: var(--ink); color: #fff; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.footer-inner img { width: 190px; filter: brightness(0) invert(1); }
.footer-inner p { margin: 0; color: #aaa; font-size: 13px; }

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; gap: 8px; min-height: auto; }
  .hero-copy { padding-bottom: 12px; }
  .hero-art { min-height: 72svh; }
  .hero-art img { max-height: 74svh; }
  .promise-grid, .manifesto-grid, .product-grid { grid-template-columns: 1fr; }
  .examples { grid-template-columns: 1fr; }
  .example-card { display: grid; grid-template-columns: minmax(150px, 0.75fr) 1fr; }
  .example-image { aspect-ratio: 9 / 13; }
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .header-inner, .wrap { width: min(100% - 28px, var(--max)); }
  .site-header .header-inner { min-height: 66px; }
  .brand img { width: 175px; }
  .language-switch button { min-width: 42px; padding: 7px 9px; }
  .section { padding: 72px 0; }
  h1 { font-size: clamp(48px, 15vw, 72px); }
  h2 { font-size: clamp(38px, 12vw, 56px); }
  .hero { padding-top: 26px; padding-bottom: 38px; }
  .hero-copy .lead { font-size: 19px; }
  .hero-art { min-height: 66svh; }
  .hero-art img { max-height: 68svh; }
  .promise-grid { gap: 36px; }
  .promise-copy { font-size: 17px; }
  .promise-callout { margin: 28px 0; padding-left: 20px; font-size: 18px; }
  .manifesto .stat { font-size: 106px; }
  .example-card { grid-template-columns: 1fr; }
  .example-image { aspect-ratio: 9 / 11; }
  .example-body { padding: 24px; }
  .product-card { min-height: auto; padding: 30px 24px; }
  .steps { grid-template-columns: 1fr; }
  .step { padding-top: 62px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

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