:root {
  --night: #0b0b1c;
  --slab: #14142b;
  --slab-2: #1d1d3a;
  --slab-3: #262649;
  --edge-1: #33335c;
  --edge-2: #4a4a7a;
  --cloud: #f4f3fb;
  --fog: #a9a7c4;
  --ember: #f0891e;
  --ember-2: #ff9d3a;
  --ember-ink: #241200;
  --sea: #3a6fe0;
  --pos: #43c58a;
  --neg: #e06767;
  --ember-grad: linear-gradient(120deg, #f7a83c 0%, #e2730f 100%);
  --curve: 12px;
  --span: 1060px;
  --pad: 18px;
  --type: Verdana, Geneva, Tahoma, sans-serif;
  --display: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; } }
body { margin: 0; font: 15.5px/1.62 var(--type); color: var(--cloud); background: var(--night); overflow-x: hidden; max-width: 100%; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a:focus-visible, [role="link"]:focus-visible, input:focus-visible, label:focus-visible { outline: 2px solid var(--ember); outline-offset: 2px; }
h1, h2, h3 { margin: 0 0 15px; font-family: var(--display); font-weight: 700; line-height: 1.2; color: var(--cloud); overflow-wrap: break-word; }
h1 { font-size: 41px; letter-spacing: .3px; }
h2 { font-size: 28px; }
h3 { font-size: 20px; margin-top: 24px; }
p { margin: 0 0 14px; overflow-wrap: break-word; }
ul, ol { margin: 0 0 16px; padding-left: 22px; }
li { margin-bottom: 7px; }
strong { font-weight: 700; color: #fff; }

table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 6px 0 8px; border-radius: var(--curve); overflow: hidden; }
th, td { padding: 12px 15px; border: 1px solid var(--edge-1); text-align: left; vertical-align: middle; font-size: 14.5px; }
th { background: var(--slab-3); font-weight: 700; color: #fff; }
td { background: var(--slab); }
tr:nth-child(even) td { background: var(--slab-2); }
td:first-child { font-weight: 700; color: #fff; }

.page { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1 0 auto; }
.bounds { max-width: var(--span); margin: 0 auto; padding: 0 var(--pad) 50px; }
.jump { cursor: pointer; -webkit-user-select: none; user-select: none; }

@keyframes vx-beat {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(240,137,30,0); }
  50% { transform: scale(1.04); box-shadow: 0 0 24px rgba(240,137,30,.42); }
}
.act--beat { animation: vx-beat 2.9s ease-in-out infinite; will-change: transform; }
.act--beat:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .act--beat { animation: none; } }

.act {
  display: flex; align-items: center; justify-content: center; text-align: center;
  max-width: 320px; width: 100%; min-height: 56px; margin: 22px auto 0; padding: 12px 26px;
  border-radius: var(--curve); background: var(--ember-grad); color: var(--ember-ink);
  font-family: var(--display); font-size: 18px; font-weight: 700; text-decoration: none; transition: filter .2s, transform .1s;
}
.act:hover { filter: brightness(1.07); }
.act:active { transform: scale(.98); }

.masthead { position: sticky; top: 0; z-index: 50; background: var(--slab); border-bottom: 1px solid var(--edge-1); }
.masthead__row { max-width: var(--span); margin: 0 auto; padding: 0 var(--pad); height: 68px; display: flex; align-items: center; gap: 20px; }
.wordmark { margin-right: auto; }
.wordmark img { height: 40px; width: auto; }
.mainnav { display: flex; align-items: center; gap: 16px; }
.mainnav__items { display: flex; gap: 7px; list-style: none; margin: 0; padding: 0; }
.mainnav__items li { margin: 0; }
.mainnav__items .jump { display: block; padding: 8px 13px; border-radius: 8px; font-size: 14px; font-weight: 700; background: var(--slab-2); border: 1px solid var(--edge-1); color: var(--cloud); }
.mainnav__items .jump:hover { background: var(--slab-3); border-color: var(--edge-2); }
.mainnav__actions { display: none; }
.masthead__actions { display: flex; gap: 10px; }
.sign-in, .sign-up { display: inline-flex; align-items: center; justify-content: center; height: 40px; padding: 0 18px; border-radius: 8px; font-family: var(--display); font-size: 14px; font-weight: 700; text-decoration: none; white-space: nowrap; transition: filter .2s, background .2s; }
.sign-in { background: var(--slab-2); color: var(--ember-2); border: 1px solid var(--ember); }
.sign-in:hover { background: var(--slab-3); }
.sign-up { background: var(--ember-grad); color: var(--ember-ink); }
.sign-up:hover { filter: brightness(1.07); }
.nav-switch { position: absolute; opacity: 0; pointer-events: none; }
.masthead__toggle { display: none; width: 42px; height: 42px; padding: 9px; flex-direction: column; justify-content: space-between; cursor: pointer; border-radius: 8px; background: var(--slab-2); border: 1px solid var(--edge-1); }
.masthead__toggle span { display: block; height: 3px; border-radius: 2px; background: var(--cloud); transition: transform .25s, opacity .25s; }

.hero { padding: 32px 0 20px; text-align: center; }
.hero__title { margin-bottom: 18px; }
.hero__stage { display: block; margin: 0 auto 22px; border-radius: var(--curve); overflow: hidden; }
.hero__stage img { width: 100%; height: auto; }
.hero__intro { max-width: 920px; margin: 0 auto; text-align: left; font-size: 16.5px; }
.hero__intro p:last-child { margin-bottom: 0; }

.keyfacts { margin: 6px 0 28px; }
.keyfacts__cap { display: flex; align-items: center; justify-content: center; min-height: 60px; margin: 0 0 18px; padding: 12px 22px; border-radius: var(--curve); background: var(--ember-grad); color: var(--ember-ink); font-size: 23px; text-align: center; }
.keyfacts td:first-child { width: 33%; }

.block, .rail, .feedback, .asks, .pagefoot { content-visibility: auto; contain-intrinsic-size: auto 640px; }
.block { margin: 0 0 22px; padding: 25px 28px; border-radius: var(--curve); background: var(--slab); border: 1px solid var(--edge-1); }
.block > h2:first-child, .block > h3:first-child { margin-top: 0; }
.block--text p, .block--text li { font-size: 16px; }
.block--text h3 { color: var(--ember-2); }
.block--text { min-width: 0; }

.strip { margin: 0 0 22px; }
.strip__link { display: block; border-radius: var(--curve); overflow: hidden; }
.strip__link img { width: 100%; border-radius: var(--curve); }

.rail { margin: 0 0 26px; }
.rail h2 { text-align: center; margin-bottom: 20px; }
.rail__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; list-style: none; margin: 0 0 20px; padding: 0; }
.rail__nav li { margin: 0; }
.rail__nav-btn { display: flex; align-items: center; justify-content: center; height: 46px; border-radius: 9px; background: var(--slab); border: 1px solid var(--edge-1); color: var(--cloud); font-family: var(--display); font-size: 15px; font-weight: 700; text-decoration: none; transition: background .2s, border-color .2s; }
.rail__nav-btn:hover, .rail__nav-btn.active { background: var(--slab-3); border-color: var(--ember); color: #fff; }
.pane { display: none; }
.pane.active { display: block; }
.rail__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px 16px; }
.tile { display: block; text-decoration: none; color: var(--cloud); }
.tile__pic { display: block; position: relative; border-radius: 10px; overflow: hidden; background: var(--slab-2); aspect-ratio: 360 / 472; }
.tile__pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s; }
.tile:hover .tile__pic img { transform: scale(1.05); }
.tile__name { display: block; margin-top: 9px; font-size: 14px; font-weight: 700; line-height: 1.3; }
.tile__maker { display: block; font-size: 12px; color: var(--fog); }

.makers { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 20px; }
.makers--pay { grid-template-columns: repeat(5, 1fr); }
.maker { display: flex; align-items: center; justify-content: center; height: 60px; padding: 8px 10px; border-radius: 9px; background: var(--slab-2); border: 1px solid var(--edge-1); }
.maker:hover { border-color: var(--edge-2); }
.maker img { max-height: 40px; width: auto; object-fit: contain; }

.appcard { margin-top: 22px; }
.appcard__row { display: flex; gap: 28px; align-items: center; padding: 22px; border-radius: var(--curve); background: var(--slab-2); border: 1px solid var(--edge-1); }
.appcard__pic { flex: 0 0 46%; }
.appcard__pic img { border-radius: 10px; }
.appcard__body { flex: 1 1 0; min-width: 0; }
.appcard__head { font-family: var(--display); font-size: 21px; font-weight: 700; margin-bottom: 14px; }
.appcard__specs { display: flex; flex-wrap: wrap; gap: 10px 0; list-style: none; margin: 0 0 18px; padding: 0; }
.appcard__specs li { flex: 1 1 25%; text-align: center; padding: 0 10px; border-right: 1px solid var(--edge-1); margin: 0; }
.appcard__specs li:last-child { border-right: 0; }
.appcard__specs span { display: block; font-family: var(--display); font-size: 18px; font-weight: 700; color: var(--ember-2); }
.appcard__specs small { display: block; font-size: 12px; color: var(--fog); }
.appcard__btns { display: flex; flex-wrap: wrap; gap: 12px; }
.appcard__btn { display: inline-flex; align-items: center; justify-content: center; height: 48px; padding: 0 22px; border-radius: 9px; background: var(--ember-grad); color: var(--ember-ink); font-family: var(--display); font-weight: 700; font-size: 15px; text-decoration: none; }
.appcard__btn:hover { filter: brightness(1.07); }

.feedback { margin: 0 0 24px; padding: 25px 28px; border-radius: var(--curve); background: var(--slab); border: 1px solid var(--edge-1); }
.feedback__bar { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 20px; margin-bottom: 16px; border-radius: var(--curve); background: var(--slab-2); border: 1px solid var(--edge-1); }
.feedback__label { font-size: 13px; color: var(--fog); margin-bottom: 4px; }
.feedback__score { display: flex; align-items: center; gap: 10px; }
.feedback__score > span:first-child { font-family: var(--display); font-size: 26px; font-weight: 700; }
.feedback__score small { color: var(--fog); font-size: 13px; }
.feedback__stars { display: inline-flex; gap: 2px; }
.feedback__stars svg { width: 18px; height: 18px; fill: var(--ember); }
.feedback__cta { display: inline-flex; align-items: center; justify-content: center; height: 44px; padding: 0 22px; border-radius: 9px; background: var(--ember-grad); color: var(--ember-ink); font-family: var(--display); font-weight: 700; font-size: 14px; text-decoration: none; white-space: nowrap; }
.feedback__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 16px; }
.feedback__grid > * { min-width: 0; }
.feedback__card { padding: 18px; border-radius: var(--curve); background: var(--slab-2); border: 1px solid var(--edge-1); }
.feedback__who { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.feedback__badge { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--ember-grad); font-family: var(--display); font-weight: 700; color: var(--ember-ink); }
.feedback__who-name { display: block; font-weight: 700; font-size: 15px; }
.feedback__who small { color: var(--fog); font-size: 12px; }
.feedback__card p { margin: 0; font-size: 14.5px; }

.asks { margin: 0 0 24px; padding: 25px 28px; border-radius: var(--curve); background: var(--slab); border: 1px solid var(--edge-1); }
.asks__cap { text-align: center; }
.asks__row { padding: 16px 20px; margin-bottom: 12px; border-radius: var(--curve); background: var(--slab-2); border: 1px solid var(--edge-1); }
.asks__row h3 { font-size: 17px; margin: 0 0 8px; }
.asks__row p { margin: 0; font-size: 15.5px; }

.revised { margin: 0 0 8px; }
.revised__box { display: flex; align-items: center; gap: 12px; padding: 15px 20px; border-radius: var(--curve); background: var(--slab-2); border: 1px solid var(--ember); font-size: 15px; color: var(--fog); }
.revised__box svg { fill: var(--ember); flex: none; }
.revised__box time { color: var(--cloud); font-weight: 700; }

.pagefoot { background: var(--slab); border-top: 1px solid var(--edge-1); }
.pagefoot__top { max-width: var(--span); margin: 0 auto; padding: 40px var(--pad) 24px; display: flex; justify-content: space-between; gap: 48px; }
.pagefoot__brand { max-width: 420px; }
.pagefoot__brand img { height: 44px; width: auto; margin-bottom: 14px; }
.pagefoot__brand p { font-size: 14px; color: var(--fog); }
.pagefoot__social { display: flex; gap: 10px; margin-top: 16px; }
.pagefoot__social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--slab-2); border: 1px solid var(--edge-1); }
.pagefoot__social a:hover { border-color: var(--ember); }
.pagefoot__social svg { width: 18px; height: 18px; fill: var(--cloud); }
.pagefoot__cols { display: flex; gap: 56px; }
.pagefoot__h { font-family: var(--display); font-size: 15px; font-weight: 700; margin: 0 0 12px; color: #fff; }
.pagefoot__col ul { list-style: none; margin: 0; padding: 0; }
.pagefoot__col li { margin-bottom: 8px; }
.pagefoot__col .jump { font-size: 14px; color: var(--fog); }
.pagefoot__col .jump:hover { color: var(--cloud); text-decoration: underline; }
.pagefoot__pay { max-width: var(--span); margin: 0 auto; padding: 22px var(--pad); display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 22px; border-top: 1px solid var(--edge-1); }
.pagefoot__pay img { height: 30px; width: auto; opacity: .92; }
.pagefoot__seals { max-width: var(--span); margin: 0 auto; padding: 20px var(--pad); display: grid; grid-template-columns: repeat(6, auto); align-items: center; justify-content: center; gap: 22px; border-top: 1px solid var(--edge-1); }
.pagefoot__seals img { height: 44px; width: auto; opacity: .92; }
.pagefoot__seals a:hover img { opacity: 1; }
.pagefoot__sealtxt { font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: .5px; color: var(--fog); text-decoration: none; }
.pagefoot__sealtxt:hover { color: var(--cloud); }
.over18 { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 3px solid var(--neg); color: var(--neg); font-family: var(--display); font-weight: 700; font-size: 14px; }
.pagefoot__legal { max-width: var(--span); margin: 0 auto; padding: 20px var(--pad); border-top: 1px solid var(--edge-1); }
.pagefoot__legal p { font-size: 12.5px; line-height: 1.7; color: var(--fog); margin: 0 0 10px; }
.pagefoot__copy { max-width: var(--span); margin: 0 auto; padding: 16px var(--pad) 30px; text-align: center; font-size: 12px; color: var(--fog); border-top: 1px solid var(--edge-1); }
.pagefoot__copy p { margin: 0; }

@media (max-width: 1120px) {
  .makers { grid-template-columns: repeat(5, 1fr); }
  .masthead__row { gap: 12px; }
  .mainnav__items .jump { padding: 8px 10px; font-size: 13px; }
}
@media (max-width: 1000px) {
  .rail__grid { grid-template-columns: repeat(3, 1fr); }
  .makers { grid-template-columns: repeat(4, 1fr); }
  .makers--pay { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 860px) {
  .masthead__toggle { display: flex; order: 3; }
  .masthead__actions { order: 2; margin-left: auto; }
  .wordmark { margin-right: 0; }
  .mainnav { display: none; position: absolute; left: 0; right: 0; top: 68px; flex-direction: column; align-items: stretch; gap: 0; padding: 12px var(--pad) 20px; background: var(--slab); border-bottom: 1px solid var(--edge-1); }
  .nav-switch:checked ~ .mainnav { display: flex; }
  .nav-switch:checked ~ .masthead__toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .nav-switch:checked ~ .masthead__toggle span:nth-child(2) { opacity: 0; }
  .nav-switch:checked ~ .masthead__toggle span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
  .mainnav__items { flex-direction: column; gap: 0; }
  .mainnav__items .jump { border-radius: 0; border: 0; border-bottom: 1px solid var(--edge-1); background: transparent; padding: 12px 6px; font-size: 15px; }
  .mainnav__actions { display: flex; gap: 10px; margin-top: 14px; }
  .mainnav__actions .sign-in, .mainnav__actions .sign-up { flex: 1; }
  .appcard__row { flex-direction: column; align-items: stretch; }
  .appcard__pic { flex-basis: auto; }
  .pagefoot__top { flex-direction: column; gap: 30px; }
  .pagefoot__cols { gap: 40px; }
  .feedback__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .bounds { padding: 0 13px 42px; }
  h1 { font-size: 30px; }
  h2 { font-size: 23px; }
  h3 { font-size: 18px; }
  .keyfacts__cap { font-size: 19px; min-height: 54px; }
  .hero__intro, .block--text p, .block--text li { font-size: 15px; }
  .block { padding: 20px 16px; }
  .makers { grid-template-columns: repeat(4, 1fr); }
  .rail__grid { grid-template-columns: repeat(2, 1fr); }
  .feedback__grid { grid-template-columns: 1fr; }
  .feedback__bar { flex-direction: column; align-items: flex-start; }
  .feedback__cta { width: 100%; }
  .pagefoot__seals { grid-template-columns: repeat(3, auto); gap: 16px; }
  th, td { padding: 10px 10px; font-size: 13px; }
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
@media (max-width: 470px) {
  .masthead__row { gap: 8px; }
  .masthead__actions { gap: 6px; }
  .sign-in, .sign-up { height: 38px; padding: 0 12px; font-size: 13px; }
  .wordmark img { height: 34px; }
  .makers, .makers--pay { grid-template-columns: repeat(3, 1fr); }
  .rail__grid { grid-template-columns: repeat(2, 1fr); gap: 14px 10px; }
  .appcard__specs li { flex-basis: 50%; border-right: 0; margin-bottom: 8px; }
  .pagefoot__seals { grid-template-columns: repeat(2, auto); }
}
