/* ===========================================================
   Online Gambling V1 — "Night Editorial"
   styles.css — tokens, typography, chrome, home page
   =========================================================== */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/fraunces-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/fraunces-latin-var-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Tokens ---------- */
:root {
  --bg:        #0E0D0B;
  --bg-deep:   #090807;
  --surface:   #17150F;
  --surface-2: #1E1B14;
  --hair:      rgba(242, 237, 228, .14);
  --hair-soft: rgba(242, 237, 228, .07);
  --text:      #F2EDE4;
  --muted:     #A9A295;
  --amber:     #E0A526;
  --amber-lit: #EFB63C;
  --olive:     #8A8F6A;
  --ink:       #14120D;

  --display: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --wrap: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --ease: cubic-bezier(.2, .6, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
picture { display: block; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }
::selection { background: rgba(224, 165, 38, .28); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 99;
  background: var(--amber); color: var(--ink); padding: 12px 18px;
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- Typographic primitives ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0;
}
.eyebrow--amber { color: var(--amber); }

.h-sec {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 4.2vw, 40px);
  line-height: 1.06;
  letter-spacing: -.012em;
  font-variation-settings: 'opsz' 60, 'wght' 600, 'SOFT' 0, 'WONK' 1;
}
.h-sub {
  font-family: var(--display);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -.005em;
}
.lede { font-size: 18.5px; line-height: 1.6; color: var(--text); }
.muted { color: var(--muted); }
.fine {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted);
  letter-spacing: .005em;
}
.stamp {
  font-size: 12px;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.num { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum' 1; }
sup.fn { font-size: .62em; vertical-align: super; color: var(--amber); font-family: var(--sans); }

.rule { height: 1px; background: var(--hair); border: 0; margin: 0; }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 13px; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 2px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn--solid { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.btn--solid:hover { background: var(--amber-lit); border-color: var(--amber-lit); }
.btn--ghost { border-color: rgba(224, 165, 38, .5); color: var(--text); }
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn--block { width: 100%; }
.btn__narrow { display: none; }

.link-slide { position: relative; text-decoration: none; }
.link-slide::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.link-slide:hover::after, .link-slide:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.link-amber { color: var(--amber); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal.is-in { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ===========================================================
   Header
   =========================================================== */
.site-head {
  position: sticky; top: 0; z-index: 40;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease);
}
.site-head.is-stuck { border-bottom-color: var(--hair); }
.site-head__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 74px;
}
.wordmark {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -.012em;
  line-height: 1;
  text-decoration: none;
  color: var(--text);
  font-variation-settings: 'opsz' 30, 'wght' 600, 'SOFT' 0, 'WONK' 0;
  white-space: nowrap;
}
.wordmark__v { color: var(--amber); }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 3vw, 28px); }
.site-nav__login { font-size: 14px; font-weight: 500; letter-spacing: .02em; white-space: nowrap; }

/* ===========================================================
   Hero
   =========================================================== */
.hero { position: relative; }
.hero__media { position: relative; width: 100%; overflow: hidden; background: var(--bg-deep); }
.hero__media img {
  width: 100%; height: auto; object-fit: cover; object-position: 62% 45%;
  aspect-ratio: 21 / 9; max-height: 640px;
}
.hero__media::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(14,13,11,.55) 0%, rgba(14,13,11,0) 26%, rgba(14,13,11,0) 46%, rgba(14,13,11,.92) 100%),
    linear-gradient(to right, rgba(14,13,11,.86) 0%, rgba(14,13,11,.35) 38%, rgba(14,13,11,0) 68%);
}
.hero__panel {
  position: relative; z-index: 2;
  margin-top: clamp(-150px, -11vw, -60px);
  max-width: 760px;
  background: var(--surface);
  border: 1px solid var(--hair);
  border-top: 2px solid var(--amber);
  padding: clamp(28px, 4vw, 46px) clamp(24px, 4vw, 52px) clamp(26px, 3.4vw, 40px);
}
.hero__h1 {
  font-family: var(--display);
  font-size: clamp(40px, 5.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -.014em;
  font-weight: 400;
  font-variation-settings: 'opsz' 120, 'wght' 420, 'SOFT' 0, 'WONK' 1;
  margin: 18px 0 0;
  text-wrap: balance;
}
.hero__h1 em {
  font-style: italic;
  font-variation-settings: 'opsz' 120, 'wght' 420, 'SOFT' 20, 'WONK' 1;
  color: var(--text);
}
.hero__h1 .amt { color: var(--amber); font-variant-numeric: tabular-nums; }
.hero__sub { margin-top: 22px; max-width: 60ch; color: var(--muted); font-size: 17px; line-height: 1.62; }
.hero__sub strong { color: var(--text); font-weight: 500; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__note { margin-top: 20px; max-width: 62ch; }

/* one-line fact row folded into the hero panel */
.hero__facts {
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: 6px clamp(8px, 0.9vw, 10px);
  margin-top: 26px; padding-top: 16px;
  border-top: 1px solid var(--hair);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--olive); line-height: 1.4;
}
.hero__facts span[aria-hidden] { color: var(--hair); }

/* ===========================================================
   Section frame
   =========================================================== */
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(44px, 6vw, 72px) 0; }
.band-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hair);
}
.band-head__l { display: flex; flex-direction: column; gap: 12px; }
.band-head .stamp { padding-bottom: 4px; }

/* ===========================================================
   Offers — numbered ledger rows
   =========================================================== */
.ledger { margin-top: 0; }
.led {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) 180px;
  grid-template-areas:
    'num title thumb'
    'num body  thumb'
    'num fine  thumb'
    'num cta   thumb';
  column-gap: clamp(16px, 2.6vw, 36px);
  align-items: start;
  padding: clamp(26px, 3.4vw, 38px) 0;
  border-bottom: 1px solid var(--hair);
  position: relative;
}
.led__num {
  grid-area: num;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 400;
  line-height: .9;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
  font-variation-settings: 'opsz' 80, 'wght' 400, 'SOFT' 0, 'WONK' 1;
  letter-spacing: -.02em;
  padding-top: 2px;
}
.led__title {
  grid-area: title;
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.01em;
  font-variation-settings: 'opsz' 40, 'wght' 600, 'SOFT' 0, 'WONK' 0;
}
.led__body { grid-area: body; margin-top: 10px; color: var(--muted); max-width: 56ch; }
.led__body b { color: var(--text); font-weight: 500; }
.led__fine { grid-area: fine; margin-top: 12px; max-width: 56ch; }
.led__cta { grid-area: cta; justify-self: end; margin-top: 16px; }
.led__cta a {
  font-size: 13px; font-weight: 500; letter-spacing: .11em; text-transform: uppercase;
  color: var(--amber); text-decoration: none; display: inline-flex; gap: 9px; align-items: center;
}
.led__cta a .arw { transition: transform .28s var(--ease); display: inline-block; }
.led:hover .led__cta a .arw { transform: translateX(5px); }
.led__thumb {
  grid-area: thumb;
  align-self: center;
  overflow: hidden;
  border: 1px solid var(--hair);
  background: var(--surface);
  transition: transform .32s var(--ease), border-color .32s var(--ease);
  transform-origin: 100% 50%;
}
.led__thumb img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(.92); }
@media (hover: hover) and (min-width: 920px) {
  .led:hover .led__thumb { transform: scale(1.12); border-color: rgba(224,165,38,.42); z-index: 3; }
}
.ledger__foot {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 18px;
}

/* ===========================================================
   How it works — editorial column
   =========================================================== */
.how { display: grid; grid-template-columns: repeat(12, 1fr); gap: 0 24px; }
.how__label { grid-column: 1 / 4; }
.how__label .h-sec { margin-top: 12px; }
.how__col { grid-column: 5 / 12; }
.steps { counter-reset: step; }
.step { padding: 26px 0; border-top: 1px solid var(--hair-soft); display: grid; grid-template-columns: 62px 1fr; }
.step:first-child { border-top: 0; padding-top: 0; }
.step__n {
  font-family: var(--display); font-size: 15px; font-weight: 600; color: var(--olive);
  font-variant-numeric: tabular-nums; letter-spacing: .06em; padding-top: 6px;
}
.step__t { font-family: var(--display); font-size: clamp(20px, 2.2vw, 25px); font-weight: 400; line-height: 1.28; letter-spacing: -.006em; }
.step__d { margin-top: 8px; color: var(--muted); font-size: 16px; }
.pull {
  margin-top: 42px;
  padding: 30px 0 0;
  border-top: 2px solid var(--amber);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(23px, 3vw, 33px);
  line-height: 1.24;
  letter-spacing: -.008em;
  color: var(--text);
  max-width: 22ch;
}
.pull__by { display: block; margin-top: 16px; font-family: var(--sans); font-style: normal; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--olive); }
.how__cta {
  margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--hair-soft);
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px;
}
.how__cta .fine { max-width: 30ch; }

/* ===========================================================
   FAQ accordion
   =========================================================== */
.faq { border-top: 1px solid var(--hair); margin-top: 34px; }
.faq__item { border-bottom: 1px solid var(--hair); }
.faq__q { margin: 0; }
.faq__btn {
  width: 100%; display: grid; grid-template-columns: 56px 1fr 30px;
  align-items: baseline; gap: 12px;
  padding: 22px 0; text-align: left;
}
.faq__n { font-family: var(--display); font-size: 14px; font-weight: 600; color: var(--olive); font-variant-numeric: tabular-nums; letter-spacing: .06em; }
.faq__t {
  font-family: var(--display); font-size: clamp(18px, 2vw, 22px); font-weight: 400;
  line-height: 1.3; letter-spacing: -.006em; color: var(--text);
  transition: color .2s var(--ease);
}
.faq__btn:hover .faq__t { color: var(--amber); }
.faq__ind { position: relative; width: 14px; height: 14px; justify-self: end; align-self: center; }
.faq__ind::before, .faq__ind::after {
  content: ''; position: absolute; background: var(--amber); transition: transform .28s var(--ease), opacity .28s var(--ease);
}
.faq__ind::before { left: 0; right: 0; top: 6px; height: 1.5px; }
.faq__ind::after { top: 0; bottom: 0; left: 6px; width: 1.5px; }
.faq__btn[aria-expanded='true'] .faq__ind::after { transform: scaleY(0); }
.faq__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .3s var(--ease);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; visibility: hidden; transition: visibility 0s linear .3s; }
.faq__item.is-open .faq__a > div { visibility: visible; transition-delay: 0s; }
.faq__a p {
  color: var(--muted); max-width: 70ch;
  padding: 0 30px 24px 68px;
  font-size: 16.5px;
}
.faq__foot {
  padding-top: 28px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px;
}
.faq__foot .fine { max-width: 64ch; }

/* ===========================================================
   Footer
   =========================================================== */
.site-foot { border-top: 1px solid var(--hair); background: var(--bg-deep); padding: clamp(40px, 4.4vw, 58px) 0 26px; }
.foot__top { display: grid; grid-template-columns: repeat(12, 1fr); gap: 32px 24px; }
.foot__brand { grid-column: 1 / 6; }
.foot__tag {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(24px, 2.6vw, 30px); line-height: 1.1; letter-spacing: -.01em;
  margin-top: 14px; color: var(--text);
}
.foot__brandnote { margin-top: 14px; max-width: 32ch; }
.foot__cols { grid-column: 7 / 13; display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 24px; }
.foot__h { font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--olive); font-weight: 500; }
.foot__list { margin-top: 14px; display: flex; flex-direction: column; gap: 9px; }
.foot__list a { font-size: 14.5px; line-height: 1.45; color: var(--muted); text-decoration: none; transition: color .18s var(--ease); }
.foot__list a:hover { color: var(--text); }
.foot__legal { margin-top: clamp(28px, 3.2vw, 38px); padding-top: 20px; border-top: 1px solid var(--hair); display: grid; gap: 10px; }
.foot__demo { color: var(--olive); }
.foot__meta { display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; }
.foot__meta .fine { max-width: 92ch; flex: 1 1 420px; }
.age {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border: 1.5px solid var(--muted); border-radius: 50%;
  font-family: var(--display); font-size: 13px; font-weight: 600; color: var(--text);
  flex: 0 0 auto;
}

/* ===========================================================
   Interior pages (terms / responsible gambling)
   =========================================================== */
.page-head { padding: clamp(44px, 6vw, 78px) 0 clamp(28px, 4vw, 40px); border-bottom: 1px solid var(--hair); }
.page-head h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(34px, 5.2vw, 62px); line-height: 1.02; letter-spacing: -.014em;
  margin-top: 16px; max-width: 20ch;
  font-variation-settings: 'opsz' 100, 'wght' 420, 'SOFT' 0, 'WONK' 1;
}
.page-head__meta { display: flex; flex-wrap: wrap; gap: 8px 26px; margin-top: 24px; }
.doc {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 0 24px;
  padding-top: clamp(40px, 5vw, 64px); padding-bottom: clamp(56px, 7vw, 96px);
}
.doc__aside { grid-column: 1 / 4; }
.doc__toc { position: sticky; top: 100px; }
.doc__toc ol { margin-top: 16px; display: flex; flex-direction: column; gap: 9px; counter-reset: toc; }
.doc__toc a { font-size: 14px; color: var(--muted); text-decoration: none; display: flex; gap: 10px; transition: color .18s var(--ease); }
.doc__toc a:hover { color: var(--amber); }
.doc__toc a span { color: var(--olive); font-variant-numeric: tabular-nums; font-family: var(--display); }
.doc__body { grid-column: 5 / 12; }
.doc__intro { font-size: 18.5px; line-height: 1.6; color: var(--text); padding-bottom: 34px; border-bottom: 1px solid var(--hair); }
.clause { padding: 34px 0; border-bottom: 1px solid var(--hair-soft); scroll-margin-top: 100px; }
.clause h2 {
  font-family: var(--display); font-size: clamp(20px, 2.2vw, 25px); font-weight: 600;
  line-height: 1.24; letter-spacing: -.008em;
  display: grid; grid-template-columns: 58px 1fr; gap: 10px; align-items: baseline;
}
.clause h2 .num {
  font-size: 14px; color: var(--amber); font-variant-numeric: tabular-nums; letter-spacing: .06em;
  font-weight: 600;
}
.clause h2 .clause__t { display: block; color: var(--text); font-size: inherit; }
.clause p { margin-top: 12px; color: var(--muted); padding-left: 58px; max-width: 66ch; }
.clause ul { margin-top: 12px; padding-left: 58px; display: flex; flex-direction: column; gap: 9px; }
.clause ul li { color: var(--muted); position: relative; padding-left: 20px; max-width: 62ch; }
.clause ul li::before { content: ''; position: absolute; left: 0; top: 13px; width: 9px; height: 1px; background: var(--olive); }
.doc__end { margin-top: 40px; padding: 26px 28px; background: var(--surface); border: 1px solid var(--hair); border-left: 2px solid var(--amber); }
.doc__end p + p { margin-top: 10px; }

.callout {
  margin: 34px 0; padding: 26px 28px;
  background: var(--surface); border: 1px solid var(--hair); border-left: 2px solid var(--olive);
}
.callout h3 { font-family: var(--display); font-size: 19px; font-weight: 600; }
.callout p { margin-top: 10px; color: var(--muted); padding-left: 0; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 1040px) {
  .how__label { grid-column: 1 / 5; }
  .how__col { grid-column: 6 / 13; }
  .doc__aside { grid-column: 1 / 4; }
  .doc__body { grid-column: 5 / 13; }
  .led { grid-template-columns: 88px minmax(0, 1fr) 150px; }
}

@media (max-width: 860px) {
  .how { display: block; }
  .how__label { margin-bottom: 34px; }
  .how__col { max-width: 640px; }
  .foot__brand { grid-column: 1 / 13; }
  .foot__cols { grid-column: 1 / 13; }
  .doc { display: block; }
  .doc__aside { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 16.5px; }
  .site-head__in { min-height: 62px; }
  .wordmark { font-size: 16px; }
  .site-nav { gap: 14px; }
  .site-nav__login { font-size: 13.5px; }
  .btn { font-size: 11.5px; padding: 12px 15px; letter-spacing: .1em; border-width: 1.5px; }
  .site-head .btn__wide { display: none; }
  .site-head .btn__narrow { display: inline; }
  .hero__media img { aspect-ratio: 5 / 4; max-height: 440px; object-position: 60% 44%; }
  .hero__panel { margin-top: -34px; border-left: 0; border-right: 0; margin-left: calc(var(--gutter) * -1); margin-right: calc(var(--gutter) * -1); }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__facts {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px;
    letter-spacing: .1em; font-size: 11px;
  }
  .hero__facts span[aria-hidden] { display: none; }

  .led {
    grid-template-columns: 44px minmax(0, 1fr) 80px;
    grid-template-areas:
      'num  title thumb'
      'num  body  body'
      'fine fine  fine'
      'cta  cta   cta';
    column-gap: 12px;
  }
  .led__num { font-size: 26px; padding-top: 4px; }
  .led__fine { margin-top: 14px; }
  .led__cta { justify-self: start; margin-top: 14px; }
  .led__thumb { align-self: start; margin-top: 4px; }
  .step { grid-template-columns: 44px 1fr; }
  .faq__btn { grid-template-columns: 38px 1fr 24px; gap: 10px; }
  .faq__a p { padding-left: 48px; padding-right: 0; }
  .clause h2 { grid-template-columns: 42px 1fr; }
  .clause p, .clause ul { padding-left: 42px; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
  .how__cta, .faq__foot { gap: 16px; }
  .how__cta .btn, .faq__foot .btn { width: 100%; }
}

@media (max-width: 400px) {
  .site-head__in { gap: 10px; }
  .wordmark { font-size: 15px; }
  .site-nav { gap: 11px; }
  .site-nav__login { font-size: 13px; }
  .site-head .btn { font-size: 11px; padding: 11px 12px; letter-spacing: .08em; }
  .foot__cols { grid-template-columns: 1fr; gap: 24px; }
  .led { grid-template-columns: 40px minmax(0, 1fr) 72px; column-gap: 10px; }
  .led__num { font-size: 23px; }
}
