/* ProfEat - landing page
   Compiled from the design canvas to plain CSS. No framework, no runtime. */

:root {
  --bg: #05070a;
  --gold: #FFB800;
  --gold-lt: #FDE047;
  --gold-hover: #FACC15;
  --text: #ffffff;
  --text-soft: #C7CEDA;
  --muted: #9AA3B2;
  --muted-dim: #6B7484;
  --line: rgba(255, 255, 255, .07);
  --line-strong: rgba(255, 255, 255, .16);
  --card: rgba(255, 255, 255, .035);
  --card-line: rgba(255, 255, 255, .08);
  --shell: 1180px;
}

* { box-sizing: border-box; }

/* .grid sets display, which would otherwise beat the hidden attribute
   on the audience panels. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; }
img { max-width: 100%; }
::selection { background: var(--gold); color: #000; }

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

.shell { max-width: var(--shell); margin: 0 auto; }

.page {
  min-height: 100vh;
  background:
    radial-gradient(1200px 700px at 78% -10%, rgba(255, 184, 0, .16), transparent 60%),
    radial-gradient(900px 600px at 0% 30%, rgba(253, 224, 71, .06), transparent 60%),
    var(--bg);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

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

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(5, 7, 10, .72);
  border-bottom: 1px solid var(--line);
}

.header__bar {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
}
.brand img { width: 32px; height: 32px; border-radius: 9px; display: block; }
.brand em { color: var(--gold); font-style: normal; }

.nav {
  margin-left: auto;
  display: none;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
}
.nav a { color: var(--muted); transition: color .2s; }
.nav a:hover { color: var(--text); }

.btn-nav {
  margin-left: auto;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  transition: background .2s;
}
.btn-nav:hover { background: var(--gold-hover); color: #000; }

.burger {
  margin-left: auto;
  flex: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform .3s, opacity .2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.progress-track {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, .06);
}
.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  box-shadow: 0 0 12px rgba(255, 184, 0, .6);
}

.menu {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s cubic-bezier(.4, 0, .2, 1);
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.menu.is-open { max-height: 380px; }
.menu__inner { display: grid; gap: 4px; padding: 12px 20px 20px; }
.menu a {
  padding: 12px 0;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.menu .btn-primary {
  margin-top: 12px;
  border-bottom: 0;
  text-align: center;
  color: #000;
}

/* ---------------------------------------------------------------- buttons */

.btn-primary,
.btn-ghost {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  transition: background .2s, transform .2s, border-color .2s;
}
.btn-primary {
  background: var(--gold);
  color: #000;
  box-shadow: 0 18px 44px -18px rgba(255, 184, 0, .8);
}
.btn-primary:hover { background: var(--gold-hover); color: #000; transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  font-weight: 700;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .09); color: var(--text); }

/* Store badges - the apps are not published yet, so these are inert by design. */
.store-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 13px 28px;
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .04);
  color: var(--text-soft);
  cursor: default;
}
.store-badge strong { font-size: 16px; font-weight: 800; }
.store-badge span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.hero { padding: 132px 20px 40px; }
.hero__inner {
  display: grid;
  gap: 56px;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  align-items: center;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 184, 0, .28);
  background: rgba(255, 184, 0, .08);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-lt);
  margin-bottom: 24px;
}
.pill-badge i {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--gold);
  color: #000;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.hero h1 {
  font-size: clamp(40px, 8vw, 68px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 800;
  margin: 0 0 20px;
  text-wrap: balance;
}
.hero h1 em { color: var(--gold); font-style: normal; }

.hero__lede {
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
  margin: 0 0 32px;
  text-wrap: pretty;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--card-line);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
}

/* phone mockup */

.phone-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  will-change: transform;
}
.phone-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 184, 0, .35), transparent 65%);
  filter: blur(30px);
  animation: pf-glow 5s ease-in-out infinite;
}
.phone {
  position: relative;
  width: 320px;
  max-width: 88vw;
  animation: pf-float 6s ease-in-out infinite;
}
.phone__shell {
  position: relative;
  border-radius: 44px;
  padding: 12px;
  background: linear-gradient(160deg, #262b33, #0b0e13);
  box-shadow: 0 50px 90px -40px rgba(0, 0, 0, .9), inset 0 0 0 1px rgba(255, 255, 255, .08);
}
.phone__screen {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0d12, #05070a);
  aspect-ratio: 9 / 19;
  display: flex;
}
.screen {
  position: absolute;
  inset: 0;
  padding: 28px 22px 22px;
  display: flex;
  flex-direction: column;
  transition: opacity .6s, transform .6s;
  opacity: 0;
  transform: translateY(18px);
}
.screen.is-active { opacity: 1; transform: translateY(0); }
.screen.is-past { opacity: 0; transform: translateY(-18px); }
.screen--qr { padding: 22px; }

.screen__logo { flex: 1; display: grid; place-items: center; }
.screen__logo img {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  display: block;
  box-shadow: 0 18px 40px -14px rgba(255, 184, 0, .55);
}
.screen__title { font-size: 30px; font-weight: 800; letter-spacing: -.03em; }
.screen__title em { color: var(--gold); font-style: normal; }
.screen p { font-size: 13px; line-height: 1.5; color: var(--muted); margin: 8px 0 18px; }
.screen__list { display: grid; gap: 9px; font-size: 12px; color: var(--text-soft); }
.screen__list div { display: flex; gap: 9px; align-items: center; }
.screen__list i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
  flex: none;
}
.screen__spacer { flex: 1; }
.screen__cta {
  padding: 15px;
  border-radius: 16px;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  text-align: center;
  font-size: 14px;
  letter-spacing: .06em;
}
.screen__cta--muted {
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  letter-spacing: 0;
  font-size: 13px;
}

.screen__heading { font-size: 24px; font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }
.screen__sub { font-size: 12px; color: var(--muted); margin: 10px 0 18px; }
.role {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--card-line);
}
.role + .role { margin-top: 12px; }
.role--on { background: rgba(255, 255, 255, .05); border-color: rgba(255, 184, 0, .35); }
.role__row { display: flex; gap: 11px; align-items: center; }
.role__icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  display: grid;
  place-items: center;
  font-size: 17px;
}
.role--on .role__icon { background: rgba(255, 184, 0, .14); color: var(--gold); }
.role__name { font-weight: 800; font-size: 14px; }
.role__desc { font-size: 11px; color: var(--muted); }

.booking__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}
.booking__top b { font-weight: 800; color: var(--text); font-size: 15px; }
.booking__card {
  margin: 16px 0;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--card-line);
  text-align: center;
}
.booking__qr {
  width: 116px;
  height: 116px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: #fff;
  display: grid;
  place-items: center;
}
.booking__qr i {
  width: 92px;
  height: 92px;
  background: repeating-conic-gradient(#000 0% 25%, #fff 0% 50%) 50% / 16px 16px;
}
.booking__name { font-weight: 800; font-size: 15px; }
.booking__hint { font-size: 12px; color: var(--muted); }
.booking__rows { display: grid; gap: 9px; }
.booking__row {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-soft);
}
.booking__row--gold {
  background: rgba(255, 184, 0, .1);
  border: 1px solid rgba(255, 184, 0, .25);
}
.booking__row--gold span:first-child { color: var(--gold-lt); }
.booking__row--gold span:last-child { color: var(--text); }
.booking__row b { color: var(--gold); font-weight: 700; }

.dots { display: flex; gap: 7px; justify-content: center; margin-top: 18px; }
.dots button {
  width: 26px;
  height: 5px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  padding: 0;
  background: rgba(255, 255, 255, .18);
  transition: background .3s;
}
.dots button[aria-selected="true"] { background: var(--gold); }

/* ---------------------------------------------------------------- marquee */

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: rgba(255, 255, 255, .02);
  padding: 16px 0;
  margin: 48px 0 0;
}
.marquee__track { display: flex; width: max-content; animation: pf-marquee 26s linear infinite; }
.marquee__row {
  display: flex;
  gap: 40px;
  padding-right: 40px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted-dim);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.marquee__row i { color: var(--gold); font-style: normal; }

/* ---------------------------------------------------------------- sections */

.section { padding: 96px 20px; }
.section--tight { padding: 40px 20px 96px; }

.eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section h2 {
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 800;
  margin: 0 0 16px;
}

.section__intro { max-width: 620px; margin-bottom: 52px; }
.section__intro p { color: var(--muted); font-size: 17px; line-height: 1.6; margin: 0; }

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
}
.grid--narrow { grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); }
.grid--wide { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }

.step {
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .02));
  border: 1px solid var(--card-line);
  transition: border-color .25s, transform .25s;
}
.step:hover { border-color: rgba(255, 184, 0, .4); transform: translateY(-4px); }
.step__num {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 184, 0, .14);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 20px;
}
.step h3 { font-size: 21px; font-weight: 800; margin: 0 0 10px; letter-spacing: -.02em; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0; }

/* audience switch */

.audience__head {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 34px;
}
.audience__head h2 { margin: 0; max-width: 560px; }

.switch {
  display: flex;
  padding: 5px;
  gap: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--card-line);
}
.switch button {
  padding: 11px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  font-size: 14px;
  background: transparent;
  color: var(--muted);
  transition: background .25s, color .25s;
}
.switch button[aria-selected="true"] { background: var(--gold); color: #000; }

.card {
  padding: 28px;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--card-line);
  transition: background .25s;
}
.card:hover { background: rgba(255, 255, 255, .06); }
.card__icon { font-size: 26px; margin-bottom: 16px; }
.card h3 { font-size: 18px; font-weight: 800; margin: 0 0 8px; letter-spacing: -.01em; }
.card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* ---------------------------------------------------------------- coins */

.coins {
  padding: 96px 20px;
  background: linear-gradient(180deg, rgba(255, 184, 0, .05), transparent);
}
.coins__inner {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(min(310px, 100%), 1fr));
  align-items: center;
}
.coins p.lede { color: var(--muted); font-size: 17px; line-height: 1.6; margin: 0 0 28px; max-width: 460px; }
.earn { display: grid; gap: 10px; max-width: 460px; }
.earn__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
}
.earn__row span:first-child { font-weight: 600; font-size: 15px; }
.earn__row b { font-weight: 800; color: var(--gold); }
.earn__row--gold { background: rgba(255, 184, 0, .1); border-color: rgba(255, 184, 0, .28); }
.earn__row--gold span:first-child { font-weight: 700; color: var(--gold-lt); }

.wallet {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255, 184, 0, .14), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 184, 0, .22);
}
.wallet__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 26px;
}
.wallet__label { font-size: 13px; color: var(--muted); font-weight: 700; }
.wallet__count {
  font-size: clamp(38px, 7vw, 54px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.wallet__euro { font-size: 13px; color: var(--gold-lt); font-weight: 700; }
.wallet__top img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: block;
  animation: pf-pulse 2.6s ease-in-out infinite;
}
.wallet__levels {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.levels { display: grid; gap: 12px; }
.level__row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--text-soft);
}
.level__row--now { color: var(--text); }
.level__row--now span:last-child { color: var(--gold); }
.level__row span:last-child { color: var(--muted-dim); }
.level__track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  overflow: hidden;
}
.level__fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transition: width 1.6s cubic-bezier(.2, .8, .2, 1);
}
.levels > div:nth-child(2) .level__fill { transition-delay: .15s; }
.levels > div:nth-child(3) .level__fill { transition-delay: .3s; }
.levels > div:nth-child(4) .level__fill { transition-delay: .45s; }

/* ---------------------------------------------------------------- restaurants */

.panel {
  padding: 26px;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--card-line);
}
.panel__label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.panel p { margin: 0; font-size: 15px; line-height: 1.5; }

.week { display: grid; gap: 9px; }
.week__row { display: flex; align-items: center; gap: 12px; }
.week__day { width: 42px; font-size: 13px; font-weight: 800; color: var(--text-soft); }
.week__bar {
  flex: 1;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, .05);
  color: var(--muted-dim);
}
.week__bar--hi {
  background: rgba(255, 184, 0, .18);
  border: 1px solid rgba(255, 184, 0, .3);
  font-weight: 800;
  color: var(--gold-lt);
}
.week__bar--mid { background: rgba(255, 184, 0, .1); color: var(--text-soft); }
.week__bar--lo { background: rgba(255, 184, 0, .14); color: var(--gold-lt); }

.agenda { display: grid; gap: 10px; }
.agenda__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
}
.agenda__who { font-weight: 800; font-size: 14px; }
.agenda__meta { font-size: 12px; color: var(--muted); }
.tag {
  font-size: 11px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: var(--muted);
  white-space: nowrap;
}
.tag--gold { background: rgba(255, 184, 0, .16); color: var(--gold-lt); }
.tag--green { background: rgba(74, 222, 128, .14); color: #6EE7A0; }

.stack { display: grid; gap: 20px; align-content: start; }
.quote { margin: 0 0 14px; font-size: 15px; line-height: 1.5; }
.tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tags .tag--gold { font-size: 12px; padding: 6px 12px; }
.tags .tag--plain {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: var(--text-soft);
}

.stats {
  margin-top: 20px;
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(255, 184, 0, .1), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .09);
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.stats__label { font-size: 13px; color: var(--muted); font-weight: 700; margin-bottom: 6px; }
.stats__value { font-size: 30px; font-weight: 800; letter-spacing: -.02em; }
.stats__value--gold { color: var(--gold); }

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

.faq { max-width: 820px; margin: 0 auto; }
.faq h2 { margin: 0 0 36px; }
.faq__list { display: grid; gap: 12px; }
.faq__item {
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--card-line);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--text);
  font-family: inherit;
  font-size: 16.5px;
  font-weight: 700;
  text-align: left;
}
.faq__sign {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 184, 0, .15);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 800;
  transition: transform .3s;
}
.faq__q[aria-expanded="true"] .faq__sign { transform: rotate(45deg); }
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s cubic-bezier(.4, 0, .2, 1);
}
.faq__a p { margin: 0; padding: 0 22px 22px; color: var(--muted); font-size: 15.5px; line-height: 1.65; }

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

.download { padding: 40px 20px 96px; }
.download__card {
  max-width: var(--shell);
  margin: 0 auto;
  padding: clamp(32px, 6vw, 68px);
  border-radius: 32px;
  text-align: center;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(255, 184, 0, .22), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 184, 0, .22);
}
.download__card h2 {
  font-size: clamp(30px, 6vw, 52px);
  line-height: 1.03;
  letter-spacing: -.035em;
  font-weight: 800;
  margin: 0 0 16px;
  text-wrap: balance;
}
.download__card > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 auto 30px;
  max-width: 460px;
}
.download__badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.download__note { margin-top: 22px; font-size: 13px; color: var(--muted-dim); }

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

.footer { border-top: 1px solid var(--line); padding: 56px 20px 36px; }
.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer__brand { min-width: 260px; max-width: 340px; }
.footer__brand p { margin: 14px 0 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
  padding-top: 4px;
}
.footer__links a { color: var(--muted); transition: color .2s; }
.footer__links a:hover { color: var(--text); }
/* Only earns its place once the links become a stacked column (see responsive). */
.footer__links-label { display: none; margin-bottom: 12px; }
.footer__legal { min-width: 240px; font-size: 14px; line-height: 1.65; color: var(--muted); }
.footer__legal-label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-bottom: 12px;
}
.footer__legal-row { display: flex; align-items: flex-start; gap: 9px; }
.footer__legal-row + .footer__legal-row { margin-top: 10px; }
.footer__legal-row i { color: var(--gold); line-height: 1.5; font-style: normal; }
.footer__legal-row b { color: #E7EAF0; font-weight: 600; letter-spacing: .01em; }
.footer__bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted-dim);
}

/* ---------------------------------------------------------------- 404 */

.notfound {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  text-align: center;
}
.notfound__code {
  font-size: clamp(72px, 18vw, 140px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  color: var(--gold);
  margin: 0;
}
.notfound h1 {
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 18px 0 12px;
}
.notfound p { color: var(--muted); font-size: 17px; line-height: 1.6; margin: 0 0 30px; }

/* ---------------------------------------------------------------- reveal */

[data-reveal] { opacity: 0; }
[data-reveal].is-in { animation: pf-rise .8s cubic-bezier(.2, .8, .2, 1) forwards; }

@keyframes pf-rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes pf-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pf-glow { 0%, 100% { opacity: .45; } 50% { opacity: .85; } }
@keyframes pf-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pf-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 184, 0, .35); }
  50% { box-shadow: 0 0 0 18px rgba(255, 184, 0, 0); }
}

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

@media (min-width: 860px) {
  .nav { display: flex; }
  .burger { display: none; }
  .btn-nav { margin-left: 0; display: inline-block; }
  .menu { display: none; }
}

@media (max-width: 859px) {
  .btn-nav { display: none; }
}

/* On narrow screens the footer's three blocks stack, so the link row wraps
   into a ragged 2x2. Give it its own labelled column instead. */
@media (max-width: 719px) {
  .footer__top { gap: 34px; }

  .footer__links-label { display: block; }

  .footer__links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
    width: 100%;
    font-size: 15px;
  }
  .footer__links a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }
  .footer__links a:first-of-type { border-top: 1px solid var(--line); }

  .footer__bottom {
    margin-top: 32px;
    justify-content: flex-start;
    gap: 6px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; }
}
