:root {
  --ivory: #f4ebdd;
  --paper: #fffaf0;
  --paper-strong: #fffdf7;
  --ink: #121813;
  --ink-soft: #455149;
  --emerald: #0b5138;
  --emerald-2: #0e7a4e;
  --emerald-dark: #063526;
  --lime: #c8ff56;
  --coral: #e4553d;
  --gold: #c89b45;
  --line: rgba(11, 81, 56, 0.24);
  --line-dark: rgba(18, 24, 19, 0.22);
  --shadow: 0 24px 70px rgba(17, 52, 38, 0.12);
  --shell: min(1260px, calc(100% - 48px));
  --display: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--lime);
  color: var(--emerald-dark);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.site-shell {
  width: var(--shell);
  margin-inline: auto;
}

.editorial-grid {
  background-color: var(--ivory);
  background-image:
    linear-gradient(rgba(11, 81, 56, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 81, 56, 0.07) 1px, transparent 1px);
  background-size: 78px 78px;
}

.responsibility-strip {
  background: var(--emerald-dark);
  color: var(--paper-strong);
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.strip-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--emerald-dark);
  white-space: nowrap;
}

.brand-number {
  font-family: var(--display);
  font-size: 1.9rem;
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.brand-game {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 2px;
  background: var(--emerald);
  color: var(--paper-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: skew(-8deg);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 34px);
  font-size: 0.86rem;
  font-weight: 750;
}

.desktop-nav a {
  position: relative;
  padding-block: 12px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 2px;
  background: var(--emerald-2);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-action {
  display: flex;
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  cursor: pointer;
  list-style: none;
  border: 1px solid var(--emerald);
  padding: 8px 13px;
  font-weight: 800;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(280px, calc(100vw - 32px));
  display: grid;
  padding: 10px;
  border: 1px solid var(--emerald);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.mobile-nav-panel a {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 22px;
  border: 1.5px solid var(--emerald);
  font-weight: 850;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button span {
  font-size: 1.25rem;
  line-height: 1;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 7px 7px 0 rgba(11, 81, 56, 0.16);
}

.button-primary {
  background: var(--emerald);
  color: var(--paper-strong);
}

.button-primary:hover {
  background: var(--emerald-2);
}

.button-secondary {
  background: transparent;
  color: var(--emerald);
}

.button-secondary:hover {
  background: rgba(200, 255, 86, 0.16);
}

.button-compact {
  min-height: 42px;
  padding: 9px 14px;
  gap: 14px;
  font-size: 0.8rem;
}

.home-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-shell {
  min-height: 770px;
  display: grid;
  grid-template-columns: 53% 47%;
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 92px 70px 78px 0;
  align-self: center;
}

.eyebrow,
.section-label {
  margin: 0 0 22px;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-label::after {
  content: "";
  width: 64px;
  height: 1px;
  background: var(--coral);
}

.section-label span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--coral);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  line-height: 1.04;
}

h1,
h2 {
  text-wrap: balance;
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-family: var(--display);
  font-size: clamp(4.1rem, 6.4vw, 7.2rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.91;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.invite-ticket {
  width: fit-content;
  max-width: 100%;
  margin-top: 28px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 18px;
  padding: 13px 16px;
  border: 1px dashed var(--coral);
  background: rgba(255, 253, 247, 0.76);
  font-family: var(--mono);
}

.invite-ticket span {
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.invite-ticket strong {
  color: var(--emerald-dark);
  font-size: 1rem;
}

.invite-ticket small {
  grid-column: 1 / -1;
  color: var(--ink-soft);
  font-size: 0.64rem;
}

.hero-visual {
  position: relative;
  min-height: 770px;
}

.emerald-panel {
  position: absolute;
  inset: 0 calc((100vw - min(1260px, calc(100vw - 48px))) / -2) 0 -20px;
  background:
    radial-gradient(circle at 78% 22%, rgba(200, 255, 86, 0.2), transparent 28%),
    linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 9% 63%);
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 253, 247, 0.42);
  pointer-events: none;
}

.hero-visual::before {
  inset: 68px 18px 78px 72px;
}

.hero-visual::after {
  width: 110px;
  height: 110px;
  right: 34px;
  top: 50px;
  border-radius: 50%;
}

.hero-phone {
  position: absolute;
  z-index: 3;
  width: min(370px, 70%);
  left: 50%;
  top: 50%;
  transform: translate(-44%, -50%) rotate(2deg);
  padding: 11px;
  border: 2px solid var(--ink);
  border-radius: 31px;
  background: var(--ink);
  box-shadow: 36px 40px 80px rgba(0, 0, 0, 0.32);
  animation: phone-float 5s ease-in-out infinite;
}

.hero-phone::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 84px;
  height: 18px;
  left: 50%;
  top: 13px;
  transform: translateX(-50%);
  border-radius: 20px;
  background: var(--ink);
}

.hero-phone img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
}

.hero-note {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 2px;
  min-width: 140px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 253, 247, 0.7);
  background: rgba(6, 53, 38, 0.84);
  color: var(--paper-strong);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-note span {
  color: var(--lime);
}

.note-one {
  left: 18px;
  top: 190px;
}

.note-two {
  right: 8px;
  bottom: 210px;
}

.hero-stamp {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 72px;
  width: 300px;
  padding: 16px 22px;
  border: 1px solid var(--coral);
  background: var(--ivory);
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.hero-stamp strong {
  display: block;
  margin-top: 4px;
  color: var(--emerald-dark);
  font-size: 0.9rem;
}

@keyframes phone-float {
  0%, 100% { transform: translate(-44%, -50%) rotate(2deg); }
  50% { transform: translate(-44%, calc(-50% - 7px)) rotate(1.4deg); }
}

.route-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.route-card {
  min-height: 148px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border-left: 1px solid var(--line);
  transition: background 180ms ease, color 180ms ease;
}

.route-card:last-child {
  border-right: 1px solid var(--line);
}

.route-card:hover {
  background: var(--emerald);
  color: var(--paper-strong);
}

.route-index {
  align-self: start;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.route-card strong,
.route-card small {
  display: block;
}

.route-card strong {
  line-height: 1.25;
}

.route-card small {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.route-card:hover small,
.route-card:hover .route-index {
  color: var(--lime);
}

.route-card > span:last-child {
  font-size: 1.35rem;
}

.content-section {
  padding: 112px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.content-section:nth-of-type(even) {
  background: var(--ivory);
}

.two-column {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(48px, 8vw, 120px);
}

.intro-grid h2,
.section-heading h2,
.feature-copy h2,
.round-copy h2,
.responsibility-title h2,
.faq-heading h2,
.closing-inner h2 {
  margin-bottom: 26px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.prose-stack {
  font-size: 1.02rem;
}

.prose-stack > p:first-child {
  margin-top: 0;
}

.prose-stack p {
  color: var(--ink-soft);
}

.fact-board {
  margin-top: 36px;
  border-top: 1px solid var(--line-dark);
}

.fact-board > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dark);
}

.fact-board span {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fact-board strong {
  line-height: 1.45;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(48px, 7vw, 100px);
}

.feature-layout.image-right {
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
}

.feature-copy > p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.screenshot-frame {
  position: relative;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--emerald);
  background: var(--paper-strong);
  box-shadow: 16px 18px 0 rgba(11, 81, 56, 0.1);
}

.screenshot-topline {
  display: flex;
  justify-content: space-between;
  padding: 0 2px 12px;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.screenshot-frame img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: top;
  background: #eef3ef;
}

.screenshot-frame figcaption {
  padding-top: 13px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.5;
}

.number-list {
  margin: 34px 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.number-list li {
  counter-increment: steps;
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(0, 1.3fr);
  gap: 20px;
  padding: 18px 0 18px 52px;
  border-top: 1px solid var(--line-dark);
}

.number-list li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.number-list li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 18px;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 800;
}

.number-list strong {
  line-height: 1.45;
}

.number-list span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--emerald);
  color: var(--emerald);
  font-weight: 850;
}

.double-screenshot {
  position: relative;
  min-height: 770px;
}

.double-screenshot .screenshot-frame {
  position: absolute;
  width: 72%;
}

.double-screenshot .screenshot-frame:first-child {
  left: 0;
  top: 0;
  z-index: 2;
}

.double-screenshot .screenshot-frame:last-child {
  right: 0;
  bottom: 0;
  z-index: 3;
}

.double-screenshot .screenshot-frame img {
  max-height: 540px;
}

.compare-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.compare-board article {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.78);
}

.compare-board span,
.security-grid article > span {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.compare-board h3,
.payment-card h3,
.round-steps h3,
.security-grid h3,
.field-cards h3 {
  margin: 12px 0 10px;
  font-size: 1.15rem;
}

.compare-board p,
.round-steps p,
.security-grid p,
.field-cards p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.round-section {
  background-color: var(--emerald-dark) !important;
  background-image:
    linear-gradient(rgba(255, 253, 247, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 247, 0.07) 1px, transparent 1px) !important;
  color: var(--paper-strong);
}

.round-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.7fr);
  gap: clamp(56px, 8vw, 110px);
  align-items: start;
}

.round-copy h2,
.round-copy h3,
.round-copy p {
  color: var(--paper-strong);
}

.round-copy > p {
  color: rgba(255, 253, 247, 0.76);
}

.round-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 253, 247, 0.28);
  border-left: 1px solid rgba(255, 253, 247, 0.28);
}

.round-steps article {
  padding: 22px;
  border-right: 1px solid rgba(255, 253, 247, 0.28);
  border-bottom: 1px solid rgba(255, 253, 247, 0.28);
}

.round-steps article > span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.round-steps p {
  color: rgba(255, 253, 247, 0.68);
}

.risk-note {
  margin-top: 34px;
  padding: 22px 24px;
  border-left: 5px solid var(--coral);
  background: rgba(228, 85, 61, 0.12);
}

.risk-note strong {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.risk-note p {
  margin: 8px 0 0;
}

.round-screen {
  transform: rotate(1.5deg);
  box-shadow: 28px 32px 0 rgba(0, 0, 0, 0.22);
}

.round-screen img {
  max-height: 800px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: end;
}

.section-heading > p,
.split-heading > p {
  color: var(--ink-soft);
}

.payment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.payment-card {
  padding: 30px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--paper-strong);
}

.payment-card:nth-child(2) {
  background: rgba(200, 255, 86, 0.14);
}

.payment-card:nth-child(3) {
  background: rgba(11, 81, 56, 0.07);
}

.card-number {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.payment-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.payment-status-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.payment-status-board article {
  padding: 20px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.payment-status-board span {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.payment-status-board p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.payment-explainer,
.security-explainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}

.payment-explainer p,
.security-explainer p {
  margin: 0;
}

.check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 11px 0 11px 27px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--emerald-2);
  font-weight: 900;
}

.payment-media,
.security-media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.payment-media .screenshot-frame:nth-child(2),
.security-media .screenshot-frame:nth-child(2) {
  transform: translateY(32px);
}

.payment-media .screenshot-frame img,
.security-media .screenshot-frame img {
  max-height: 560px;
}

.wide-link {
  margin-top: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border: 1px solid var(--emerald);
  background: var(--emerald);
  color: var(--paper-strong);
  font-weight: 850;
}

.wide-link:hover {
  background: var(--emerald-2);
}

.compact-feature {
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr);
}

.compact-feature .screenshot-frame img {
  max-height: 610px;
}

.code-card {
  width: fit-content;
  max-width: 100%;
  display: grid;
  gap: 4px;
  margin-top: 30px;
  padding: 18px 22px;
  border: 1px dashed var(--coral);
  background: var(--paper-strong);
  font-family: var(--mono);
}

.code-card span {
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.code-card strong {
  color: var(--emerald-dark);
  font-size: 1.55rem;
  letter-spacing: 0.12em;
}

.code-card small {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.security-grid article {
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.responsible-section {
  background: var(--coral) !important;
  color: var(--paper-strong);
}

.responsibility-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
}

.responsibility-title {
  grid-row: span 2;
}

.responsibility-title h2,
.responsible-section p,
.responsible-section strong {
  color: var(--paper-strong);
}

.responsible-section .section-label {
  color: var(--paper-strong);
}

.responsible-section .section-label span,
.responsible-section .section-label::after {
  border-color: var(--paper-strong);
  background-color: var(--paper-strong);
}

.limit-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 253, 247, 0.5);
  border-left: 1px solid rgba(255, 253, 247, 0.5);
}

.limit-steps article {
  padding: 24px;
  border-right: 1px solid rgba(255, 253, 247, 0.5);
  border-bottom: 1px solid rgba(255, 253, 247, 0.5);
}

.limit-steps p {
  margin-bottom: 0;
  color: rgba(255, 253, 247, 0.82);
  font-size: 0.9rem;
}

.responsibility-copy p {
  color: rgba(255, 253, 247, 0.86);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 80px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading > p:last-child {
  color: var(--ink-soft);
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  cursor: pointer;
  position: relative;
  list-style: none;
  padding: 23px 54px 23px 0;
  font-weight: 850;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 16px;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 1.5rem;
}

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

.faq-list details p {
  max-width: 720px;
  margin: -4px 0 24px;
  color: var(--ink-soft);
}

.closing-section {
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}

.closing-inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 90px;
  align-items: center;
}

.closing-index {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.closing-inner h2 {
  margin-top: 20px;
  margin-bottom: 0;
}

.closing-inner p {
  color: var(--ink-soft);
}

.support-hero {
  border-bottom: 1px solid var(--line);
}

.support-hero-inner {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 90px;
  align-items: center;
  padding-block: 80px;
}

.support-hero h1,
.legal-hero h1 {
  margin-bottom: 30px;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 7.3rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.91;
  text-transform: uppercase;
}

.support-hero-image {
  position: relative;
  justify-self: center;
  width: min(340px, 100%);
  padding: 12px;
  border: 2px solid var(--ink);
  border-radius: 28px;
  background: var(--ink);
  box-shadow: 28px 32px 0 rgba(11, 81, 56, 0.18);
  transform: rotate(1.5deg);
}

.support-hero-image img {
  max-height: 540px;
  width: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 18px;
}

.support-hero-image > span {
  position: absolute;
  right: -28px;
  bottom: 34px;
  padding: 10px 14px;
  border: 1px solid var(--coral);
  background: var(--ivory);
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 860px);
  justify-content: space-between;
  gap: 80px;
  align-items: start;
}

.article-rail {
  position: sticky;
  top: 130px;
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.article-rail span {
  padding: 14px 0;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.article-rail a {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.article-rail a:hover {
  color: var(--emerald-2);
}

.long-article > section {
  padding: 0 0 88px;
  margin-bottom: 88px;
  border-bottom: 1px solid var(--line-dark);
}

.long-article > section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.long-article h2,
.legal-article h2 {
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.long-article > section > p,
.legal-article > p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.callout-grid,
.field-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 38px 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.callout-grid article,
.field-cards article {
  padding: 22px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.callout-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.large-list li {
  grid-template-columns: minmax(210px, 0.75fr) minmax(0, 1.25fr);
  padding-block: 22px;
}

.article-media-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 36px 0;
}

.article-media-pair .screenshot-frame img {
  max-height: 560px;
}

.problem-table {
  margin: 36px 0;
  border-top: 1px solid var(--line-dark);
}

.problem-table > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.problem-table span {
  color: var(--ink-soft);
}

.article-cta {
  margin-top: 38px;
}

.field-cards article > span {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.wide-code {
  width: 100%;
  margin-bottom: 34px;
}

.legal-hero {
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
}

.legal-hero p:last-child {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.legal-article {
  max-width: 860px;
}

.legal-article h2 {
  margin-top: 70px;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
}

.legal-article h2:first-child {
  margin-top: 0;
}

.site-footer {
  padding: 80px 0 24px;
  background: var(--emerald-dark);
  color: var(--paper-strong);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.72fr 0.72fr 1.1fr;
  gap: 56px;
}

.site-footer .brand-mark {
  color: var(--paper-strong);
}

.site-footer .brand-game {
  background: var(--lime);
  color: var(--emerald-dark);
}

.footer-grid > div:first-child > p,
.footer-risk p {
  max-width: 390px;
  color: rgba(255, 253, 247, 0.72);
  font-size: 0.88rem;
}

.footer-grid h2 {
  margin-bottom: 16px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div:nth-child(2),
.footer-grid > div:nth-child(3) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-grid a {
  color: rgba(255, 253, 247, 0.82);
  font-size: 0.86rem;
}

.footer-grid a:hover {
  color: var(--lime);
}

.age-stamp {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--lime);
  color: var(--lime);
  font-family: var(--mono);
  font-weight: 900;
  transform: rotate(-4deg);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 247, 0.2);
  color: rgba(255, 253, 247, 0.56);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.not-found > div {
  max-width: 780px;
}

.not-found > div > span {
  color: var(--coral);
  font-family: var(--mono);
  font-weight: 800;
}

.not-found h1 {
  margin: 24px 0;
  font-family: var(--display);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .desktop-nav,
  .header-action {
    display: none;
  }

  .mobile-nav {
    display: block;
    justify-self: end;
  }

  .hero-shell {
    min-height: 690px;
    grid-template-columns: 55% 45%;
  }

  .hero-copy {
    padding-right: 34px;
  }

  .hero-phone {
    width: min(330px, 78%);
  }

  .note-one {
    left: 0;
  }

  .route-grid {
    grid-template-columns: 1fr 1fr;
  }

  .route-card:nth-child(3),
  .route-card:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .feature-layout,
  .feature-layout.image-right,
  .compact-feature {
    gap: 48px;
  }

  .security-grid {
    grid-template-columns: 1fr 1fr;
  }

  .payment-status-board {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
  }

  .footer-risk {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  :root {
    --shell: min(100% - 32px, 760px);
  }

  .strip-inner {
    min-height: 42px;
    flex-wrap: wrap;
    gap: 4px 9px;
    padding-block: 7px;
    text-align: center;
    font-size: 0.64rem;
  }

  .hero-shell,
  .support-hero-inner,
  .two-column,
  .feature-layout,
  .feature-layout.image-right,
  .round-layout,
  .split-heading,
  .responsibility-layout,
  .faq-layout,
  .closing-inner,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 72px 0 48px;
  }

  .hero-copy h1 {
    max-width: 690px;
    font-size: clamp(4.2rem, 14vw, 6.6rem);
  }

  .hero-visual {
    min-height: 680px;
    margin-inline: -16px;
  }

  .emerald-panel {
    inset: 0;
    clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 100%);
  }

  .hero-phone {
    width: min(350px, 68%);
    transform: translate(-50%, -48%) rotate(2deg);
  }

  @keyframes phone-float {
    0%, 100% { transform: translate(-50%, -48%) rotate(2deg); }
    50% { transform: translate(-50%, calc(-48% - 7px)) rotate(1.4deg); }
  }

  .content-section {
    padding: 86px 0;
  }

  .feature-layout,
  .feature-layout.image-right,
  .compact-feature {
    grid-template-columns: 1fr;
  }

  .feature-layout.image-right .feature-copy {
    order: 1;
  }

  .feature-layout.image-right .double-screenshot {
    order: 2;
  }

  .screenshot-frame {
    max-width: 520px;
    margin-inline: auto;
  }

  .double-screenshot {
    min-height: 720px;
  }

  .payment-cards,
  .payment-media,
  .security-media {
    grid-template-columns: 1fr;
  }

  .payment-explainer,
  .security-explainer {
    grid-template-columns: 1fr;
  }

  .payment-media .screenshot-frame:nth-child(2),
  .security-media .screenshot-frame:nth-child(2) {
    transform: none;
  }

  .responsibility-title {
    grid-row: auto;
  }

  .faq-heading,
  .article-rail {
    position: static;
  }

  .article-rail {
    display: none;
  }

  .support-hero-inner {
    gap: 48px;
  }

  .support-hero-image {
    justify-self: start;
  }

  .article-layout {
    display: block;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
  }

  body {
    font-size: 15px;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-number {
    font-size: 1.6rem;
  }

  .hero-copy h1,
  .support-hero h1,
  .legal-hero h1 {
    font-size: clamp(3.6rem, 17vw, 5.2rem);
  }

  .hero-actions,
  .inline-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .invite-ticket {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .invite-ticket small {
    grid-column: auto;
  }

  .hero-visual {
    min-height: 590px;
  }

  .hero-phone {
    width: min(310px, 76%);
  }

  .hero-note {
    min-width: 120px;
    font-size: 0.62rem;
  }

  .note-one {
    top: 130px;
    left: 10px;
  }

  .note-two {
    right: 10px;
    bottom: 150px;
  }

  .hero-stamp {
    right: 12px;
    bottom: 35px;
    width: calc(100% - 24px);
  }

  .route-grid,
  .compare-board,
  .round-steps,
  .limit-steps,
  .security-grid,
  .callout-grid,
  .field-cards,
  .article-media-pair,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .payment-status-board {
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: 112px;
    border-right: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .route-card:first-child {
    border-top: 0;
  }

  .intro-grid h2,
  .section-heading h2,
  .feature-copy h2,
  .round-copy h2,
  .responsibility-title h2,
  .faq-heading h2,
  .closing-inner h2,
  .long-article h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .fact-board > div,
  .problem-table > div,
  .number-list li,
  .large-list li {
    grid-template-columns: 1fr;
  }

  .number-list li {
    padding-left: 44px;
  }

  .double-screenshot {
    min-height: 650px;
  }

  .double-screenshot .screenshot-frame {
    width: 78%;
  }

  .round-screen {
    transform: none;
  }

  .payment-card,
  .security-grid article {
    padding: 24px;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .support-hero-inner {
    min-height: auto;
    padding-block: 68px;
  }

  .support-hero-image {
    justify-self: center;
    width: min(300px, 82%);
  }

  .support-hero-image > span {
    right: -14px;
  }

  .long-article > section {
    padding-bottom: 66px;
    margin-bottom: 66px;
  }

  .legal-hero {
    padding: 82px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Breadcrumb and page-level FAQ additions — final audit 2026-07-21 */
.breadcrumb-band {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.breadcrumb-nav ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.breadcrumb-nav li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--coral);
}

.breadcrumb-nav a {
  color: var(--emerald-dark);
  font-weight: 800;
}

.breadcrumb-nav [aria-current="page"] {
  color: var(--ink-soft);
}

.page-faq-intro {
  max-width: 620px;
  color: var(--ink-soft);
}

@media (max-width: 720px) {
  .breadcrumb-band { padding: 11px 0; }
  .breadcrumb-nav ol { font-size: 0.66rem; }
}


/* =========================================================
   PREMIUM BLACK · GREEN · GOLD REDESIGN — 21 JULY 2026
   Approved direction: no tricolor bands, no orange theme.
   ========================================================= */
:root {
  --ivory: #030604;
  --paper: #071009;
  --paper-strong: #0a100c;
  --ink: #f5f7f4;
  --ink-soft: #a7b0aa;
  --emerald: #128a32;
  --emerald-2: #22b94b;
  --emerald-dark: #020403;
  --lime: #72d438;
  --coral: #f4bf1f;
  --gold: #f4bf1f;
  --gold-soft: #ffe17b;
  --line: rgba(84, 209, 88, 0.18);
  --line-dark: rgba(244, 191, 31, 0.22);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
  --shell: min(1320px, calc(100% - 56px));
  --display: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
}

html {
  color-scheme: dark;
  background: #020403;
}

body.premium-theme {
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 84% 6%, rgba(20, 135, 49, 0.16), transparent 28rem),
    linear-gradient(180deg, #020403 0%, #050a06 42%, #020403 100%);
  color: var(--ink);
}

body.premium-theme::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(77, 213, 83, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 213, 83, 0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

body::selection {
  background: var(--gold);
  color: #030604;
}

:focus-visible {
  outline-color: var(--gold);
}

.editorial-grid {
  background-color: #040805;
  background-image:
    linear-gradient(rgba(72, 196, 78, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 196, 78, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 75% 25%, rgba(18, 153, 55, 0.13), transparent 34%);
  background-size: 72px 72px, 72px 72px, auto;
}

.responsibility-strip {
  border-bottom: 1px solid rgba(244, 191, 31, 0.16);
  background: #020302;
  color: rgba(255, 255, 255, 0.68);
}

.strip-inner span:first-child {
  color: var(--gold);
  font-weight: 900;
}

.site-header {
  border-bottom: 1px solid rgba(244, 191, 31, 0.17);
  background: rgba(2, 4, 3, 0.92);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  color: var(--ink);
  line-height: 1;
}

.brand-mark::after {
  content: "";
  width: 100%;
  height: 2px;
  margin-top: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 18%, var(--gold) 82%, transparent);
  box-shadow: 0 0 12px rgba(244, 191, 31, 0.45);
}

.brand-number {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.brand-bg {
  color: var(--gold);
}

.brand-digits {
  color: #f8faf8;
}

.brand-game {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--gold);
  font-size: 0.69rem;
  letter-spacing: 0.16em;
  transform: none;
}

.desktop-nav {
  color: rgba(255, 255, 255, 0.82);
}

.desktop-nav a::after {
  bottom: 5px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--lime));
  box-shadow: 0 0 12px rgba(244, 191, 31, 0.4);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: #fff;
}

.desktop-nav a[aria-current="page"]::after {
  right: 0;
}

.mobile-nav summary {
  border-color: rgba(244, 191, 31, 0.62);
  border-radius: 10px;
  color: var(--gold);
  background: rgba(244, 191, 31, 0.04);
}

.mobile-nav-panel {
  border-color: rgba(244, 191, 31, 0.34);
  border-radius: 16px;
  background: rgba(5, 11, 7, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.68);
}

.mobile-nav-panel a {
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.button {
  min-height: 54px;
  border-radius: 9px;
  border-color: rgba(76, 207, 81, 0.72);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button:hover {
  box-shadow: 0 13px 38px rgba(0, 0, 0, 0.3), 0 0 24px rgba(54, 209, 78, 0.12);
}

.button-primary {
  border-color: #1aaa43;
  background: linear-gradient(135deg, #0c7d2a, #22a746);
  color: #fff;
}

.button-primary:hover {
  background: linear-gradient(135deg, #159b38, #2cc555);
}

.button-secondary {
  border-color: rgba(244, 191, 31, 0.66);
  background: rgba(244, 191, 31, 0.035);
  color: var(--gold-soft);
}

.button-secondary:hover {
  background: rgba(244, 191, 31, 0.1);
}

.header-action .button-secondary {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(244, 191, 31, 0.035);
}

.header-action .button-secondary:hover {
  color: #050704;
  background: var(--gold);
}

.breadcrumb-band {
  border-color: rgba(244, 191, 31, 0.12);
  background: #050806;
}

.breadcrumb-nav ol,
.breadcrumb-nav [aria-current="page"] {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-nav a {
  color: var(--gold-soft);
}

.breadcrumb-nav li + li::before {
  color: var(--lime);
}

/* APPROVED HOMEPAGE HERO */
.home-hero.premium-hero {
  isolation: isolate;
  border-color: rgba(70, 211, 79, 0.18);
  background:
    radial-gradient(circle at 72% 45%, rgba(17, 171, 54, 0.25), transparent 22rem),
    radial-gradient(circle at 94% 44%, rgba(45, 215, 75, 0.12), transparent 29rem),
    linear-gradient(115deg, #010302 0%, #040805 48%, #031008 100%);
}

.home-hero.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 48%, rgba(42, 190, 67, 0.1) 48.4%, transparent 49%),
    repeating-radial-gradient(circle at 97% 30%, rgba(78, 222, 86, 0.1) 0 2px, transparent 2px 17px);
  opacity: 0.7;
}

.hero-shell {
  min-height: 735px;
  grid-template-columns: minmax(0, 1.02fr) minmax(470px, 0.98fr);
  align-items: center;
}

.hero-copy {
  padding: 76px 46px 76px 0;
}

.eyebrow,
.section-label {
  color: var(--gold);
}

.eyebrow {
  width: fit-content;
  margin-bottom: 24px;
  padding: 8px 13px;
  border: 1px solid rgba(244, 191, 31, 0.42);
  border-radius: 999px;
  background: rgba(244, 191, 31, 0.045);
  box-shadow: inset 0 0 16px rgba(244, 191, 31, 0.035);
}

.section-label::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-label span {
  border-color: rgba(244, 191, 31, 0.62);
  color: var(--gold);
}

h1,
h2,
h3 {
  color: var(--ink);
}

.hero-copy h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(3.75rem, 5.55vw, 6.35rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-transform: none;
}

.hero-brand-line,
.hero-topic-line {
  display: block;
}

.hero-brand-line {
  margin-bottom: 12px;
  font-size: 1.02em;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.hero-bg {
  color: var(--gold);
  text-shadow: 0 0 34px rgba(244, 191, 31, 0.16);
}

.hero-digits {
  color: #f5f7f5;
}

.hero-game {
  color: #37b62f;
  text-shadow: 0 0 34px rgba(44, 202, 67, 0.24);
}

.hero-topic-line {
  color: #f5f7f5;
  font-size: 0.71em;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.73);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.62;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  max-width: 650px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.87rem;
  font-weight: 720;
}

.hero-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 900;
  text-shadow: 0 0 15px rgba(84, 224, 78, 0.54);
}

.home-hero .hero-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 690px;
  margin-top: 29px;
}

.home-hero .button {
  min-height: 70px;
  padding: 13px 16px;
  gap: 12px;
}

.cta-copy {
  display: grid;
  gap: 4px;
  text-align: left;
}

.cta-copy strong {
  font-size: 0.91rem;
  letter-spacing: 0.015em;
}

.cta-copy small {
  color: currentColor;
  font-size: 0.66rem;
  font-weight: 560;
  opacity: 0.78;
}

.cta-arrow {
  font-size: 1.65rem !important;
}

.hero-cta-gold {
  border-color: #ffd446;
  background: linear-gradient(135deg, #f8c522, #d99b00);
  color: #111407;
  box-shadow: 0 10px 30px rgba(244, 191, 31, 0.17), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-cta-gold:hover {
  background: linear-gradient(135deg, #ffd745, #e5aa0c);
}

.hero-cta-green {
  border-color: #36c75a;
  background: linear-gradient(135deg, #12882f, #23a94a);
  color: #fff;
}

.hero-cta-outline {
  border-color: rgba(71, 211, 78, 0.74);
  background: rgba(4, 13, 7, 0.54);
  color: #f4f8f4;
}

.hero-cta-outline:hover {
  background: rgba(29, 144, 49, 0.18);
}

.premium-code-chip {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: 20px;
  padding: 11px 14px;
  border: 1px solid rgba(244, 191, 31, 0.28);
  border-radius: 10px;
  background: rgba(7, 13, 8, 0.72);
  box-shadow: inset 0 0 24px rgba(244, 191, 31, 0.025);
}

.code-chip-icon {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.code-chip-copy {
  display: grid;
  grid-template-columns: auto auto;
  gap: 1px 14px;
  align-items: baseline;
}

.code-chip-copy small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.61rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.code-chip-copy strong {
  color: var(--gold-soft);
  font-size: 0.94rem;
  letter-spacing: 0.09em;
}

.code-chip-copy > span {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.64rem;
}

.hero-visual {
  min-height: 680px;
  overflow: visible;
}

.emerald-panel {
  inset: 53px -13vw 54px 20px;
  clip-path: polygon(31% 0, 87% 9%, 100% 33%, 96% 77%, 72% 96%, 29% 88%, 6% 62%, 8% 25%);
  border: 1px solid rgba(77, 222, 87, 0.35);
  background:
    radial-gradient(circle at 62% 38%, rgba(35, 190, 60, 0.36), transparent 22%),
    linear-gradient(145deg, rgba(10, 63, 24, 0.84), rgba(2, 9, 5, 0.55));
  filter: drop-shadow(0 0 44px rgba(31, 170, 56, 0.22));
}

.emerald-panel::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(244, 191, 31, 0.42);
  clip-path: inherit;
  opacity: 0.62;
}

.hero-visual::before {
  inset: 100px 9px 100px 52px;
  border-color: rgba(49, 197, 66, 0.26);
  border-radius: 50%;
  transform: rotate(-11deg);
}

.hero-visual::after {
  width: 420px;
  height: 96px;
  right: 38px;
  top: auto;
  bottom: 70px;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(39, 205, 63, 0.28), rgba(5, 11, 7, 0.75) 48%, transparent 72%);
  filter: blur(2px);
}

.hero-phone {
  z-index: 6;
  width: min(324px, 60%);
  left: 54%;
  top: 46%;
  padding: 9px;
  border: 1px solid rgba(244, 191, 31, 0.5);
  border-radius: 37px;
  background: linear-gradient(145deg, #202420, #020302 38%, #151915);
  box-shadow:
    0 38px 70px rgba(0, 0, 0, 0.62),
    0 0 42px rgba(28, 184, 55, 0.15),
    inset 0 0 0 2px rgba(255, 255, 255, 0.055);
}

.hero-phone::before {
  width: 88px;
  height: 18px;
  top: 12px;
  background: #020302;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.hero-phone img {
  max-height: 560px;
  border-radius: 27px;
  filter: saturate(0.93) contrast(1.03) brightness(0.89);
}

.hero-pedestal {
  position: absolute;
  z-index: 3;
  width: 500px;
  height: 118px;
  right: 7px;
  bottom: 41px;
  border: 1px solid rgba(244, 191, 31, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(ellipse, rgba(72, 218, 77, 0.28), transparent 42%),
    linear-gradient(180deg, #151b15, #030504 68%);
  box-shadow:
    0 28px 48px rgba(0, 0, 0, 0.58),
    inset 0 4px 0 rgba(70, 226, 81, 0.14),
    inset 0 -11px 19px rgba(0, 0, 0, 0.7),
    0 0 28px rgba(44, 213, 67, 0.16);
}

.hero-shield {
  position: absolute;
  z-index: 2;
  width: 310px;
  height: 360px;
  right: 62px;
  top: 112px;
  display: grid;
  place-items: center;
  color: rgba(24, 148, 43, 0.24);
  filter: drop-shadow(0 0 24px rgba(30, 203, 55, 0.2));
}

.hero-shield-svg {
  width: 100%;
  height: 100%;
  fill: rgba(4, 19, 9, 0.54);
  stroke: rgba(61, 216, 72, 0.48);
  stroke-width: 0.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-trophy,
.hero-dice,
.hero-coin {
  position: absolute;
  z-index: 7;
  fill: rgba(244, 191, 31, 0.1);
  stroke: var(--gold);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 12px 15px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 10px rgba(244, 191, 31, 0.18));
}

.hero-trophy {
  width: 150px;
  height: 150px;
  right: -4px;
  bottom: 107px;
  transform: rotate(2deg);
}

.hero-dice {
  width: 76px;
  height: 76px;
  fill: rgba(8, 12, 8, 0.96);
}

.hero-dice-one {
  left: 8%;
  bottom: 116px;
  transform: rotate(-18deg);
}

.hero-dice-two {
  right: 18%;
  bottom: 60px;
  transform: rotate(15deg) scale(0.76);
}

.hero-coin {
  width: 54px;
  height: 54px;
  fill: rgba(244, 191, 31, 0.16);
}

.hero-coin-one { left: 16%; top: 180px; transform: rotate(-18deg); }
.hero-coin-two { right: 4%; top: 180px; transform: rotate(22deg) scale(0.72); }
.hero-coin-three { left: 18%; bottom: 67px; transform: rotate(10deg) scale(0.82); }

.hero-safety-badge {
  position: absolute;
  z-index: 9;
  right: 24px;
  top: 92px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(244, 191, 31, 0.4);
  border-radius: 999px;
  background: rgba(3, 8, 4, 0.78);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-badge-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-safety-badge span {
  display: grid;
}

.hero-safety-badge small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
  font-weight: 600;
}

@keyframes phone-float {
  0%, 100% { transform: translate(-44%, -50%) rotate(2.4deg); }
  50% { transform: translate(-44%, calc(-50% - 8px)) rotate(1.4deg); }
}

/* FEATURE STRIP */
.route-strip {
  padding: 34px 0 42px;
  border-color: rgba(244, 191, 31, 0.14);
  background: #040705;
}

.route-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.route-card,
.route-card:last-child {
  min-height: 164px;
  grid-template-columns: 1fr auto;
  align-content: start;
  gap: 12px;
  padding: 22px 18px;
  border: 1px solid rgba(84, 215, 89, 0.2);
  border-radius: 13px;
  background:
    linear-gradient(145deg, rgba(17, 35, 21, 0.8), rgba(5, 10, 6, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025), 0 16px 30px rgba(0, 0, 0, 0.18);
}

.route-card::before {
  content: "";
  position: absolute;
}

.route-card:hover {
  border-color: rgba(244, 191, 31, 0.58);
  background: linear-gradient(145deg, rgba(18, 56, 26, 0.94), rgba(5, 13, 7, 0.98));
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.34), 0 0 25px rgba(45, 197, 65, 0.08);
}

.route-icon {
  grid-column: 1;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(244, 191, 31, 0.34);
  border-radius: 12px;
  background: rgba(244, 191, 31, 0.05);
  color: var(--lime);
}

.route-svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-copy {
  grid-column: 1 / -1;
}

.route-card strong {
  color: #f5f7f5;
  font-size: 0.96rem;
}

.route-card small,
.route-card:hover small {
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.72rem;
}

.route-index,
.route-card:hover .route-index {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  color: rgba(244, 191, 31, 0.62);
}

/* CONTENT SYSTEM */
.content-section {
  padding: 104px 0;
  border-color: rgba(244, 191, 31, 0.12);
  background:
    radial-gradient(circle at 92% 8%, rgba(17, 123, 43, 0.09), transparent 24rem),
    #070c08;
}

.content-section:nth-of-type(even) {
  background:
    radial-gradient(circle at 8% 28%, rgba(28, 138, 48, 0.08), transparent 25rem),
    #030604;
}

.intro-grid h2,
.section-heading h2,
.feature-copy h2,
.round-copy h2,
.responsibility-title h2,
.faq-heading h2,
.closing-inner h2,
.long-article h2,
.legal-article h2 {
  color: #f5f7f5;
  letter-spacing: -0.045em;
}

.intro-grid h2::first-line,
.section-heading h2::first-line {
  color: #fff;
}

.hero-lead,
.prose-stack p,
.feature-copy > p,
.section-heading > p,
.split-heading > p,
.round-copy > p,
.long-article > section > p,
.legal-article > p,
.legal-hero p:last-child,
.faq-heading > p:last-child,
.closing-inner p,
.page-faq-intro {
  color: var(--ink-soft);
}

.fact-board,
.number-list,
.problem-table,
.faq-list {
  border-color: rgba(244, 191, 31, 0.22);
}

.fact-board > div,
.number-list li,
.problem-table > div,
.faq-list details {
  border-color: rgba(255, 255, 255, 0.09);
}

.fact-board span,
.number-list li::before,
.card-number,
.callout-grid article > span,
.field-cards article > span,
.security-grid article > span,
.screenshot-topline,
.closing-index {
  color: var(--gold);
}

.fact-board strong,
.number-list strong,
.problem-table strong,
.field-cards h3,
.payment-card h3,
.compare-board h3,
.security-grid h3,
.round-steps h3 {
  color: #f3f6f3;
}

.number-list span,
.problem-table span,
.field-cards p,
.payment-card p,
.compare-board p,
.security-grid p,
.round-steps p,
.payment-status-board p,
.callout-grid p {
  color: var(--ink-soft);
}

.screenshot-frame,
.support-hero-image {
  border-color: rgba(244, 191, 31, 0.33);
  border-radius: 18px;
  background: linear-gradient(145deg, #121913, #050806);
  box-shadow: 18px 22px 52px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(40, 178, 58, 0.08);
}

.screenshot-frame img,
.support-hero-image img {
  border-radius: 11px;
}

.compare-board,
.payment-cards,
.payment-status-board,
.security-grid,
.callout-grid,
.field-cards,
.round-steps,
.limit-steps {
  gap: 14px;
  border: 0;
}

.compare-board article,
.payment-card,
.payment-card:nth-child(2),
.payment-card:nth-child(3),
.payment-status-board article,
.security-grid article,
.callout-grid article,
.field-cards article,
.round-steps article,
.limit-steps article {
  border: 1px solid rgba(71, 207, 79, 0.17);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(14, 28, 17, 0.88), rgba(5, 9, 6, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.compare-board article:hover,
.payment-card:hover,
.security-grid article:hover,
.callout-grid article:hover,
.field-cards article:hover {
  border-color: rgba(244, 191, 31, 0.38);
}

.text-link {
  border-color: rgba(244, 191, 31, 0.52);
  color: var(--gold-soft);
}

.check-list li {
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--ink-soft);
}

.check-list li::before {
  color: var(--lime);
}

.wide-link {
  border-color: rgba(45, 194, 67, 0.7);
  border-radius: 12px;
  background: linear-gradient(135deg, #0e7628, #1ca942);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

.wide-link:hover {
  background: linear-gradient(135deg, #149535, #2ac451);
}

.code-card {
  border-color: rgba(244, 191, 31, 0.46);
  border-radius: 13px;
  background: rgba(9, 16, 10, 0.82);
}

.code-card strong {
  color: var(--gold-soft);
}

.round-section {
  background-color: #020403 !important;
  background-image:
    radial-gradient(circle at 75% 20%, rgba(31, 177, 53, 0.17), transparent 28rem),
    linear-gradient(rgba(54, 190, 65, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54, 190, 65, 0.04) 1px, transparent 1px) !important;
}

.round-steps article {
  border-color: rgba(82, 214, 87, 0.19);
}

.risk-note {
  border-color: var(--gold);
  border-radius: 0 12px 12px 0;
  background: rgba(244, 191, 31, 0.07);
}

.risk-note strong {
  color: var(--gold);
}

.responsible-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(26, 179, 52, 0.21), transparent 24rem),
    linear-gradient(135deg, #061108, #020403) !important;
  color: var(--ink);
}

.responsible-section .section-label,
.responsibility-title h2,
.responsible-section p,
.responsible-section strong {
  color: inherit;
}

.responsible-section .section-label {
  color: var(--gold);
}

.responsible-section .section-label span {
  border-color: rgba(244, 191, 31, 0.56);
  background: transparent;
}

.responsible-section .section-label::after {
  border: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.limit-steps article {
  border-color: rgba(244, 191, 31, 0.16);
}

.faq-heading {
  padding: 28px;
  border: 1px solid rgba(244, 191, 31, 0.18);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(13, 28, 16, 0.86), rgba(4, 8, 5, 0.9));
}

.faq-list summary {
  color: #f4f7f4;
}

.faq-list summary::after {
  color: var(--gold);
}

.faq-list details p {
  color: var(--ink-soft);
}

.closing-section {
  border-color: rgba(244, 191, 31, 0.14);
  background:
    radial-gradient(circle at 80% 40%, rgba(39, 188, 57, 0.15), transparent 25rem),
    linear-gradient(135deg, #061008, #020403);
}

/* SUPPORT + LEGAL PAGES */
.support-hero,
.legal-hero {
  border-color: rgba(244, 191, 31, 0.15);
  background:
    radial-gradient(circle at 82% 30%, rgba(28, 177, 50, 0.17), transparent 24rem),
    linear-gradient(135deg, #020403, #061009);
}

.support-hero h1,
.legal-hero h1 {
  color: #f7f9f7;
  text-shadow: 0 0 40px rgba(33, 185, 51, 0.08);
}

.support-hero-image {
  box-shadow: 28px 32px 60px rgba(0, 0, 0, 0.48), 0 0 32px rgba(36, 199, 57, 0.1);
}

.support-hero-image > span {
  border-color: rgba(244, 191, 31, 0.48);
  border-radius: 9px;
  background: #071009;
  color: var(--gold-soft);
}

.article-rail {
  border-color: rgba(244, 191, 31, 0.22);
}

.article-rail span {
  color: var(--gold);
}

.article-rail a {
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.58);
}

.article-rail a:hover {
  color: var(--lime);
}

.long-article > section {
  border-color: rgba(244, 191, 31, 0.14);
}

.legal-section {
  background: #050806;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid rgba(244, 191, 31, 0.16);
  background:
    radial-gradient(circle at 10% 10%, rgba(20, 137, 43, 0.16), transparent 24rem),
    #010302;
}

.site-footer .brand-game {
  background: transparent;
  color: var(--gold);
}

.footer-grid h2 {
  color: var(--gold);
}

.footer-grid a:hover {
  color: var(--lime);
}

.age-stamp {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  border-color: rgba(244, 191, 31, 0.16);
}

.not-found {
  background:
    radial-gradient(circle at 70% 30%, rgba(32, 187, 53, 0.16), transparent 24rem),
    #020403;
}

.not-found > div > span {
  color: var(--gold);
}

/* RESPONSIVE PREMIUM PASS */
@media (max-width: 1180px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(410px, 0.88fr);
  }

  .route-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 880px) {
  :root {
    --shell: min(100% - 34px, 760px);
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 70px 0 30px;
  }

  .hero-copy h1 {
    max-width: 720px;
    font-size: clamp(3.9rem, 12.8vw, 6.1rem);
  }

  .hero-visual {
    min-height: 650px;
    margin-inline: 0;
  }

  .emerald-panel {
    inset: 30px -30px 32px -30px;
  }

  .hero-phone {
    width: min(320px, 55%);
    left: 52%;
  }

  .hero-pedestal {
    width: min(500px, 82vw);
    right: 50%;
    transform: translateX(50%);
  }

  .hero-trophy {
    right: 5%;
  }

  .route-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .site-header .brand-number {
    font-size: 1.65rem;
  }

  .hero-copy {
    padding-top: 54px;
  }

  .eyebrow {
    line-height: 1.45;
  }

  .hero-copy h1,
  .support-hero h1,
  .legal-hero h1 {
    font-size: clamp(3.25rem, 15vw, 4.75rem);
  }

  .hero-topic-line {
    font-size: 0.66em;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
  }

  .home-hero .hero-actions {
    grid-template-columns: 1fr;
  }

  .premium-code-chip {
    width: 100%;
  }

  .code-chip-copy {
    grid-template-columns: 1fr;
  }

  .code-chip-copy > span {
    grid-column: auto;
  }

  .hero-visual {
    min-height: 545px;
  }

  .hero-phone {
    width: min(275px, 68%);
    left: 51%;
  }

  .hero-shield {
    width: 245px;
    height: 285px;
    right: 8%;
    top: 102px;
  }

  .hero-pedestal {
    width: 94%;
    height: 88px;
    bottom: 28px;
  }

  .hero-trophy {
    width: 104px;
    height: 104px;
    right: -3%;
    bottom: 82px;
  }

  .hero-dice {
    width: 58px;
    height: 58px;
  }

  .hero-dice-one {
    left: 2%;
    bottom: 92px;
  }

  .hero-dice-two {
    right: 15%;
    bottom: 44px;
  }

  .hero-coin-one { left: 4%; top: 125px; }
  .hero-coin-two { right: 0; top: 156px; }
  .hero-coin-three { left: 13%; bottom: 45px; }

  .hero-safety-badge {
    right: 0;
    top: 58px;
  }

  .route-grid {
    grid-template-columns: 1fr;
  }

  .route-card,
  .route-card:last-child {
    min-height: 128px;
    border: 1px solid rgba(84, 215, 89, 0.2);
  }

  .content-section {
    padding: 78px 0;
  }

  .faq-heading {
    padding: 22px;
  }
}

/* Mobile compositing safeguard for the real interface screenshot. */
.hero-phone img {
  position: relative;
  z-index: 1;
  background: #eef4ef;
}

@media (max-width: 880px) {
  .hero-phone {
    animation: none;
    transform: translate(-50%, -50%) rotate(1.4deg);
    will-change: auto;
  }
}

/* Preserve the screenshot's intrinsic ratio at every viewport. */
.hero-phone img {
  height: auto;
  aspect-ratio: 620 / 1103;
}

/* The homepage keeps BreadcrumbList schema but omits the visual strip to match the approved hero direction. */
.home-page .breadcrumb-band {
  display: none;
}
