/* ============================================
   Mandatum — Layout
   ============================================ */

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(0.97 0.012 85 / 0.82);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--rule-soft);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  font-size: 22px;
  color: var(--cinnabar);
  letter-spacing: -0.02em;
}
.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cinnabar); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.25s;
}
.nav-cta:hover { background: var(--cinnabar-deep); }
.nav-cta .arr { transition: transform 0.25s; }
.nav-cta:hover .arr { transform: translateX(4px); }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: auto 1fr; }
}

/* HERO */
.hero {
  padding: 60px var(--gutter) 120px;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-hanja {
  position: absolute;
  right: -4vw;
  top: 2vh;
  font-size: clamp(320px, 55vw, 780px);
  color: var(--cinnabar);
  opacity: 0.038;
  line-height: 0.82;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-meta {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-meta::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--cinnabar);
}
.hero-title {
  font-size: clamp(24px, 3.2vw, 46px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--cinnabar);
  font-weight: 300;
}
.hero-lede {
  font-size: clamp(16px, 1.25vw, 19px);
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero-lede em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-size: 1.08em;
}
.hero-lede .hl {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cinnabar);
  border-bottom: 1px solid var(--cinnabar);
  padding-bottom: 1px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  max-width: 560px;
}
.proof-n {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.proof-n span {
  font-size: 14px;
  color: var(--ink-mute);
  margin-left: 2px;
}
.proof-l {
  font-size: 11px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* Hero art */
.hero-art {
  position: relative;
  z-index: 2;
  aspect-ratio: 3 / 4;
  max-width: 520px;
  justify-self: end;
  width: 100%;
}
.hero-ph {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-ph .ph-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-stamp {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 110px;
  height: 110px;
  background: var(--cinnabar);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  font-weight: 300;
  border-radius: 2px;
  box-shadow: 0 20px 40px -20px oklch(0.55 0.16 40 / 0.6);
  transform: rotate(-4deg);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 80px;
    min-height: auto;
  }
  .hero-art {
    max-width: 400px;
    justify-self: start;
    margin-top: 20px;
  }
  .hero-proof {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MANIFESTO */
.manifesto {
  padding-top: clamp(60px, 10vh, 120px);
  padding-bottom: clamp(60px, 10vh, 120px);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.manifesto .eyebrow { display: block; margin-bottom: 32px; }
.manifesto-text {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.35;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.manifesto-text em {
  font-style: italic;
  color: var(--cinnabar);
}
.manifesto-text .ink-mute { color: var(--ink-mute); }
.manifesto-sig {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

/* SECTION HEAD */
.section-head {
  margin-bottom: clamp(48px, 6vh, 88px);
  max-width: 820px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head .eyebrow {
  display: block;
  margin-bottom: 20px;
}
.section-head h2 em {
  font-style: italic;
  color: var(--cinnabar);
  font-weight: 300;
}
.section-lede {
  font-size: 16px;
  color: var(--ink-soft);
  margin-top: 24px;
  max-width: 560px;
}
.section-lede a {
  color: var(--ink);
  border-bottom: 1px solid var(--cinnabar);
}

/* DISCOVER */
.discover { background: var(--paper-deep); }
.tabs {
  display: inline-flex;
  gap: 0;
  border: 1px solid var(--ink);
  border-radius: 2px;
  padding: 4px;
  margin-bottom: 56px;
}
.tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: transparent;
  border: 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
}
.tab.active {
  background: var(--ink);
  color: var(--paper);
}
.tab-hanja { font-size: 16px; color: inherit; }

.discover-grid { display: block; }
.discover-panel { display: none; }
.discover-panel.active {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.discover-title {
  font-size: clamp(36px, 4.5vw, 56px);
  margin: 20px 0 24px;
  line-height: 1.05;
}
.discover-title em {
  font-style: italic;
  color: var(--cinnabar);
}
.discover-sub {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 420px;
}
.discover-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.discover-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.discover-list li:first-child { padding-top: 0; }
.discover-list li:last-child { border-bottom: 0; }
.list-n {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--cinnabar);
  letter-spacing: 0.1em;
  padding-top: 4px;
}
.discover-list h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 6px;
}
.discover-list p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.72;
}
.disc-premium-divider {
  display: block !important;
  grid-template-columns: none !important;
  padding: 16px 0 8px !important;
  border-bottom: none !important;
  border-top: 1px solid var(--rule) !important;
  margin-top: 8px;
}
.disc-premium-divider span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--cinnabar);
  opacity: 0.8;
}

@media (max-width: 900px) {
  .discover-panel.active { grid-template-columns: 1fr; }
}

/* METHOD */
.method {
  overflow: hidden;
}
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 7vw, 120px);
  align-items: start;
}
.method-left { position: sticky; top: 100px; }
.method-left h2 { margin: 20px 0 28px; }
.method-left h2 em { font-style: italic; color: var(--cinnabar); }
.method-lede {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  line-height: 1.65;
}

.method-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.method-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.method-card:last-child { border-bottom: 1px solid var(--rule); }
.method-num {
  font-size: 56px;
  color: var(--cinnabar);
  font-weight: 200;
  line-height: 1;
}
.method-card h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 14px;
}
.method-card p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 18px;
}
.method-card p b {
  color: var(--ink);
  font-weight: 500;
  font-family: var(--serif);
  font-size: 1.08em;
}
.method-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.method-meta span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--rule);
  background: var(--paper);
}

@media (max-width: 900px) {
  .method-grid { grid-template-columns: 1fr; }
  .method-left { position: static; }
  .method-card { grid-template-columns: 56px 1fr; gap: 20px; }
  .method-num { font-size: 40px; }
}

/* HOW */
.how { background: var(--ink); color: var(--paper); }
.how h2, .how h4 { color: var(--paper); }
.how .eyebrow { color: var(--gold); }
.how .section-head h2 em { color: var(--gold); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step-n {
  font-size: 32px;
  color: var(--gold);
  font-weight: 300;
  letter-spacing: -0.02em;
}
.step h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}
.step p {
  font-size: 14px;
  color: oklch(0.75 0.01 60);
  line-height: 1.55;
}
.step-ph {
  margin-top: 16px;
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(
      45deg,
      oklch(0.28 0.015 60),
      oklch(0.28 0.015 60) 12px,
      oklch(0.32 0.015 60) 12px,
      oklch(0.32 0.015 60) 24px
    );
  border: 1px solid oklch(0.35 0.01 60);
}
.step-ph .ph-label {
  background: var(--ink);
  color: var(--gold);
  border-color: oklch(0.4 0.01 60);
}

@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; }
}

/* PRICING */
.pricing { background: var(--paper-deep); }
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.plan {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 48px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan-featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.plan-featured h3, .plan-featured p, .plan-featured .price-currency, .plan-featured .price-n {
  color: var(--paper);
}
.plan-featured .plan-list li {
  color: oklch(0.8 0.01 60);
  border-color: oklch(0.3 0.01 60);
}
.plan-featured .plan-list li b { color: var(--paper); }
.plan-badge {
  position: absolute;
  top: -11px;
  left: 40px;
  background: var(--cinnabar);
  color: var(--paper);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.plan-head { margin-bottom: 28px; }
.plan-title {
  font-size: 34px;
  font-weight: 400;
  margin: 8px 0 10px;
}
.plan-sub {
  font-size: 14.5px;
  color: var(--ink-soft);
  max-width: 340px;
}
.plan-featured .plan-sub { color: oklch(0.75 0.01 60); }
.plan-price {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 28px;
}
.plan-featured .plan-price {
  border-color: oklch(0.3 0.01 60);
}
.price-list {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.price-strike {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-color: var(--cinnabar);
  text-decoration-thickness: 1.5px;
  letter-spacing: -0.02em;
}
.plan-featured .price-strike {
  color: oklch(0.65 0.01 60);
}
.price-list-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.plan-featured .price-list-label { color: oklch(0.7 0.01 60); }
.price-final {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.price-final-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cinnabar);
}
.plan-featured .price-final-label { color: var(--gold); }
.price-final-val {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.plan-featured .price-final-val { color: var(--paper); }

/* Coupon banner — serif-led, refined */
.coupon-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  padding: 52px 56px;
  background: var(--ink);
  color: var(--paper);
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink);
  box-shadow: 0 24px 60px -32px oklch(0.2 0.02 60 / 0.35);
}
.coupon-banner::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid oklch(0.32 0.01 60);
  pointer-events: none;
}
.coupon-banner::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -12%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--cinnabar) 0%, transparent 65%);
  opacity: 0.22;
  pointer-events: none;
}

/* Decorative corner serifs */
.coupon-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  z-index: 2;
  opacity: 0.9;
}
.coupon-corner-tl { top: 18px; left: 18px; border-top-width: 1px; border-left-width: 1px; }
.coupon-corner-tr { top: 18px; right: 18px; border-top-width: 1px; border-right-width: 1px; }
.coupon-corner-bl { bottom: 18px; left: 18px; border-bottom-width: 1px; border-left-width: 1px; }
.coupon-corner-br { bottom: 18px; right: 18px; border-bottom-width: 1px; border-right-width: 1px; }

.coupon-main { position: relative; max-width: 620px; }

.coupon-badge-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.coupon-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: oklch(0.85 0.01 60);
  padding: 0;
  border: 0;
  background: transparent;
  text-transform: none;
}
.coupon-eyebrow > span:last-child {
  border-bottom: 1px solid oklch(0.4 0.012 60);
  padding-bottom: 3px;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cinnabar);
  box-shadow: 0 0 0 0 var(--cinnabar);
  animation: pulse 1.8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 oklch(0.55 0.16 40 / 0.7); }
  70% { box-shadow: 0 0 0 8px oklch(0.55 0.16 40 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.55 0.16 40 / 0); }
}
.coupon-discount-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 1px;
}
.coupon-discount-chip em {
  font-style: italic;
  font-weight: 400;
}

.coupon-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 300;
  color: var(--paper);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-wrap: balance;
}
.coupon-title em {
  font-style: italic;
  color: var(--cinnabar);
  font-weight: 400;
}
.coupon-discount-big {
  display: inline-block;
  font-weight: 400;
  color: var(--gold);
  font-style: italic;
  letter-spacing: -0.03em;
  font-size: 1.2em;
}
.coupon-discount-big .pct {
  font-size: 0.55em;
  margin-left: 2px;
  vertical-align: 0.4em;
  font-style: italic;
  letter-spacing: 0;
}

/* Steps column — right side of coupon banner */
.coupon-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid oklch(0.30 0.012 60);
  padding: 8px 0 8px 44px;
  align-self: center;
  min-width: 280px;
}
.coupon-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  min-width: 0;
}
.coupon-step-n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 300;
  color: var(--cinnabar);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 20px;
}
.coupon-step-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1.2;
  min-width: 0;
}
.coupon-step-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(0.55 0.01 60);
}
.coupon-step-val {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: oklch(0.75 0.01 60);
  letter-spacing: 0.01em;
}
.coupon-hint {
  font-family: var(--sans);
  font-size: 13px;
  color: oklch(0.55 0.01 60);
  line-height: 1.6;
  margin-top: 4px;
  max-width: 380px;
}
.coupon-divider {
  height: 1px;
  width: 100%;
  background: oklch(0.26 0.012 60);
  margin: 0;
}

.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
  text-decoration: none;
  padding: 2px 0;
  border-bottom: 1px solid oklch(0.68 0.09 75 / 0.4);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.ig-handle:hover {
  color: oklch(0.78 0.10 75);
  border-color: var(--gold);
}
.ig-handle-text { line-height: 1; }
.ig-icon {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  opacity: 0.85;
}

/* Right CTA column */
.coupon-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  padding: 0 8px 0 36px;
  border-left: 1px solid oklch(0.28 0.012 60);
  min-width: 240px;
  align-self: center;
}
.coupon-cta-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: oklch(0.62 0.01 60);
}
.coupon-cta-handle {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold);
  letter-spacing: -0.01em;
  font-style: italic;
  font-weight: 400;
  text-decoration: none;
  padding: 2px 0;
  border-bottom: 1px solid oklch(0.68 0.09 75 / 0.4);
  transition: border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.coupon-cta-handle:hover {
  color: oklch(0.78 0.10 75);
  border-color: var(--gold);
  transform: translateX(2px);
}
.coupon-cta-arr {
  font-size: 20px;
  color: var(--cinnabar);
  transition: transform 0.3s ease;
  display: inline-block;
}
.coupon-cta-handle:hover .coupon-cta-arr { transform: translateX(4px); }

@media (max-width: 960px) {
  .coupon-banner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 28px;
  }
  .coupon-steps {
    border-left: 0;
    border-top: 1px solid oklch(0.28 0.012 60);
    padding: 8px 0 0;
    min-width: 0;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
  .coupon-step { flex: 1; padding: 20px 16px; }
  .coupon-divider { width: 1px; height: auto; margin: 12px 0; }
}
@media (max-width: 520px) {
  .coupon-steps { flex-direction: column; }
  .coupon-divider { width: 100%; height: 1px; margin: 0; }
  .coupon-step { padding: 16px 0; }
}
.plan-list {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.plan-list li {
  font-size: 14.5px;
  color: var(--ink-soft);
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
  padding-left: 24px;
}
.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 10px;
  height: 1px;
  background: var(--cinnabar);
}
.plan-list li:last-child { border-bottom: 0; }
.plan-list li em {
  font-style: italic;
  color: var(--ink);
}
.plan-featured .plan-list li em { color: var(--paper); }
.plan-featured .plan-list li::before { background: var(--gold); }
.plan-cta {
  justify-content: center;
  width: 100%;
}
.plan-note {
  margin-top: 40px;
  text-align: center;
  color: var(--ink-mute);
}

@media (max-width: 760px) {
  .plans { grid-template-columns: 1fr; }
  .plan { padding: 40px 28px; }
}

/* ADDONS */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.addon {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 32px 28px;
  transition: transform 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.addon:hover {
  transform: translateY(-2px);
  border-color: var(--cinnabar);
}
.addon-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.addon-hanja {
  font-size: 36px;
  color: var(--cinnabar);
  font-weight: 300;
  line-height: 1;
}
.addon-price {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--ink);
  font-weight: 400;
}
.addon h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
}
.addon p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.addon-ghost {
  background: transparent;
  border-style: dashed;
  border-color: var(--ink-mute);
}
.addon-ghost:hover {
  border-color: var(--cinnabar);
}

@media (max-width: 880px) {
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .addon-grid { grid-template-columns: 1fr; }
}

/* REVIEWS */
.reviews { background: var(--paper-deep); overflow: hidden; }
.reviews-grid {
  columns: 3;
  column-gap: 24px;
  margin-bottom: 56px;
}
.review {
  break-inside: avoid;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 28px 26px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.3s;
}
.review:hover { transform: translateY(-2px); }
.review-q {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  padding-top: 14px;
  border-top: 1px solid var(--rule-soft);
}
.review-who { font-weight: 500; }
.review-stars { color: var(--cinnabar); letter-spacing: 0; }
.reviews-footer { text-align: center; }

@media (max-width: 960px) {
  .reviews-grid { columns: 2; }
}
@media (max-width: 640px) {
  .reviews-grid { columns: 1; }
}

/* REFERRAL */
.referral { background: var(--paper); }
.referral-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.referral-left h2 { margin: 20px 0 24px; }
.referral-left h2 em { font-style: italic; color: var(--cinnabar); }
.referral-lede {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 420px;
}
.tier {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.tier:last-child { border-bottom: 1px solid var(--rule); }
.tier-n {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
}
.tier-body h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
}
.tier-body p {
  font-size: 14.5px;
  color: var(--ink-soft);
}
.tier-gold { background: oklch(0.96 0.015 80); padding-left: 20px; padding-right: 20px; margin: 0 -20px; }
.tier-gold .tier-n { color: var(--cinnabar); }
.tier-variant { display: block; margin-top: 4px; }

@media (max-width: 900px) {
  .referral-inner { grid-template-columns: 1fr; }
}

/* FAQ */
.faq { background: var(--paper-deep); }
.faq-list { border-top: 1px solid var(--rule); }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
}
.faq-item summary {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--cinnabar);
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 720px;
}

/* FINAL CTA */
.final-cta {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: clamp(100px, 16vh, 180px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.final-hanja {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(400px, 60vw, 720px);
  color: var(--cinnabar);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}
.final-title {
  font-size: clamp(48px, 7vw, 96px);
  color: var(--paper);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 48px;
  position: relative;
}
.final-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.final-sub {
  font-family: var(--serif);
  font-size: 0.42em;
  color: oklch(0.75 0.01 60);
  font-style: italic;
  letter-spacing: 0.01em;
  display: block;
  margin-top: 24px;
}
.final-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
}
.btn-lg {
  padding: 22px 40px;
  font-size: 15px;
}
.final-cta .btn-primary {
  background: var(--cinnabar);
  color: var(--paper);
}
.final-cta .btn-primary:hover {
  background: var(--paper);
  color: var(--ink);
}
.final-meta { color: oklch(0.6 0.01 60); }

/* FOOTER */
.footer {
  background: var(--paper);
  padding: 80px var(--gutter) 40px;
  border-top: 1px solid var(--rule);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.foot-brand .brand-mark-lg {
  font-size: 40px;
  color: var(--cinnabar);
  font-weight: 200;
  line-height: 1;
  margin-bottom: 10px;
}
.foot-name {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 16px;
}
.foot-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.4;
  max-width: 260px;
}
.foot-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 20px;
}
.foot-col a {
  display: block;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--cinnabar); }
.foot-langs {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.8;
}
.foot-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

/* TWEAKS PANEL */
.tweaks-panel {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 280px;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 4px;
  box-shadow: 0 24px 48px -16px oklch(0.2 0.02 60 / 0.3);
  z-index: 200;
  font-size: 13px;
}
.tweaks-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--rule);
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px 4px 0 0;
}
.tweaks-head .hanja { color: var(--gold); font-size: 16px; }
.tweaks-head span:nth-child(2) {
  flex: 1;
  font-family: var(--serif);
  font-size: 15px;
}
#tweaks-close {
  background: none;
  border: 0;
  color: var(--paper);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}
.tweaks-body { padding: 16px; }
.tweak-row { margin-bottom: 16px; }
.tweak-row label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.tweak-opts {
  display: flex;
  gap: 4px;
  border: 1px solid var(--rule);
  padding: 2px;
  border-radius: 2px;
}
.tweak-opts button {
  flex: 1;
  padding: 6px 10px;
  background: transparent;
  border: 0;
  font-size: 12px;
  cursor: pointer;
  color: var(--ink-soft);
  border-radius: 2px;
}
.tweak-opts button.active {
  background: var(--ink);
  color: var(--paper);
}
.tweak-val {
  float: right;
  font-family: var(--mono);
  color: var(--cinnabar);
}
#hue-slider {
  width: 100%;
  accent-color: var(--cinnabar);
}

/* THEME VARIANTS */
body[data-theme="ink"] {
  --paper: oklch(0.14 0.012 60);
  --paper-deep: oklch(0.11 0.010 60);
  --paper-shadow: oklch(0.08 0.008 60);
  --ink: oklch(0.94 0.012 85);
  --ink-soft: oklch(0.75 0.012 60);
  --ink-mute: oklch(0.55 0.010 60);
  --rule: oklch(0.28 0.012 60);
  --rule-soft: oklch(0.22 0.010 60);
}
body[data-theme="ink"] .how { background: oklch(0.08 0.008 60); }
body[data-theme="ink"] .plan { background: oklch(0.17 0.012 60); }
body[data-theme="ink"] .plan-featured { background: var(--cinnabar-deep); border-color: var(--cinnabar); }
body[data-theme="ink"] .addon { background: oklch(0.17 0.012 60); }
body[data-theme="ink"] .review { background: oklch(0.17 0.012 60); }
body[data-theme="ink"] .capture { background: #05080b; }

body[data-theme="paper"] {
  --paper: #fdfcf9;
  --paper-deep: #f5f3ec;
  --rule: oklch(0.88 0.005 85);
  --cinnabar: oklch(0.48 0.15 35);
}

body[data-hide-hanja="true"] .hero-hanja,
body[data-hide-hanja="true"] .watermark,
body[data-hide-hanja="true"] .final-hanja { display: none; }


/* ============================================
   WHY MANDATUM — Box-based comparison
   ============================================ */
.why {
  padding: clamp(100px, 14vh, 160px) 0;
  background: var(--paper-deep);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.why .watermark {
  position: absolute;
  top: clamp(40px, 6vw, 80px);
  right: -3vw;
  font-size: clamp(180px, 26vw, 360px);
  color: var(--ink);
  opacity: 0.04;
  font-weight: 200;
  pointer-events: none;
  user-select: none;
  line-height: 0.85;
  letter-spacing: -0.02em;
  z-index: 0;
}
.why .wrap { position: relative; z-index: 1; }

/* Section head */
.why-head {
  max-width: 780px;
  margin: 0 auto clamp(72px, 9vh, 110px);
  text-align: center;
}
.why-head .eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cinnabar);
  margin-bottom: 28px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cinnabar);
}
.why-head h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5.6vw, 76px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin: 0 0 28px;
  text-wrap: balance;
}
.why-head h2 em { font-style: italic; color: var(--cinnabar); font-weight: 400; }
.why-lede {
  font-family: var(--serif);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Head-to-head cards ---- */
.why-versus {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: clamp(90px, 11vh, 130px);
}
.vs-card {
  padding: 44px 40px 40px;
  border: 1px solid var(--rule);
  background: var(--paper);
  position: relative;
}
.vs-us {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-mute);
  font-weight: 400;
}
.vs-card-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.vs-us .vs-card-head { border-bottom-color: oklch(0.32 0.012 60); }
.vs-mark {
  font-size: 34px;
  line-height: 1;
  color: var(--gold);
  font-weight: 300;
  letter-spacing: 0.04em;
}
.vs-mark-dim {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  color: var(--ink-mute);
  font-weight: 300;
}
.vs-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: oklch(0.68 0.01 60);
  margin-bottom: 6px;
}
.vs-them .vs-eyebrow { color: var(--ink-mute); }
.vs-card-head h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1;
  margin: 0;
  color: var(--paper);
}
.vs-them .vs-card-head h3 { color: var(--ink); }

.vs-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.vs-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  font-family: var(--serif);
  font-size: 16.5px;
  line-height: 1.5;
  color: oklch(0.9 0.01 75);
  letter-spacing: -0.003em;
}
.vs-them .vs-list li { color: var(--ink-mute); }
.vs-list li b { color: var(--paper); font-weight: 500; }
.vs-them .vs-list li b { color: var(--ink); font-weight: 500; }
.vs-tick, .vs-x {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 17px; line-height: 1; height: 24px;
}
.vs-tick { color: var(--gold); font-weight: 400; }
.vs-x { color: var(--ink-mute); font-weight: 300; font-size: 22px; }

/* ---- Detail section header ---- */
.why-detail { margin-bottom: clamp(90px, 11vh, 130px); }
.why-detail-head {
  display: flex;
  align-items: baseline;
  gap: 28px;
  padding-bottom: 28px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--ink);
  flex-wrap: wrap;
}
.eyebrow-sm {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cinnabar);
  flex-shrink: 0;
}
.why-detail-head h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
  line-height: 1.12;
  text-wrap: balance;
}

/* ---- Grid of rows, each row a clear box ---- */
.why-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-row {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 0;
  overflow: hidden;
}
.why-row-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--rule);
  background: linear-gradient(180deg, var(--paper) 0%, oklch(0.955 0.014 82) 100%);
}
.why-row-n {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--cinnabar);
  flex-shrink: 0;
}
.why-row-head h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
}

.why-row-cards {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 0;
}
.why-cell {
  padding: 24px 26px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 110px;
}
.why-cell:last-child { border-right: 0; }

.why-cell-us {
  background: oklch(0.55 0.16 40 / 0.05);
  position: relative;
}
.why-cell-us::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 3px;
  background: var(--cinnabar);
}
.why-cell-tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cinnabar);
  margin-bottom: 4px;
}
.why-cell-tag-dim {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.why-cell-val {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.005em;
  margin: 0;
}
.why-cell-val b { color: var(--cinnabar); font-weight: 600; }
.why-val-hanja { color: var(--ink-mute); font-weight: 400; font-size: 0.9em; }
.why-cell-val-dim {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-mute);
  font-weight: 300;
  line-height: 1.35;
  margin: 0;
}
.why-cell-sub {
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

/* ---- Three pillars ---- */
.why-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: clamp(90px, 11vh, 130px);
}
.why-pillar {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 44px 36px 40px;
  position: relative;
}
.why-pillar-n {
  display: inline-block;
  font-size: 40px;
  font-weight: 300;
  color: var(--cinnabar);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.why-pillar-label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.why-pillar h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 18px;
  text-wrap: balance;
}
.why-pillar p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 40ch;
  margin: 0;
  text-wrap: pretty;
}
.why-pillar p em { font-style: italic; color: var(--ink); font-weight: 400; }

/* ---- Closing ---- */
.why-close {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.why-close-q { position: relative; margin: 0; padding: 0 0 0 56px; }
.why-close-mark {
  position: absolute;
  top: -18px; left: 0;
  font-family: var(--serif);
  font-size: 100px;
  line-height: 1;
  color: var(--cinnabar);
  opacity: 0.4;
  font-weight: 300;
}
.why-close-q p {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.why-close-q em { font-style: italic; color: var(--cinnabar); font-weight: 400; }
.why-close-dim { color: var(--ink-mute); font-style: italic; }
.why-close-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.why-close-meta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Responsive */
@media (max-width: 1024px) {
  .why-row-cards { grid-template-columns: 1fr 1fr; }
  .why-cell {
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    min-height: 0;
  }
  .why-cell:nth-child(2n) { border-right: 0; }
  .why-cell:nth-last-child(-n+2) { border-bottom: 0; }
  .why-cell-us { grid-column: 1 / -1; }
  .why-cell-us + .why-cell { border-right: 1px solid var(--rule); }
}
@media (max-width: 960px) {
  .why-versus { grid-template-columns: 1fr; }
  .vs-divider { padding: 8px 0; }
  .why-pillars { grid-template-columns: 1fr; }
  .why-close { grid-template-columns: 1fr; gap: 32px; padding: 40px 28px; }
  .why-close-q { padding-left: 44px; }
  .why-close-mark { font-size: 80px; }
}
@media (max-width: 640px) {
  .vs-card { padding: 32px 24px; }
  .why-row-head { padding: 18px 20px; flex-direction: column; gap: 6px; align-items: flex-start; }
  .why-row-cards { grid-template-columns: 1fr; }
  .why-cell {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    padding: 20px 22px;
  }
  .why-cell:last-child { border-bottom: 0; }
  .why-cell-us { grid-column: auto; }
  .why-pillar { padding: 36px 26px 32px; }
  .why-detail-head { flex-direction: column; gap: 10px; }
}


/* Hero video */
.hero-video-wrap {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* How It Works — step images */
.step-img {
  margin-top: 16px;
  aspect-ratio: 4 / 3;
  background: var(--ink);
  border: 1px solid oklch(0.35 0.01 60);
  overflow: hidden;
  position: relative;
}
.step-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
