/* =============================================================
   TactiGlow VR Arena — Auxiliary Pages Stylesheet
   (About, Privacy Policy, Terms of Service, Cookie Policy)
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;600&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
img, svg { display: block; }
ul { list-style: none; }
a { text-decoration: none; }

/* ── VARIABLES ── */
:root {
  --bg-main:        #08091c;
  --bg-alt:         #0c0d22;
  --bg-card:        #0f1028;

  --cyan:           #00d4ff;
  --red:            #ff2b5e;
  --purple:         #7c3aed;

  --text-primary:   #f0f2ff;
  --text-secondary: #8892b0;
  --text-muted:     #44485c;

  --border:         #1a1c38;
  --border-light:   #22254a;

  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Open Sans',  system-ui, sans-serif;

  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 20px;

  --container: 1200px;
  --pad-x: 1.5rem;
}

/* ── BASE ── */
body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h3 { font-size: 1.15rem; }

p { color: var(--text-secondary); line-height: 1.8; }

/* ── CONTAINER ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ────────────────────────────────────────
   PAGE HEADER (auxiliary pages)
   ──────────────────────────────────────── */
.page-header {
  background-color: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.page-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.5rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-header__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.page-header__logo { width: 44px; height: auto; }

.page-header__name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
}

.page-header__name em { font-style: normal; color: var(--cyan); }

.page-header__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-s);
}

.page-header__back:hover { color: var(--cyan); border-color: var(--cyan); }

.page-header__back svg { width: 14px; height: 14px; }

/* ────────────────────────────────────────
   PAGE HERO (title banner)
   ──────────────────────────────────────── */
.page-hero {
  background-color: var(--bg-main);
  border-bottom: 1px solid var(--border);
  padding: 3rem var(--pad-x);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.25;
  pointer-events: none;
}

.page-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.page-hero__title { margin-bottom: 0; }

/* ────────────────────────────────────────
   PAGE CONTENT
   ──────────────────────────────────────── */
.page-content {
  padding: 4rem 0;
}

.page-content .container { max-width: 860px; }

/* About blocks */
.about-block {
  margin-bottom: 4rem;
}

.about-block:last-child { margin-bottom: 0; }

.about-block h2 {
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.about-block h2 span { color: var(--cyan); }

.about-block p { margin-bottom: 1rem; }
.about-block p:last-child { margin-bottom: 0; }

/* Values list */
.values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.value-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--cyan);
  border-radius: var(--radius-m);
  padding: 1.5rem;
}

.value-card:nth-child(2) { border-top-color: var(--red); }
.value-card { border-top-color: var(--purple); }

/* Photo placeholders */
.photo-placeholder {
  aspect-ratio: 4/3;
  background-color: var(--bg-alt);
  border: 2px dashed var(--border);
  border-radius: var(--radius-m);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-placeholder--main {
  aspect-ratio: 16/9;
  margin-bottom: 2rem;
}

.photo-placeholder--large {
  aspect-ratio: 1;
  max-width: 360px;
  margin: 0 auto;
}

.photo-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.25;
}

.about-block__content {
  margin-top: 1.5rem;
}

/* Values with icons */
.value-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.value-card__icon svg {
  width: 100%;
  height: 100%;
}

/* Policy sections */
.policy-intro {
  background-color: var(--bg-card);
  border-left: 4px solid var(--cyan);
  padding: 1.5rem;
  border-radius: var(--radius-m);
  margin-bottom: 2.5rem;
}

.policy-intro p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-size: 1.15rem;
}

.policy-section p {
  margin-bottom: 1rem;
}

.policy-section p:last-of-type { margin-bottom: 0; }

.policy-list {
  margin: 1rem 0;
  padding-left: 1.5rem;
  list-style: disc;
}

.policy-list li {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.policy-list strong {
  color: var(--text-primary);
  font-weight: 600;
}

.policy-section a {
  color: var(--cyan);
  text-decoration: underline;
}

.policy-section a:hover {
  opacity: 0.8;
}

/* Image placeholder styling */
.image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-m);
  display: block;
}

.value-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.value-card p  { font-size: 0.85rem; }

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.team-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  overflow: hidden;
  text-align: center;
}

.team-photo {
  aspect-ratio: 1;
  background-color: var(--bg-main);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2rem;
}

.team-photo svg { opacity: 0.3; width: 36px; height: 36px; }

.team-info { padding: 1.25rem 1rem; }
.team-info h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.team-info__role {
  font-size: 0.78rem;
  color: var(--cyan);
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Empty page placeholder */
.page-empty {
  padding: 5rem var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 320px;
  border: 2px dashed var(--border-light);
  border-radius: var(--radius-l);
  margin: 2rem 0;
}

.page-empty p {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ────────────────────────────────────────
   FOOTER (auxiliary pages)
   ──────────────────────────────────────── */
.footer {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.75rem;
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer__brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer__brand-wrap img { width: 34px; height: auto; }

.footer__brand-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
}

.footer__brand-name em { font-style: normal; color: var(--cyan); }

.footer__links-row { display: flex; gap: 1.25rem; flex-wrap: wrap; }

.footer__links-row a {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__links-row a:hover { color: var(--cyan); }

.footer__copy { font-size: 0.78rem; color: var(--text-muted); width: 100%; text-align: center; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }

/* ────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────── */
@media (max-width: 768px) {
  .values-list { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links-row { justify-content: center; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .page-header__inner { flex-direction: column; align-items: flex-start; }
}
