:root {
  --navy: #06182E;
  --navy-deep: #041223;
  --navy-panel: #0B2038;
  --navy-panel-2: #081D35;
  --border: rgba(197, 216, 240, 0.14);
  --border-strong: rgba(197, 216, 240, 0.22);
  --text: #F7F9FC;
  --muted: #9AA8BA;
  --muted-2: #6F8094;
  --orange: #FF7A00;
  --orange-bright: #FF8A00;
  --gold: #FFB21A;
  --blue: #3F73C9;
  --blue-dark: #214B8F;
  --shadow: 0 28px 70px rgba(0,0,0,.32);
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  background: var(--navy);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

button, input { font: inherit; }

button { color: inherit; }

.shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(390px, .88fr);
  background: var(--navy);
}

.story {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 82%, rgba(63,115,201,.09), transparent 28%),
    radial-gradient(circle at 65% 24%, rgba(255,122,0,.055), transparent 24%),
    linear-gradient(145deg, #071a31 0%, var(--navy) 54%, #041426 100%);
}

.story::after {
  content: "";
  position: absolute;
  inset: auto -14% -34% -6%;
  height: 55%;
  border-radius: 50% 50% 0 0;
  border-top: 1px solid rgba(255,255,255,.045);
  box-shadow:
    0 -38px 0 -37px rgba(255,255,255,.035),
    0 -80px 0 -79px rgba(255,255,255,.025);
  transform: rotate(-2deg);
  pointer-events: none;
}

.story__inner {
  width: min(850px, calc(100% - 96px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 56px 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-bottom: 42px;
}

.brand__mark {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 2px;
}

.brand__word {
  font-size: clamp(38px, 3.6vw, 58px);
  line-height: .9;
  letter-spacing: -.045em;
  font-weight: 200;
}

.brand__word span:last-child {
  color: var(--orange);
  font-weight: 300;
}

.brand__byline {
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .31em;
  text-transform: uppercase;
  transform: translateX(.16em);
}

.brand__byline strong {
  color: var(--text);
  font-weight: 500;
}

.hero-copy { max-width: 760px; }

.eyebrow,
.section-kicker {
  color: #C8D2DE;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 400;
}

.hero-copy h1 {
  margin: 13px 0 17px;
  font-size: clamp(38px, 3.75vw, 58px);
  line-height: 1.01;
  letter-spacing: -.038em;
  font-weight: 200;
}

.hero-copy h1 span { color: var(--orange); }

.lead {
  margin: 0;
  max-width: 720px;
  color: #C4CED9;
  font-size: 15px;
  line-height: 1.65;
}

.game-story {
  margin-top: 36px;
  border-top: 1px solid var(--border-strong);
}

.story-step {
  position: relative;
  display: grid;
  grid-template-columns: 55px minmax(0, 1fr);
  gap: 20px;
  padding: 20px 0 19px;
  border-bottom: 1px solid var(--border);
}

.story-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width .22s ease;
}

.story-step:hover::before { width: 74px; }

.story-step__number {
  padding-top: 2px;
  color: rgba(255,255,255,.25);
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 500;
}

.story-step__copy {
  min-width: 0;
}

.story-step__kicker {
  margin: 0 0 6px;
  color: var(--orange);
  font-size: 9px;
  letter-spacing: .23em;
  text-transform: uppercase;
  font-weight: 500;
}

.story-step h2 {
  margin: 0 0 7px;
  color: #F4F7FA;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -.015em;
  font-weight: 400;
}

.story-step p:not(.story-step__kicker) {
  margin: 0;
  max-width: 690px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.story-step--final {
  padding-bottom: 15px;
}

.story-step__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 13px;
}

.story-step__claim {
  color: #DCE5EE;
  font-size: 10px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.access {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px clamp(32px, 4vw, 72px);
  background:
    radial-gradient(circle at 55% 42%, rgba(63,115,201,.055), transparent 35%),
    linear-gradient(180deg, var(--navy-panel-2) 0%, #07182c 42%, #051526 100%);
  border-left: 1px solid rgba(170,195,224,.12);
}

.access__inner {
  width: min(520px, 100%);
}

.access__head {
  text-align: center;
  margin-bottom: 36px;
}

.access__mini-mark {
  display: none;
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
}

.access__head p {
  margin: 0;
  font-size: 24px;
  letter-spacing: .04em;
  font-weight: 300;
}

.access__head p strong {
  color: var(--orange);
  font-weight: 400;
}

.access__head span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--border);
}

.tab {
  appearance: none;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  padding: 15px 10px;
  color: #AAB7C6;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
}

.tab:hover { color: var(--text); }

.tab.is-active {
  color: var(--text);
  border-bottom-color: var(--orange);
}

.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

form { display: grid; gap: 22px; }

.field { display: grid; gap: 9px; }

.field > span:first-child {
  color: #D2DAE3;
  font-size: 13px;
}

input[type="email"],
input[type="password"],
input[type="text"] {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--border);
  border-radius: 9px;
  outline: none;
  background: rgba(3, 15, 29, .24);
  color: var(--text);
  padding: 0 16px;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

input::placeholder { color: #67788C; }

input:focus {
  border-color: rgba(255,122,0,.66);
  background: rgba(3, 15, 29, .4);
  box-shadow: 0 0 0 3px rgba(255,122,0,.08);
}

.password-wrap { position: relative; display: block; }
.password-wrap input { padding-right: 84px; }

.password-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
  padding: 7px;
}
.password-toggle:hover { color: var(--text); }

.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}
.check input {
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
}

.legal { align-items: flex-start; line-height: 1.45; }

.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--orange);
  cursor: pointer;
  font-size: 12px;
}

.primary-button {
  min-height: 55px;
  margin-top: 2px;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(90deg, var(--orange), #FF6500);
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(255,106,0,.15);
  transition: transform .16s ease, filter .16s ease;
}
.primary-button:hover { filter: brightness(1.06); transform: translateY(-1px); }
.primary-button:active { transform: translateY(0); }

.access__footer {
  margin-top: 58px;
  display: flex;
  justify-content: center;
  gap: 10px;
  color: #8C9AAC;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
}
.access__footer span:first-child { color: #CFD7E1; }
.access__footer span:last-child { color: #CFD7E1; }
.access__footer .dot { color: var(--orange); }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 18px);
  max-width: min(520px, calc(100% - 32px));
  padding: 12px 16px;
  border: 1px solid rgba(255,122,0,.3);
  border-radius: 9px;
  background: #091E35;
  color: #DCE5EE;
  font-size: 13px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 20;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1050px) {
  .shell { grid-template-columns: 1fr; }
  .story, .access { min-height: auto; }
  .story__inner { min-height: auto; padding: 56px 0 62px; }
  .access {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .access__mini-mark { display: block; }
}

@media (max-width: 700px) {
  .story__inner { width: min(100% - 36px, 650px); padding-top: 34px; }
  .brand { margin-bottom: 36px; }
  .brand__mark { width: 54px; height: 54px; }
  .brand__word { font-size: 42px; }
  .hero-copy h1 { font-size: 42px; }
  .lead { font-size: 15px; line-height: 1.65; }
  .game-story { margin-top: 32px; }
  .story-step { grid-template-columns: 40px minmax(0, 1fr); gap: 12px; padding: 18px 0; }
  .story-step__actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .access { padding: 48px 22px 58px; }
  .form-row { align-items: flex-start; flex-direction: column; }
}

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


/* ---------- Manager FAQ ---------- */
.member-faq-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 4%, rgba(255,122,0,.045), transparent 20%),
    linear-gradient(150deg, #071A31 0%, #06182E 55%, #041223 100%);
}

.member-topbar {
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 38px;
  background: rgba(6,24,46,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.member-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.member-brand img { width: 38px; height: 38px; object-fit: contain; }
.member-brand span { font-size: 26px; letter-spacing: -.04em; }
.member-brand i { font-style: normal; font-weight: 200; color: var(--text); }
.member-brand strong { font-weight: 300; color: var(--orange); }

.member-topbar__meta {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.member-faq {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 210px minmax(0, 820px);
  gap: 72px;
  justify-content: center;
  padding: 72px 0 110px;
}

.member-faq__nav {
  position: sticky;
  top: 118px;
  align-self: start;
  display: grid;
  gap: 4px;
}

.member-faq__nav p {
  margin: 0 0 13px;
  color: var(--muted-2);
  font-size: 10px;
  letter-spacing: .22em;
}

.member-faq__nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  padding: 8px 0;
  transition: color .16s ease;
}

.member-faq__nav a:hover { color: var(--orange); }

.member-faq__hero {
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}

.member-faq__hero h1 {
  margin: 11px 0 18px;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 200;
  letter-spacing: -.04em;
}

.member-faq__hero > p:last-child {
  margin: 0;
  color: var(--muted);
  max-width: 720px;
  line-height: 1.75;
}

.member-faq__section {
  padding: 62px 0 12px;
  scroll-margin-top: 105px;
}

.member-faq__section > h2 {
  margin: 10px 0 28px;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: -.025em;
}

.member-faq__item {
  border-top: 1px solid var(--border);
}

.member-faq__item:last-child { border-bottom: 1px solid var(--border); }

.member-faq__item[open] {
  border-top-color: rgba(255,122,0,.4);
}

.member-faq__item summary {
  list-style: none;
  position: relative;
  cursor: pointer;
  padding: 22px 48px 22px 0;
  color: #E8EDF3;
  font-size: 16px;
  font-weight: 400;
}

.member-faq__item summary::-webkit-details-marker { display: none; }

.member-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 17px;
  color: var(--orange);
  font-size: 27px;
  font-weight: 200;
}

.member-faq__item[open] summary::after { content: "−"; }

.member-faq__item p {
  margin: 0 0 16px;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

.member-faq__item p:last-child { margin-bottom: 28px; }
.member-faq__item strong { color: #E7EDF4; font-weight: 500; }

.member-faq__item blockquote {
  margin: 25px 0 30px;
  padding: 16px 20px;
  border-left: 2px solid var(--orange);
  color: #F0F4F8;
  background: rgba(255,122,0,.045);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
}

.member-faq__section--brand { padding-bottom: 60px; }

@media (max-width: 900px) {
  .member-topbar { padding: 0 22px; }
  .member-faq {
    width: min(100% - 40px, 820px);
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 48px;
  }
  .member-faq__nav { display: none; }
}

@media (max-width: 520px) {
  .member-topbar__meta { display: none; }
  .member-faq { width: min(100% - 32px, 820px); }
  .member-faq__hero h1 { font-size: 42px; }
  .member-faq__section { padding-top: 48px; }
}


/* ---------- Compact landing-page FAQ popover ---------- */
.faq-popover-wrap {
  position: relative;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
}

.faq-chip {
  min-width: 50px;
  padding: 9px 12px;
  border: 1px solid rgba(255,122,0,.35);
  border-radius: 9px;
  background: rgba(255,122,0,.055);
  color: #DCE5EE;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, color .16s ease;
}

.faq-chip:hover,
.faq-chip:focus-visible,
.faq-chip[aria-expanded="true"] {
  border-color: rgba(255,122,0,.72);
  background: rgba(255,122,0,.11);
  color: #fff;
}

.faq-popover {
  position: fixed;
  left: 30.87vw;
  top: 50vh;
  transform: translate(-50%, -50%);
  z-index: 30;
  width: min(500px, 44vw);
  max-height: min(72vh, 660px);
  overflow: auto;
  border: 1px solid rgba(190,210,234,.17);
  border-radius: 14px;
  background:
    radial-gradient(circle at 90% 8%, rgba(255,122,0,.05), transparent 28%),
    #081D35;
  box-shadow: 0 28px 70px rgba(0,0,0,.40);
}

.faq-popover[hidden] {
  display: none;
}

.faq-popover__head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 15px;
  border-bottom: 1px solid var(--border);
  background: rgba(8,29,53,.96);
  backdrop-filter: blur(14px);
}

.faq-popover__head > div {
  display: grid;
  gap: 4px;
}

.faq-popover__eyebrow {
  color: var(--orange);
  font-size: 9px;
  letter-spacing: .19em;
}

.faq-popover__head strong {
  font-size: 19px;
  font-weight: 300;
}

.faq-popover__close {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.faq-popover__close:hover {
  color: #fff;
}

.faq-popover__content {
  padding: 0 24px 14px 20px;
}

.faq-popover__content details {
  border-top: 1px solid var(--border);
}

.faq-popover__content details:first-child {
  border-top: 0;
}

.faq-popover__content summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 16px 32px 16px 0;
  color: #E4EAF1;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.faq-popover__content summary::-webkit-details-marker {
  display: none;
}

.faq-popover__content summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 12px;
  color: var(--orange);
  font-size: 20px;
  font-weight: 200;
}

.faq-popover__content details[open] summary::after {
  content: "−";
}

.faq-popover__content p {
  margin: -2px 0 16px;
  padding-right: 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

@media (hover: hover) and (pointer: fine) {
  /* Desktop: short hover delay is handled in JS, click pins it open. */
}

@media (max-width: 1050px) {
  .faq-popover {
    left: 50vw;
    top: 50vh;
    right: auto;
    bottom: auto;
    width: min(500px, calc(100vw - 48px));
    max-height: min(76vh, 660px);
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 700px) {
  .faq-popover-wrap {
    margin-left: auto;
  }

  .faq-popover {
    left: 50vw;
    top: 50vh;
    right: auto;
    bottom: auto;
    width: calc(100vw - 28px);
    max-height: 78vh;
    transform: translate(-50%, -50%);
  }

  .faq-chip {
    min-width: 72px;
  }
}

/* ---------- Product integration ---------- */
.landing-message {
  margin: 0 0 22px;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font-size: 13px;
  line-height: 1.5;
}
.landing-message--error {
  border-color: rgba(255, 105, 105, .35);
  background: rgba(185, 44, 44, .10);
  color: #FFD0D0;
}
.landing-message--success {
  border-color: rgba(255, 122, 0, .32);
  background: rgba(255, 122, 0, .065);
  color: #F0E5D8;
}
.form-hint {
  color: var(--muted-2);
  font-size: 11px;
}
.signed-in-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(3, 15, 29, .20);
}
.signed-in-card__eyebrow {
  color: var(--orange);
  font-size: 10px;
  letter-spacing: .2em;
}
.signed-in-card h2 {
  margin: 10px 0 8px;
  font-size: 32px;
  font-weight: 250;
  letter-spacing: -.03em;
}
.signed-in-card p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}
.primary-button--link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.logout-form {
  display: block;
  margin-top: 18px;
  text-align: center;
}
.logout-button { color: var(--muted); }
.logout-button:hover { color: var(--orange); }

/* ---------- Landing story: four vertical columns (mock alignment) ---------- */
.story__inner {
  width: min(980px, calc(100% - 86px));
  padding-top: 44px;
  padding-bottom: 40px;
}

.brand {
  margin-bottom: 40px;
}

.hero-copy--mock {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.hero-copy--mock .hero-copy__main {
  min-width: 0;
}

.hero-copy--mock h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 3.4vw, 54px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.035em;
}

.hero-copy--mock h1 span {
  color: var(--orange);
  font-weight: 400;
}

.hero-copy--mock .lead {
  max-width: 650px;
  font-size: 15px;
  line-height: 1.55;
  color: #D2DAE3;
}

.faq-popover-wrap--hero {
  flex: 0 0 auto;
  margin: 0 0 3px auto;
}

.faq-popover-wrap--hero .faq-chip {
  min-width: 76px;
  padding: 10px 15px;
  border-color: rgba(255,122,0,.78);
  color: var(--orange);
  background: transparent;
  font-size: 12px;
}

.game-story--columns {
  margin-top: 44px;
  border-top: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.game-story--columns .story-step--column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-height: 345px;
  padding: 0 24px 2px;
  border: 0;
  border-right: 1px solid rgba(197, 216, 240, .28);
  text-align: center;
}

.game-story--columns .story-step--column:first-child {
  padding-left: 0;
}

.game-story--columns .story-step--column:last-child {
  padding-right: 0;
  border-right: 0;
}

.game-story--columns .story-step--column::before {
  display: none;
}

.game-story--columns .story-step__number {
  width: 100%;
  padding: 0;
  margin: 0 0 24px;
  color: var(--orange);
  font-size: 18px;
  line-height: 1;
  letter-spacing: .03em;
  font-weight: 500;
  text-align: left;
}

.game-story--columns .story-step__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  color: var(--orange);
}

.game-story--columns .story-step__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.game-story--columns .story-step h2 {
  margin: 0 0 13px;
  color: #F7F9FC;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -.01em;
  font-weight: 600;
}

.game-story--columns .story-step p.story-step__summary,
.game-story--columns .story-step p.story-step__detail {
  max-width: none;
  margin: 0;
}

.game-story--columns .story-step p.story-step__summary {
  min-height: 51px;
  color: #B8C5D4;
  font-size: 14px;
  line-height: 1.5;
}

.game-story--columns .story-step__dash {
  width: 22px;
  height: 2px;
  margin: 17px auto 18px;
  background: var(--orange);
  border-radius: 2px;
}

.game-story--columns .story-step p.story-step__detail {
  color: #CFD8E2;
  font-size: 13px;
  line-height: 1.55;
}

.story-callout {
  margin-top: 30px;
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  border: 1px solid rgba(197,216,240,.20);
  border-radius: 9px;
  background: linear-gradient(100deg, rgba(255,255,255,.025), rgba(63,115,201,.055));
}

.story-callout img {
  width: 36px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
}

.story-callout div {
  display: grid;
  gap: 7px;
}

.story-callout strong {
  color: #F3F6F9;
  font-size: 14px;
  font-weight: 600;
}

.story-callout span {
  color: #B8C5D4;
  font-size: 13px;
}

@media (max-width: 1250px) and (min-width: 1051px) {
  .story__inner { width: min(900px, calc(100% - 58px)); }
  .game-story--columns .story-step--column { padding-left: 17px; padding-right: 17px; }
  .game-story--columns .story-step p.story-step__detail { font-size: 12px; }
}

@media (max-width: 1050px) {
  .hero-copy--mock { align-items: flex-start; }
  .game-story--columns { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
  .game-story--columns .story-step--column { min-height: 300px; padding: 22px 28px; border-bottom: 1px solid rgba(197,216,240,.20); }
  .game-story--columns .story-step--column:nth-child(2) { border-right: 0; }
  .game-story--columns .story-step--column:nth-child(3),
  .game-story--columns .story-step--column:nth-child(4) { border-bottom: 0; padding-top: 30px; }
  .game-story--columns .story-step--column:first-child { padding-left: 28px; }
  .game-story--columns .story-step--column:last-child { padding-right: 28px; }
}

@media (max-width: 700px) {
  .story__inner { width: min(100% - 36px, 650px); }
  .hero-copy--mock { display: block; }
  .faq-popover-wrap--hero { margin-top: 22px; }
  .game-story--columns { grid-template-columns: 1fr; margin-top: 34px; }
  .game-story--columns .story-step--column,
  .game-story--columns .story-step--column:first-child,
  .game-story--columns .story-step--column:last-child {
    min-height: 0;
    padding: 24px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(197,216,240,.20);
  }
  .game-story--columns .story-step--column:last-child { border-bottom: 0; }
  .game-story--columns .story-step__number { text-align: center; margin-bottom: 18px; }
  .game-story--columns .story-step p.story-step__summary { min-height: 0; }
  .story-callout { margin-top: 16px; }
}




/* Sprint: landing page compact height — desktop ca. 50px weniger */
@media (min-width: 1100px) and (min-height: 700px) {
  .story__inner {
    padding-top: 22px;
    padding-bottom: 18px;
  }

  .brand {
    margin-bottom: 28px;
  }

  .hero-copy {
    margin-bottom: 24px;
  }

  .game-story {
    margin-top: 22px;
  }

  .story-step {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .story-step__actions {
    margin-top: 18px;
  }

  .access__inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}


/* ---------- Landing feature list ---------- */
.hero-info-actions {
  flex: 0 0 auto;
  margin: 0 0 3px auto;
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero-info-actions .faq-popover-wrap--hero { margin: 0; }
.features-popover-wrap { position: relative; display: inline-flex; }
.feature-chip { min-width: 104px; }
.features-popover {
  position: fixed;
  left: 30.87vw;
  top: 50vh;
  transform: translate(-50%, -50%);
  z-index: 31;
  width: min(610px, 49vw);
  max-height: min(78vh, 760px);
  overflow: auto;
  border: 1px solid rgba(190,210,234,.17);
  border-radius: 14px;
  background: radial-gradient(circle at 90% 8%, rgba(255,122,0,.055), transparent 28%), #081D35;
  box-shadow: 0 28px 70px rgba(0,0,0,.40);
}
.features-popover[hidden] { display:none; }
.features-popover__head {
  position: sticky;
  top: 0;
  z-index: 2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 20px 15px;
  border-bottom:1px solid var(--border);
  background:rgba(8,29,53,.96);
  backdrop-filter:blur(14px);
}
.features-popover__head > div { display:grid; gap:4px; }
.features-popover__head strong { font-size:19px; font-weight:300; }
.features-popover__close {
  width:30px; height:30px; border:0; background:transparent; color:var(--muted);
  font-size:24px; line-height:1; cursor:pointer;
}
.features-popover__close:hover { color:#fff; }
.features-popover__content { padding: 5px 22px 14px; }
.feature-group {
  display:grid;
  grid-template-columns:38px minmax(0,1fr);
  gap:14px;
  padding:18px 0;
  border-bottom:1px solid var(--border);
}
.feature-group:last-child { border-bottom:0; }
.feature-group__number {
  padding-top:2px;
  color:var(--orange);
  font-size:10px;
  letter-spacing:.16em;
}
.feature-group h3 {
  margin:0 0 6px;
  color:#F0F4F8;
  font-size:14px;
  font-weight:500;
}
.feature-group p {
  margin:0;
  color:var(--muted);
  font-size:12px;
  line-height:1.62;
}
@media (max-width:1050px) {
  .features-popover {
    left:50vw; top:50vh; width:min(610px,calc(100vw - 48px));
    transform:translate(-50%,-50%);
  }
}
@media (max-width:700px) {
  .hero-copy--mock { flex-direction:column; }
  .hero-info-actions { margin:18px 0 0; align-self:flex-end; }
  .features-popover { width:calc(100vw - 28px); max-height:78vh; }
}

/* TACTIX_V1_LEGAL_PAGES_V43 */
.landing-legal-footer{
    position:fixed;
    left:18px;
    bottom:10px;
    z-index:30;
    display:flex;
    align-items:center;
    gap:7px;
    font-size:8px;
    color:rgba(180,195,209,.52);
}
.landing-legal-footer a{color:inherit;text-decoration:none}
.landing-legal-footer a:hover{color:rgba(230,237,244,.85)}
.auth-legal-footer{
    margin-top:10px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:7px;
    font-size:8px;
    color:#71859a;
}
.auth-legal-footer a{color:#8194a7;text-decoration:none}
@media(max-width:680px){
    .landing-legal-footer{
        position:static;
        justify-content:center;
        padding:12px 10px 18px;
    }
}