@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700;800&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #18191f;
  --surface: #232530;
  --card: #2c2e3d;
  --accent: #f4a236;
  --accent-hover: #ffb74d;
  --text: #e8e4df;
  --text-muted: #a09890;
  --border: #383948;
  --radius: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Raleway", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ── LAYOUT ── */
.pg-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
.top-strip {
  background: #0e0f14;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
}
.strip-inner {
  display: flex;
  align-items: center;
}
.brand-stamp__link {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.brand-stamp__link:hover {
  color: var(--accent-hover);
}

/* ── HERO ── */
.spotlight-block {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #1a1c24 0%, #12131a 100%);
}
.spotlight-inner {
  max-width: 760px;
}
.spotlight-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}
.spotlight-headline span {
  color: var(--accent);
}
.spotlight-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

/* ── PLATFORMS SECTION ── */
.platform-row {
  padding: 64px 0;
}
.platform-row__heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 36px;
  padding-left: 12px;
  border-left: 4px solid var(--accent);
}
.platform-row__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── PLATFORM TILE ── */
.platform-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.platform-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}
.tile-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: #0e0f14;
  font-weight: 800;
  font-size: 0.85rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tile-body {
  padding: 52px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.tile-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.tile-data {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.data-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.9rem;
}
.data-line__key {
  color: var(--text-muted);
  font-weight: 600;
}
.data-line__val {
  color: var(--accent);
  font-weight: 700;
}

.tile-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.perk-entry {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.perk-entry__dot {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.tile-action {
  margin-top: auto;
}
.tile-action__link {
  display: block;
  text-align: center;
  background: var(--accent);
  color: #0e0f14;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: 7px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.tile-action__link:hover {
  background: var(--accent-hover);
  transform: scale(1.03);
}

/* ── FAQ ── */
.questions-zone {
  padding: 60px 0;
  background: #0e0f14;
}
.questions-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text);
}
.accordion-list {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto;
}
.accordion-unit {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.accordion-unit:hover {
  border-color: var(--accent);
}
.accordion-unit__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  gap: 16px;
}
.accordion-unit__label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  flex: 1;
}
.accordion-unit__toggle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    background 0.2s;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 700;
}
.accordion-unit--open .accordion-unit__toggle {
  transform: rotate(45deg);
  background: var(--accent);
  color: #0e0f14;
}
.accordion-unit__body {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}
.accordion-unit--open .accordion-unit__body {
  max-height: 400px;
  padding: 0 20px 20px;
}

/* ── FOOTER ── */
.page-footer {
  background: #0b0c11;
  padding: 60px 0 0;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}
.footer-upper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.footer-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
}
.footer-org-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
.org-link img {
  height: 36px;
  width: auto;
  opacity: 0.75;
}
.org-link img:hover {
  opacity: 1;
}

.disclaimer-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.disc-col p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer-lower {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer-lower__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-lower__links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-lower__links a:hover {
  color: var(--accent);
}
.footer-lower__copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── POLICY / LEGAL PAGES ── */
.policy-canvas {
  padding: 70px 0;
  min-height: 60vh;
}
.policy-inner {
  max-width: 820px;
}
.policy-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.policy-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}
.policy-block {
  margin-bottom: 32px;
}
.policy-block__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}
.policy-block__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.policy-block__text a {
  color: var(--accent);
  text-decoration: underline;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .platform-row__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .spotlight-block {
    padding: 50px 0 40px;
  }
  .platform-row__inner {
    grid-template-columns: 1fr;
  }
  .footer-upper {
    flex-direction: column;
  }
  .footer-lower {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .pg-wrap {
    padding: 0 16px;
  }
  .footer-lower__links {
    flex-direction: column;
    gap: 8px;
  }
}
