/* ==========================================================================
   PewPewScan — landing v10
   Dark concept build. Tokens mirror pewpewscan-landing-3.pen (frame
   "Pew Pew Scan — Dark Concept").
   ========================================================================== */

:root {
  /* surface + type */
  --bg:      #000000;
  --ink:     #FFFFFF;
  --body:    #B4BAC4;
  --muted:   #8B9099;
  --faint:   #676C75;
  --line:    #23262C;

  /* accents */
  --gold:    #EFBB55;   /* numerals, stats */
  --amber:   #E0A63C;   /* eyebrows, footer headings */

  /* wordmark luminance ramp: PEW -> PEW -> SCAN */
  --mark-1:  #6E747E;
  --mark-2:  #AEB4BE;
  --mark-3:  #FFFFFF;

  /* holographic refractor gradient, sampled from the hero card render */
  --holo: linear-gradient(105deg,
            #6FD9E8   0%,
            #7FA8F0  22%,
            #B79BF0  42%,
            #F2A0D0  60%,
            #F5CE85  80%,
            #8CE8BE 100%);

  --page:    1440px;
  --gutter:  120px;   /* section inset */
  --edge:     64px;   /* nav / cta / footer inset */

  --bezel: linear-gradient(115deg, #787D86 0%, #2B2E34 42%, #3C4048 70%, #6A6F78 100%);
}

/* --------------------------------------------------------------- reset -- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { max-width: 100%; }
a { color: inherit; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

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

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--amber);
}
.eyebrow--lg { font-size: 14px; letter-spacing: 3.4px; }

.lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}

/* gradient headline — white resolving into gold on the accented word */
.grad {
  background: linear-gradient(90deg, #FFFFFF 0%, #FFE7A8 42%, #E5A63A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* wordmark: app icon + three-step luminance ramp */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  flex: none;
}
.wordmark__icon { width: 72px; height: 72px; display: block; }
.wordmark__text {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 4.5px;
  white-space: nowrap;
}
.wordmark__text span:nth-child(1) { color: var(--mark-1); }
.wordmark__text span:nth-child(2) { color: var(--mark-2); }
.wordmark__text span:nth-child(3) { color: var(--mark-3); }

/* App Store badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 12px;
  background: var(--holo);
  color: #000;
  text-decoration: none;
  transition: transform .18s ease, filter .18s ease;
}
.badge:hover { transform: translateY(-1px); filter: brightness(1.06) saturate(1.05); }
.badge:active { transform: translateY(0); }
.badge__apple { width: 26px; height: 26px; fill: #000; flex: none; }
.badge__text { display: flex; flex-direction: column; }
.badge__text small  { font-size: 12px; line-height: 1.25; }
.badge__text strong { font-size: 22px; font-weight: 600; line-height: 1.15; }

.badge--sm { padding: 7px 14px; gap: 9px; border-radius: 9px; }
.badge--sm .badge__apple { width: 18px; height: 18px; }
.badge--sm .badge__text small  { font-size: 9px; }
.badge--sm .badge__text strong { font-size: 15px; }

/* device mockup — gradient bezel via a two-layer background */
.phone {
  padding: 6px;
  border: 2.5px solid transparent;
  border-radius: 44px;
  background:
    linear-gradient(#0A0B0D, #0A0B0D) padding-box,
    var(--bezel) border-box;
}
.phone img { display: block; width: 100%; height: auto; border-radius: 38px; }

/* hover-to-play: the clip sits exactly over the screen and starts on the still's own frame */
.phone--live { position: relative; cursor: pointer; transition: box-shadow .35s ease; }
.phone--live video {
  position: absolute;
  inset: 6px;                        /* containing block is the padding box... */
  width:  calc(100% - 12px);         /* ...but a replaced element ignores the opposite */
  height: calc(100% - 12px);         /* offsets, so it needs explicit sizing */
  border-radius: 38px;
  object-fit: cover;
  opacity: 0;
  transition: opacity .28s ease;
}
.phone--live.is-playing video { opacity: 1; }
.phone--live:hover, .phone--live:focus-visible { box-shadow: 0 0 60px rgba(42, 111, 192, .35); }

/* -------------------------------------------------------------- layout -- */

.nav, .features, .how, .final, .footer { max-width: var(--page); margin-inline: auto; }

/* ----------------------------------------------------------------- nav -- */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 26px var(--edge);
}
.nav__links { display: flex; gap: 44px; }
.nav__links a {
  font-size: 15px;
  color: var(--body);
  text-decoration: none;
  transition: color .18s ease;
}
.nav__links a:hover { color: var(--ink); }

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

.hero {
  position: relative;
  max-width: var(--page);
  margin-inline: auto;
  padding: 44px var(--edge) 0;
  text-align: center;
}
.hero > *:not(.hero__glow) { position: relative; z-index: 1; }
.hero__glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(640px, 100%);
  height: 340px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, #2A6FC0 0%, #0B2C55 45%, transparent 100%);
  opacity: .32;
  pointer-events: none;
}
.hero__title {
  margin-top: 22px;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.hero__sub {
  max-width: 620px;
  margin: 20px auto 0;
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
}
.hero .badge { margin-top: 32px; }
.hero__micro { margin-top: 16px; font-size: 14px; color: var(--faint); }

/* ------------------------------------------------------------ showcase -- */

.showcase { max-width: var(--page); margin-inline: auto; padding: 0 var(--edge); }
/* the render is cropped to 1040x620 so the card bases sit above the stat row */
.showcase__media { position: relative; max-width: 1040px; margin-inline: auto; aspect-ratio: 1040 / 620; }
.showcase__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
/* blend the render's hard bottom edge into the page */
.showcase__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 23%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.6) 50%, #000 100%);
}
.stats {
  position: relative;
  display: flex;
  max-width: 800px;
  margin: -58px auto 0;
}
.stats li { flex: 1; text-align: center; padding: 10px 12px; }
.stats li + li { border-left: 1px solid var(--line); }
.stats__value { display: block; font-size: 40px; font-weight: 600; line-height: 1.2; color: var(--gold); }
.stats__label { display: block; margin-top: 4px; font-size: 15px; color: var(--body); }

/* ---------------------------------------------------------------- pain -- */

.pain { max-width: var(--page); margin-inline: auto; padding: 54px var(--edge) 0; text-align: center; }
.pain h2 {
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}
.pain p { max-width: 860px; margin: 18px auto 0; font-size: 18px; line-height: 1.6; color: var(--muted); }

/* ------------------------------------------------------------ features -- */

.features { padding: 0 var(--gutter); }

.feat { display: grid; gap: 90px; align-items: start; }
.feat--a { grid-template-columns: 360px 1fr; padding: 40px 0 56px; }
.feat--b { grid-template-columns: 1fr 1fr; gap: 60px; padding: 76px 0 40px; }
.feat--c { grid-template-columns: 1fr 1fr; padding: 44px 0 0; }
.feat--c .feat__copy { grid-column: 2; }

.feat__intro h2 {
  margin-top: 4px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}
.feat__intro .lede { margin-top: 4px; }

.feat__block { max-width: 430px; }
.feat--a .feat__block { margin-top: 89px; }
.feat__num { display: block; font-size: 24px; font-weight: 600; line-height: 1.2; color: var(--gold); }
.feat__block h3 {
  margin-top: 24px;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 600;
  line-height: 1.22;
  color: var(--ink);
}
.feat__block p { margin-top: 20px; font-size: 20px; line-height: 1.65; color: var(--body); }

.phone--a { width: 330px; }

/* Hangs below the 02 copy, out of flow, so it does not stretch the row —
   the rule and the 03 block stay tucked up next to the phone pair. */
.feat--b .feat__copy { position: relative; }
.phone--under {
  position: absolute;
  top: 100%;
  left: 0;
  width: 280px;
  margin-top: 64px;
}

.feat__pair { display: flex; justify-content: center; align-items: flex-start; }
.phone--lead  { width: 285px; position: relative; z-index: 2; }
.phone--trail { width: 236px; position: relative; z-index: 1; margin: 70px 0 0 -16px; }

.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }
.rule--offset { margin-left: 38%; }

/* --------------------------------------------------------- how it works -- */

.how { padding: 170px var(--gutter) 0; text-align: center; }
.how h2 {
  margin-top: 14px;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}
.lede--center { margin: 14px auto 0; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
  text-align: left;
}
.step {
  position: relative;
  height: 440px;
  padding: 0 56px 0 40px;
  overflow: hidden;   /* clips the phones, as in the design */
}
.step:first-child { padding-left: 0; }
.step + .step { border-left: 1px solid var(--line); }
.step h3 { font-size: 20px; font-weight: 600; line-height: 1.35; color: var(--ink); }
.step__num { color: var(--gold); }
.step p { margin-top: 14px; font-size: 17px; line-height: 1.6; color: var(--muted); }
.step .phone { width: 210px; margin: 28px auto 0; }

/* ----------------------------------------------------------- final cta -- */

/* no top padding — the clipped step phones run straight into the box */
.final { padding: 0 var(--edge); }
.final__box {
  position: relative;
  overflow: hidden;
  padding: 54px 80px 58px;
  border: 1px solid #2C333D;
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(180deg, #071B36 0%, #03101F 55%, #010A15 100%);
}
.final__glow {
  position: absolute;
  top: 20px;
  left: 40%;
  width: 1000px;
  height: 330px;
  background: radial-gradient(closest-side, #2E86E8 0%, #0B3F80 40%, transparent 100%);
  opacity: .55;
  pointer-events: none;
}
.final__box > *:not(.final__glow) { position: relative; z-index: 1; }
.final h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}
.final p { margin-top: 16px; font-size: 17px; color: var(--muted); }
.final .badge { margin-top: 28px; }

/* ----------------------------------------------------------------- faq -- */

.faq {
  max-width: var(--page);
  margin-inline: auto;
  padding: 130px var(--gutter) 0;
  text-align: center;
}
.faq h2 {
  margin-top: 14px;
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.1px;
  color: var(--ink);
}

.faq__list {
  max-width: 840px;
  margin: 46px auto 0;
  text-align: left;
  border-top: 1px solid var(--line);
}
.faq__item { border-bottom: 1px solid var(--line); }

.faq__item summary {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;             /* Firefox */
  transition: color .18s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold); }

/* the marker is a plus that becomes a minus when the answer is open */
.faq__item summary::after {
  content: "";
  flex: none;
  width: 13px;
  height: 13px;
  margin: 6px 2px 0 auto;
  background:
    linear-gradient(var(--gold), var(--gold)) center/13px 1.5px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center/1.5px 13px no-repeat;
  transition: transform .22s ease, opacity .22s ease;
}
.faq__item[open] summary::after {
  /* drop the vertical bar and spin what's left into a minus */
  background: linear-gradient(var(--gold), var(--gold)) center/13px 1.5px no-repeat;
  transform: rotate(180deg);
}

.faq__a {
  padding: 0 46px 26px 0;
  animation: faq-in .22s ease both;
}
.faq__a p { max-width: 66ch; color: var(--body); }
.faq__a a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

@keyframes faq-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .faq__a { animation: none; }
}

.faq__more { margin-top: 34px; font-size: 16px; color: var(--muted); }
.faq__more a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

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

.footer { padding: 60px var(--edge) 44px; text-align: center; }
.footer__top { display: flex; align-items: flex-start; gap: 40px; }
.footer__cols { display: flex; gap: 120px; margin-inline: auto; text-align: left; }
.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--amber);
}
.footer__col a {
  display: block;
  margin-top: 9px;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color .18s ease;
}
.footer__col a:hover { color: var(--ink); }
.footer__copy { margin-top: 44px; font-size: 13px; color: var(--faint); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1180px) {
  :root { --gutter: 56px; --edge: 40px; }

  .feat--a { grid-template-columns: 300px 1fr; gap: 56px; }
  .feat--a .feat__block { margin-top: 64px; }
  .phone--a { width: 100%; max-width: 300px; }
  .feat--b { gap: 40px; }
  .phone--trail { margin-left: -24px; }
  .how { padding-top: 120px; }
  .step { padding: 0 32px 0 24px; height: 420px; }
  .final__box { padding: 44px 40px 48px; }
  .footer__cols { gap: 72px; }
}

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

  .nav { flex-wrap: wrap; row-gap: 18px; padding-block: 20px; }
  .nav__links { order: 3; width: 100%; justify-content: center; gap: 32px; }
  .wordmark__icon { width: 56px; height: 56px; }
  .wordmark { gap: 14px; }

  .hero__sub { font-size: 17px; }
  .stats { margin-top: -36px; }
  .stats__value { font-size: clamp(26px, 5vw, 40px); }
  .stats__label { font-size: 13px; }

  /* the collage unwinds into a single column */
  .feat--a, .feat--b, .feat--c { grid-template-columns: 1fr; gap: 40px; padding: 48px 0; }
  .feat--c .feat__copy { grid-column: 1; }
  .feat--a .feat__copy { display: contents; }
  .feat--a .feat__intro { order: -1; }
  .feat--a .feat__block { margin-top: 0; }
  .feat__block { max-width: none; }
  .feat__block p { font-size: 18px; }
  .feat__visual, .feat__pair { display: flex; justify-content: center; }

  .phone--a { max-width: 280px; }
  .phone--under { position: static; margin: 0 auto; }
  .phone--lead  { width: 46%; max-width: 260px; }
  .phone--trail { width: 40%; max-width: 226px; margin: 48px 0 0 -14px; }
  .rule--offset { margin-left: 0; }

  .how { padding-top: 72px; }
  .steps { grid-template-columns: 1fr; gap: 56px; }
  .step { height: auto; padding: 0; overflow: visible; }
  .step + .step { border-left: 0; }
  .step .phone { width: 240px; }

  .final { padding-top: 72px; }
  .final__box { padding: 36px 24px 40px; }
  .final h2 br { display: none; }

  .faq { padding-top: 80px; }
  .faq__list { margin-top: 34px; }
  .faq__item summary { padding: 20px 0; gap: 16px; }
  .faq__a { padding-right: 0; }

  .footer__top { flex-direction: column; align-items: center; gap: 36px; }
  .footer__cols { margin: 0; gap: 56px; }
  .footer__copy { margin-top: 32px; }
}

@media (max-width: 560px) {
  :root { --edge: 24px; --gutter: 24px; }

  /* keep the wordmark and the badge on one row */
  .nav { column-gap: 12px; }
  .wordmark { gap: 10px; }
  .wordmark__icon { width: 44px; height: 44px; }
  .wordmark__text { font-size: 14px; letter-spacing: 3px; }
  .badge--sm { padding: 6px 10px; gap: 7px; }
  .badge--sm .badge__apple { width: 15px; height: 15px; }
  .badge--sm .badge__text small  { font-size: 8px; }
  .badge--sm .badge__text strong { font-size: 13px; }

  .hero { padding-top: 28px; }
  .badge__text strong { font-size: 19px; }
  .badge__text small { font-size: 11px; }
  .stats { flex-direction: column; gap: 20px; margin-top: -16px; }
  .stats li + li { border-left: 0; border-top: 1px solid var(--line); padding-top: 20px; }
  .feat__pair { flex-direction: column; align-items: center; }
  .phone--lead, .phone--trail { width: 260px; max-width: 100%; margin: 0; }
  .phone--trail { margin-top: 28px; }
}

/* ==========================================================================
   Legal + support pages
   Same tokens as the landing; a single measured column instead of a collage.
   ========================================================================== */

.legal {
  max-width: 820px;
  margin-inline: auto;
  padding: 40px var(--edge) 96px;
}
.legal--support { max-width: var(--page); }

.legal__head { padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.legal__head h1 {
  margin-top: 14px;
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.4px;
  color: var(--ink);
}
.legal__meta { margin-top: 14px; font-size: 14px; color: var(--faint); }
.legal__head .lede { margin-top: 22px; max-width: 62ch; }

/* summary callout */
.legal__note {
  margin-top: 40px;
  padding: 30px 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #0A0B0D;
}
.legal__note-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--amber);
}
.legal__ticks { margin-top: 18px; display: grid; gap: 13px; }
.legal__ticks li { position: relative; padding-left: 30px; font-size: 16px; }
.legal__ticks li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .58em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.legal__ticks--neg li::before { background: var(--line); box-shadow: inset 0 0 0 1px var(--faint); }
.legal__ticks strong { color: var(--ink); font-weight: 600; }

/* table of contents */
.legal__toc { margin-top: 44px; }
.legal__toc h2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--amber);
}
.legal__toc ol {
  margin-top: 16px;
  columns: 2;
  column-gap: 48px;
  counter-reset: toc;
}
.legal__toc li { counter-increment: toc; break-inside: avoid; margin-bottom: 8px; }
.legal__toc a {
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
  transition: color .18s ease;
}
.legal__toc a::before { content: counter(toc) ". "; color: var(--faint); }
.legal__toc a:hover { color: var(--ink); }

/* body copy */
.legal__body { margin-top: 20px; }
.legal__body section { padding-top: 44px; }
.legal__body h2 {
  font-size: clamp(22px, 3vw, 27px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.4px;
  color: var(--ink);
  scroll-margin-top: 24px;
}
.legal__body h3 {
  margin-top: 26px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.legal__body p  { margin-top: 14px; max-width: 68ch; }
.legal__body ul { margin-top: 16px; display: grid; gap: 11px; max-width: 68ch; }
.legal__body ul li { position: relative; padding-left: 22px; }
.legal__body ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .72em;
  width: 6px;
  height: 1px;
  background: var(--faint);
}
.legal__body strong { color: var(--ink); font-weight: 600; }
.legal__body em { color: var(--body); font-style: normal; background: #14161A; padding: 1px 6px; border-radius: 5px; }
.legal__body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.legal__body a:hover { color: #FFD98A; }

/* tables — scroll on their own, the page never does */
.legal__scroll { margin-top: 20px; overflow-x: auto; }
.legal__table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: 15px; }
.legal__table th, .legal__table td {
  padding: 13px 18px 13px 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.legal__table th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--amber);
}
.legal__table td:first-child { color: var(--ink); }

.legal__sig { margin-top: 34px; font-size: 13px; color: var(--faint); }

/* ------------------------------------------------------- support page -- */

.support {
  display: grid;
  /* both columns are capped, so the slack lands in the middle instead of
     leaving a hole beside the form */
  grid-template-columns: minmax(0, 560px) minmax(0, 400px);
  justify-content: space-between;
  gap: 80px;
  margin-top: 56px;
  align-items: start;
}
.support__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--amber);
}

.form { margin-top: 24px; max-width: 560px; }
.field + .field { margin-top: 22px; }
.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.field__req { color: var(--gold); }
.field__opt { font-weight: 400; color: var(--faint); }
.field__hint { margin-top: 7px; font-size: 13px; color: var(--faint); }

.field input,
.field select,
.field textarea {
  width: 100%;
  margin-top: 9px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0A0B0D;
  color: var(--ink);
  font: inherit;
  font-size: 16px;   /* 16px keeps iOS from zooming the page on focus */
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
                    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: right 20px center, right 14px center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}
.field select option { background: #0A0B0D; color: var(--ink); }
.field input::placeholder,
.field textarea::placeholder { color: var(--faint); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(224, 166, 60, .16);
}
.field [aria-invalid="true"] { border-color: #C8524B; }
.field--trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.btn {
  margin-top: 28px;
  padding: 14px 30px;
  border: 0;
  border-radius: 12px;
  background: var(--holo);
  color: #000;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.06) saturate(1.05); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .55; cursor: default; transform: none; filter: none; }

.form__status { margin-top: 16px; font-size: 15px; color: var(--muted); min-height: 1.4em; }
.form__status--ok   { color: var(--ink); }
.form__status--warn { color: #E5A6A2; }
.form__status a { color: var(--gold); }

.support__side {
  padding: 30px 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #0A0B0D;
}
.support__qa { margin-top: 26px; }
.support__qa h3 { font-size: 16px; font-weight: 600; color: var(--ink); }
.support__qa p  { margin-top: 8px; font-size: 15px; }
.support__qa em { color: var(--body); font-style: normal; background: #14161A; padding: 1px 6px; border-radius: 5px; }
.support__qa a, .support__direct a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.support__direct {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .legal { padding-top: 24px; padding-bottom: 72px; }
  .legal__note { padding: 24px 22px; }
  .legal__toc ol { columns: 1; }
  .legal__body section { padding-top: 36px; }
  .support { grid-template-columns: 1fr; gap: 56px; margin-top: 44px; }
  .support__side { padding: 24px 22px; }
}
