/* Cheese board — website theme (Editorial Dark)
   Redesign 2026-07: dark editorial surface, coral accent, 1300px content cap. */

:root {
  --bg: #0D0D0B;
  --bg-raise: #17170F;
  --bg-raise-2: #131310;
  --cream: #F4F3EE;
  --cream-dim: #EDEBE3;
  --ink: #17170F;
  --ink-soft: #3A3A32;
  --muted: #62625A;
  --coral: #D97757;
  --coral-deep: #C4633F;
  --gold: #ECBF3F;
  --hairline: rgba(255, 255, 255, .12);
  --hairline-strong: rgba(255, 255, 255, .22);
  --hairline-light: #DEDDD5;
  --radius: 4px;
  --max: 1300px;
  --gutter: max(clamp(18px, 3vw, 40px), calc((100% - 1300px) / 2));
  --gutter-only: max(0px, calc((100% - 1300px) / 2));
  --mono: "Space Grotesk", "Pretendard Variable", Pretendard, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.75;
  word-break: keep-all;
  overflow-wrap: break-word;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body, button, input, select, textarea { font-family: inherit; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--coral); }
img { display: block; max-width: 100%; }
p, h1, h2, h3, h4 { margin: 0; }
ul, ol { margin: 0; padding: 0; }
ul { list-style: none; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(217, 119, 87, .5);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- shared primitives ---------- */

.bleed { padding-inline: var(--gutter); }

.eyebrow {
  display: inline-block;
  font: 600 12px/1 var(--mono);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--coral);
}

.tag {
  display: inline-block;
  font: 600 11px/1 var(--mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral);
  border: 1px solid rgba(217, 119, 87, .4);
  padding: 8px 11px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 17px 30px;
  white-space: nowrap;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
}

.button.primary { background: var(--coral); color: #FFF; }
.button.primary:hover { background: var(--coral-deep); color: #FFF; transform: translateY(-2px); }

.button.secondary { border-color: rgba(255, 255, 255, .4); color: var(--cream); }
.button.secondary:hover { background: rgba(255, 255, 255, .1); border-color: var(--cream); color: var(--cream); }

.button.small { font-size: 14px; padding: 13px 20px; }

.button.disabled,
.button[aria-disabled="true"] {
  border-color: var(--hairline-strong);
  color: rgba(244, 243, 238, .72);
  cursor: default;
  pointer-events: none;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 80px;
  border-bottom: 1px solid var(--hairline);
  background: rgba(13, 13, 11, .92);
  backdrop-filter: blur(14px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.045em;
}
.logo:hover { color: inherit; }
.logo-cheese { flex: none; }
.logo-board { color: var(--gold); }

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 2.4vw, 40px);
}

.site-nav a {
  font: 600 12px/1 var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--coral); border-bottom-color: var(--coral); }

.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }

.language-toggle { display: flex; border: 1px solid var(--hairline-strong); }
.language-toggle button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: 600 12px/1 var(--mono);
  letter-spacing: .06em;
  padding: 10px 12px;
  color: rgba(244, 243, 238, .55);
  transition: background .14s ease, color .14s ease;
}
.language-toggle button:hover { color: var(--cream); }
.language-toggle button.is-active { background: var(--coral); color: #FFF; }

/* ---------- hero ---------- */

.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--hairline); }

.hero-bg { position: absolute; inset: -8% 0; width: 100%; height: 116%; object-fit: cover; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,13,11,.96) 0%, rgba(13,13,11,.88) 46%, rgba(13,13,11,.6) 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 52px;
  align-items: center;
  padding-block: clamp(64px, 7vw, 104px) clamp(68px, 7vw, 108px);
}

.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 28px; min-width: 0; }

.hero-copy h1 {
  font-size: clamp(35px, 3.28vw, 51px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.06;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.62;
  color: rgba(244, 243, 238, .74);
  max-width: 620px;
  text-wrap: pretty;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 8px; }

.hero-visual {
  border: 1px solid rgba(255, 255, 255, .16);
  background: var(--bg-raise);
  overflow: hidden;
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .9);
  min-width: 0;
}
.hero-visual img { width: 100%; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.hero-visual:hover img { transform: scale(1.03); }

/* ---------- canvas band ---------- */

.canvas-band { padding-block: clamp(60px, 6.5vw, 96px) clamp(56px, 6vw, 88px); }

.canvas-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 34px;
}

.section-title {
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 800;
  letter-spacing: -.048em;
  line-height: 1.06;
}

.download-note { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.download-note p { font: 400 12px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: rgba(244, 243, 238, .5); }

.frame-wide { overflow: hidden; height: clamp(360px, 46vw, 640px); border: 1px solid rgba(255, 255, 255, .14); }
.frame-wide img { width: 100%; height: 126%; object-fit: cover; object-position: center top; }

/* ---------- feature bands ---------- */

.feature-band {
  display: flex;
  border-top: 1px solid var(--hairline);
  padding-inline: var(--gutter-only);
}
.feature-band.reverse { flex-direction: row-reverse; }

.feature-copy {
  flex: 1 1 0;
  min-width: 0;
  padding: clamp(48px, 6vw, 84px) clamp(22px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
}

.feature-copy h3 {
  font-size: clamp(30px, 2.5vw, 40px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.12;
  max-width: 580px;
}

.feature-copy p {
  font-size: 17px;
  line-height: 1.72;
  color: rgba(244, 243, 238, .7);
  max-width: 560px;
  text-wrap: pretty;
}

.feature-list { display: flex; flex-direction: column; gap: 12px; padding-top: 8px; width: 100%; max-width: 460px; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.feature-list li::before { content: "\2192"; color: var(--coral); font: 400 13px/1 var(--mono); }

.feature-visual {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  min-height: clamp(320px, 38vw, 540px);
  background: var(--bg-raise);
  position: relative;
  display: flex;
}
.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95);
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}
.feature-visual:hover img { transform: scale(1.06); filter: saturate(1.1); }

/* VR builder — slow horizontal pan so the left rail and right panel both read */
.feature-visual.pan img {
  width: auto;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% top;
  animation: cb-pan 15s ease-in-out infinite alternate;
}
.feature-visual.pan:hover img { transform: none; }
@keyframes cb-pan {
  from { object-position: 0% top; }
  to { object-position: 100% top; }
}

/* ---------- library carousel ---------- */

.library-visual {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  overflow: hidden;
  min-height: clamp(320px, 38vw, 540px);
  background: var(--bg-raise);
}

.library-track {
  position: absolute;
  inset: 0;
  display: flex;
  width: 300%;
  transition: transform .45s cubic-bezier(.3,.8,.2,1);
}
.library-track > figure { width: 33.3333%; height: 100%; margin: 0; }
.library-track img { width: 100%; height: 100%; object-fit: cover; object-position: top left; }

.library-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: linear-gradient(rgba(13,13,11,0) 0%, rgba(13,13,11,.88) 100%);
}
.library-bar .current {
  font: 600 11px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(244, 243, 238, .88);
}
.library-dots { display: flex; gap: 8px; }
.library-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(244, 243, 238, .4);
  cursor: pointer;
  transition: width .26s ease, background .26s ease;
}
.library-dots button.is-active { width: 22px; background: var(--coral); }

.library-items { display: flex; flex-direction: column; gap: 14px; padding-top: 8px; width: 100%; max-width: 500px; }
.library-items li { display: flex; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.library-items li::before { content: "\2192"; color: var(--coral); font: 400 13px/1.7 var(--mono); }
.library-items b { display: block; font-size: 16px; font-weight: 700; letter-spacing: -.02em; }
.library-items span { display: block; font-size: 15px; line-height: 1.58; color: rgba(244, 243, 238, .62); text-wrap: pretty; }

/* ---------- difference grid ---------- */

.difference { border-top: 1px solid var(--hairline); padding-block: clamp(60px, 6.5vw, 96px); }
.difference .section-title { margin-bottom: 40px; max-width: 860px; }

.difference-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline); }
.difference-grid article {
  background: var(--bg);
  padding: 40px 34px 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .22s ease;
}
.difference-grid article:hover { background: var(--bg-raise); }
.difference-grid .num { font: 700 15px/1 var(--mono); color: var(--coral); }
.difference-grid h3 { font-size: 22px; font-weight: 700; letter-spacing: -.032em; }
.difference-grid ul { display: flex; flex-direction: column; gap: 10px; }
.difference-grid li { display: flex; gap: 10px; font-size: 15px; line-height: 1.66; color: rgba(244, 243, 238, .66); }
.difference-grid li::before { content: "\00B7"; color: rgba(217, 119, 87, .8); }

/* ---------- download band ---------- */

.download-band { position: relative; overflow: hidden; border-top: 1px solid var(--hairline); }
.download-band img { position: absolute; inset: -10% 0; width: 100%; height: 120%; object-fit: cover; }
.download-band .scrim { position: absolute; inset: 0; background: rgba(13, 13, 11, .8); }
.download-band .inner {
  position: relative;
  padding-block: clamp(72px, 8vw, 116px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.download-band h2 { font-size: clamp(40px, 3.8vw, 60px); font-weight: 800; letter-spacing: -.05em; line-height: 1.04; }
.download-band p.lead { font-size: 19px; color: rgba(244, 243, 238, .74); max-width: 560px; }
.download-band .caption { font: 400 12px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: rgba(244, 243, 238, .5); }
.download-band .button.primary[aria-disabled="true"] { background: var(--coral); color: #FFF; border-color: transparent; }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--hairline);
  padding-block: clamp(40px, 4.5vw, 56px) 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-top { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px; }
.footer-brand { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-brand p { font-size: 15px; color: rgba(244, 243, 238, .6); padding-left: 8px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; font-size: 14px; color: rgba(244, 243, 238, .6); }
.footer-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 13px;
  color: rgba(244, 243, 238, .45);
}
.footer-meta a { color: var(--coral); }

/* ---------- pricing ---------- */

.pricing-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--hairline); }
.pricing-hero > img { position: absolute; inset: -10% 0; width: 100%; height: 120%; object-fit: cover; opacity: .5; }
.pricing-hero .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,11,.92) 0%, rgba(13,13,11,.8) 50%, rgba(13,13,11,.96) 100%);
}
.pricing-hero .inner {
  position: relative;
  padding-block: clamp(60px, 6.5vw, 92px) clamp(56px, 6vw, 84px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.pricing-hero h1 { font-size: clamp(48px, 5vw, 76px); font-weight: 800; letter-spacing: -.055em; line-height: 1.02; }
.pricing-hero p { font-size: 19px; line-height: 1.6; color: rgba(244, 243, 238, .74); max-width: 620px; text-wrap: pretty; }

.billing-toggle { display: flex; flex-wrap: wrap; border: 1px solid rgba(255, 255, 255, .24); margin-top: 14px; }
.billing-toggle button {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 22px;
  color: rgba(244, 243, 238, .62);
  transition: background .15s ease, color .15s ease;
}
.billing-toggle button:hover { color: var(--cream); }
.billing-toggle button.is-active { background: var(--coral); color: #FFF; }
.billing-toggle .badge {
  font: 600 10px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  padding: 4px 6px;
}

.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline); padding-inline: var(--gutter-only); }
.plan {
  position: relative;
  background: var(--bg);
  padding: clamp(32px, 3.5vw, 46px) clamp(20px, 2.6vw, 36px) clamp(36px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.plan.is-featured { background: var(--bg-raise-2); }
.plan .ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--coral);
  color: #FFF;
  font: 700 11px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 9px 14px;
}
.plan h2 { font: 700 15px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.plan .price { display: flex; align-items: baseline; gap: 6px; min-height: 52px; }
.plan .price strong { font: 700 52px/1 var(--mono); letter-spacing: -.04em; }
.plan .price span { font-size: 15px; color: rgba(244, 243, 238, .6); }
.plan .price-caption { font-size: 13px; color: var(--coral); min-height: 18px; visibility: hidden; }
html[data-billing-mode="annual"] .plan .price-caption { visibility: visible; }
.plan .cheese { display: flex; align-items: center; gap: 10px; border: 1px solid rgba(217, 119, 87, .35); padding: 12px 14px; font-size: 14px; font-weight: 700; }
.plan .cheese::before { content: ""; width: 9px; height: 9px; border-radius: 999px; background: var(--coral); flex: none; }
.plan h3 { font-size: 14px; font-weight: 700; color: rgba(244, 243, 238, .6); padding-top: 4px; }
.plan .benefits { display: flex; flex-direction: column; gap: 11px; }
.plan .benefits li {
  display: flex;
  gap: 11px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(244, 243, 238, .82);
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.plan .benefits li::before { content: "\2192"; color: var(--coral); font: 400 13px/1.3 var(--mono); }
.plan .button { width: 100%; }

/* compare table — light surface for long scan-reading */
.compare { background: var(--cream); color: var(--ink); padding-block: clamp(60px, 6.5vw, 96px); }
.compare-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 38px; }
.compare-head h2 { font-size: clamp(34px, 3vw, 46px); font-weight: 800; letter-spacing: -.048em; }
.compare-head p { font-size: 16px; color: var(--muted); max-width: 420px; text-wrap: pretty; }

.compare-table { border: 1px solid var(--hairline-light); }
.compare-row { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; border-top: 1px solid var(--hairline-light); }
.compare-row:first-child { border-top: 0; }
.compare-row.head { background: var(--ink); color: var(--cream); }
.compare-row.head > div { padding: 18px 22px; font: 700 13px/1.4 var(--mono); letter-spacing: .1em; text-transform: uppercase; text-align: center; }
.compare-row.head > div:first-child { text-align: left; }
.compare-row.head .pro { color: var(--coral); }
.compare-row.group { grid-template-columns: 1fr; background: var(--cream-dim); }
.compare-row.group > div { padding: 14px 22px; font: 700 12px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--ink); }
.compare-row .label { padding: 17px 22px; font-size: 15px; font-weight: 600; color: var(--ink); }
.compare-row .cell { padding: 17px 22px; font-size: 15px; text-align: center; color: var(--ink-soft); display: flex; align-items: center; justify-content: center; }
.compare-row .cell.yes { color: var(--coral-deep); font-weight: 700; font-size: 17px; }
.compare-row .cell.no { color: #B4B2A8; }
.compare-row .cell.preview { font-size: 12px; font-weight: 700; letter-spacing: .06em; color: #5C5C54; }

/* ---------- FAQ ---------- */

.faq { padding-block: clamp(60px, 6.5vw, 96px); display: grid; grid-template-columns: .62fr 1.38fr; gap: 56px; }
.faq h2 { font-size: clamp(34px, 3vw, 46px); font-weight: 800; letter-spacing: -.048em; line-height: 1.1; }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid rgba(255, 255, 255, .14); }
.faq-list details { border-bottom: 1px solid rgba(255, 255, 255, .14); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.025em;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font: 400 22px/1 var(--mono); color: var(--coral); }
.faq-list details[open] summary::after { content: "\2013"; }
.faq-list p { font-size: 15px; line-height: 1.74; color: rgba(244, 243, 238, .68); padding: 0 60px 26px 4px; text-wrap: pretty; }
.faq-list p a { color: var(--coral); border-bottom: 1px solid rgba(217, 119, 87, .5); }

/* ---------- legal pages ---------- */

.legal-hero { padding-block: clamp(56px, 6vw, 84px) clamp(40px, 4.5vw, 56px); border-bottom: 1px solid var(--hairline); }
.legal-hero h1 { font-size: clamp(36px, 3.6vw, 54px); font-weight: 800; letter-spacing: -.05em; line-height: 1.06; margin-top: 20px; }
.legal-hero .lead { font-size: 16px; color: rgba(244, 243, 238, .6); margin-top: 14px; }

.legal-tabs { display: flex; flex-wrap: wrap; border: 1px solid var(--hairline-strong); margin-top: 30px; width: fit-content; }
.legal-tabs a { font-size: 15px; font-weight: 700; padding: 13px 22px; color: rgba(244, 243, 238, .62); transition: background .15s ease, color .15s ease; }
.legal-tabs a:hover { color: var(--cream); }
.legal-tabs a[aria-current="page"] { background: var(--coral); color: #FFF; }

.legal-main { background: var(--cream); color: var(--ink); padding-block: clamp(52px, 6vw, 80px) clamp(64px, 7vw, 96px); }
.legal-article { max-width: 880px; }

.legal-draft { border-left: 3px solid var(--coral); background: var(--cream-dim); padding: 22px 24px; display: flex; flex-direction: column; gap: 12px; }
.legal-draft .label { font: 700 11px/1 var(--mono); letter-spacing: .16em; text-transform: uppercase; color: var(--coral-deep); }
.legal-draft p { font-size: 15px; line-height: 1.78; color: var(--ink-soft); text-wrap: pretty; }

.legal-meta { display: flex; flex-direction: column; gap: 8px; margin-top: 32px; padding-top: 26px; border-top: 1px solid var(--hairline-light); }
.legal-meta li { font-size: 14px; line-height: 1.7; color: var(--muted); }

.legal-body { display: flex; flex-direction: column; gap: 44px; margin-top: 48px; padding-top: 44px; border-top: 1px solid var(--hairline-light); }
.legal-body section { display: flex; flex-direction: column; gap: 16px; }
.legal-body h2 { font-size: clamp(20px, 1.7vw, 24px); font-weight: 800; letter-spacing: -.035em; line-height: 1.3; }
.legal-body p, .legal-body li { font-size: 16px; line-height: 1.85; color: var(--ink-soft); text-wrap: pretty; }
.legal-body ol { display: flex; flex-direction: column; gap: 12px; padding-left: 24px; list-style: decimal; }
.legal-body ol li { padding-left: 4px; }
.legal-body ul { display: flex; flex-direction: column; gap: 12px; }
.legal-body ul li { display: flex; gap: 12px; }
.legal-body ul li::before { content: "\00B7"; color: var(--coral-deep); }
.legal-body .note { border-left: 3px solid var(--hairline-light); padding: 4px 0 4px 18px; font-size: 15px; line-height: 1.8; color: var(--muted); }

.legal-table { border: 1px solid var(--hairline-light); margin-top: 6px; }
.legal-table .row { display: grid; grid-template-columns: .9fr 1.6fr .5fr; border-top: 1px solid var(--hairline-light); }
.legal-table .row:first-child { border-top: 0; background: var(--ink); color: var(--cream); }
.legal-table .row:first-child > div { font: 700 12px/1.4 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.legal-table > .row > div { padding: 14px 18px; font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
.legal-table .row:first-child > div { color: var(--cream); }

.legal-closing { margin-top: 52px; padding-top: 30px; border-top: 1px solid var(--hairline-light); font-size: 16px; font-weight: 700; line-height: 1.8; color: var(--ink); }
.legal-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 44px; }
.legal-actions .button.secondary { border-color: var(--ink); color: var(--ink); }
.legal-actions .button.secondary:hover { background: var(--ink); color: var(--cream); }

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq { grid-template-columns: 1fr; gap: 28px; }
  .difference-grid { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .site-header { grid-template-columns: auto auto; row-gap: 12px; padding-block: 14px; }
  .site-nav { grid-column: 1 / -1; justify-content: flex-start; }
  .feature-band, .feature-band.reverse { flex-direction: column; }
  .feature-visual, .library-visual { min-height: 300px; }
  .compare-row, .compare-row.head { grid-template-columns: 1.4fr repeat(3, 1fr); }
  .compare-row .label, .compare-row .cell { padding: 12px 14px; font-size: 14px; }
  .footer-top, .footer-meta { grid-template-columns: 1fr; }
  .canvas-head, .compare-head { flex-direction: column; align-items: flex-start; }
  .canvas-head > *, .download-note { max-width: 100%; }
  .download-note { align-items: flex-start; }
  .download-note .button { white-space: normal; text-align: center; }
}
