@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Jost:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ── Tokens ── */
:root {
  --bg:         #080808;
  --surface:    #0f0f0f;
  --surface-2:  #161616;
  --border:     rgba(255,255,255,0.07);
  --border-2:   rgba(255,255,255,0.12);
  --accent:     #F15A24;
  --accent-dim: rgba(241,90,36,0.10);
  --text:       #EDEBE6;
  --muted:      #686460;
  --dim:        #212121;
  --radius:     2px;
}

/* ── Reset ── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* noise grain */
body::after {
  content:'';
  position:fixed; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity:0.028; pointer-events:none; z-index:9998;
}

/* ────────────────────────── NAV ────────────────────────── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 3rem;
  height:64px;
  background:rgba(8,8,8,0.90);
  backdrop-filter:blur(28px);
  -webkit-backdrop-filter:blur(28px);
  border-bottom:1px solid var(--border);
}
nav::before {
  content:'';
  position:absolute; top:0; left:0; right:0; height:2px;
  background:var(--accent);
}

.nav-logo { display:flex; align-items:center; text-decoration:none; flex-shrink:0; }
.nav-logo img { height:28px; width:auto; }

.nav-links { display:flex; gap:2.5rem; list-style:none; }
.nav-links a {
  color:var(--muted);
  text-decoration:none;
  font-size:0.68rem;
  font-weight:500;
  letter-spacing:0.15em;
  text-transform:uppercase;
  transition:color 0.2s;
  position:relative;
  padding-bottom:2px;
}
.nav-links a::after {
  content:'';
  position:absolute; bottom:0; left:0; right:0;
  height:1px; background:var(--accent);
  transform:scaleX(0); transform-origin:left;
  transition:transform 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active { color:var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { transform:scaleX(1); }

/* hamburger */
.nav-toggle {
  display:none;
  flex-direction:column; gap:5px;
  cursor:pointer; padding:4px; background:none; border:none;
}
.nav-toggle span {
  display:block; width:22px; height:1.5px;
  background:var(--text); transition:all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display:none;
  position:fixed; top:64px; left:0; right:0; z-index:199;
  background:rgba(8,8,8,0.97);
  backdrop-filter:blur(28px);
  border-bottom:1px solid var(--border);
  padding:2rem 3rem;
  flex-direction:column; gap:1.5rem;
  list-style:none;
}
.nav-mobile.open { display:flex; }
.nav-mobile a {
  color:var(--muted);
  text-decoration:none;
  font-size:0.85rem;
  font-weight:500;
  letter-spacing:0.12em;
  text-transform:uppercase;
  transition:color 0.2s;
}
.nav-mobile a:hover,
.nav-mobile a.active { color:var(--accent); }

/* ────────────────────────── HERO ────────────────────────── */
.hero {
  min-height:100vh;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  text-align:center;
  padding:9rem 2rem 6rem;
  position:relative; overflow:hidden;
}

/* dot grid */
.hero::before {
  content:'';
  position:absolute; inset:0;
  background-image:radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size:36px 36px;
  mask-image:radial-gradient(ellipse 70% 80% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image:radial-gradient(ellipse 70% 80% at 50% 40%, black 30%, transparent 80%);
  pointer-events:none;
}

.hero-glow {
  position:absolute; bottom:-80px; left:50%;
  transform:translateX(-50%);
  width:1000px; height:500px;
  background:radial-gradient(ellipse at center, rgba(241,90,36,0.11) 0%, transparent 65%);
  pointer-events:none;
}

.hero-logo {
  margin-bottom:2.5rem;
  animation:fadeUp 1s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-logo img { height:88px; width:auto; max-width:440px; }

.hero-eyebrow {
  font-size:0.62rem; font-weight:600;
  letter-spacing:0.38em; text-transform:uppercase;
  color:var(--accent);
  margin-bottom:1.5rem;
  animation:fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.07s both;
}

.hero h1 {
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(4.5rem,12vw,10rem);
  line-height:0.9; letter-spacing:0.03em;
  margin-bottom:2rem;
  animation:fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.14s both;
}

.hero-rule {
  width:36px; height:1px;
  background:var(--accent);
  margin:0 auto 2rem;
  animation:fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.21s both;
}

.hero-desc {
  max-width:460px;
  color:var(--muted); font-size:0.93rem; line-height:1.9;
  margin:0 auto 2.5rem;
  animation:fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.28s both;
}

.hero-pill {
  display:inline-flex; align-items:center; gap:0.65rem;
  padding:0.55rem 1.4rem;
  border:1px solid var(--border-2);
  border-radius:100px;
  font-size:0.68rem; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--muted);
  animation:fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.35s both;
}
.hero-pill-dot {
  width:5px; height:5px; border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 6px var(--accent);
}

/* scroll indicator */
.scroll-hint {
  position:absolute; bottom:2.5rem; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:0.5rem;
  animation:fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.6s both;
}
.scroll-hint span {
  font-size:0.58rem; letter-spacing:0.2em; text-transform:uppercase;
  color:var(--dim); color:#333;
}
.scroll-arrow {
  width:16px; height:16px;
  border-right:1px solid #333; border-bottom:1px solid #333;
  transform:rotate(45deg);
  animation:scrollBounce 1.6s ease-in-out infinite;
}

/* ────────────────────────── CARDS ────────────────────────── */
.cards-section {
  padding:5rem 3rem 4rem;
  max-width:1120px; margin:0 auto;
}

.section-label {
  font-size:0.62rem; font-weight:600;
  letter-spacing:0.28em; text-transform:uppercase;
  color:var(--muted);
  margin-bottom:2.5rem;
  display:flex; align-items:center; gap:1rem;
}
.section-label::after {
  content:''; flex:1; height:1px; background:var(--border);
}

.cards-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--border);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
}

.card {
  background:var(--surface);
  padding:2.5rem 2.25rem;
  position:relative; overflow:hidden;
  transition:background 0.35s;
}
.card:hover { background:var(--surface-2); }
.card:hover .card-icon { color:var(--accent); }
.card:hover .card-num { opacity:0.35; }

.card-accent-bar {
  position:absolute; top:0; left:0;
  width:2px; height:0;
  background:var(--accent);
  transition:height 0.45s cubic-bezier(0.16,1,0.3,1);
}
.card:hover .card-accent-bar { height:100%; }

.card-icon {
  color:var(--dim); color:#272727;
  margin-bottom:1.75rem;
  transition:color 0.3s;
}
.card-icon svg { width:28px; height:28px; stroke-width:1.25; }

.card-num {
  position:absolute; top:1.5rem; right:2rem;
  font-family:'Bebas Neue', sans-serif;
  font-size:4rem; line-height:1;
  color:rgba(255,255,255,0.04);
  letter-spacing:0.02em;
  transition:opacity 0.3s;
  user-select:none;
}

.card-title {
  font-size:0.66rem; font-weight:600;
  letter-spacing:0.18em; text-transform:uppercase;
  color:var(--text); margin-bottom:0.8rem;
}

.card-desc {
  font-size:0.85rem; color:var(--muted); line-height:1.8;
}

/* ────────────────────────── LINKS BAR ────────────────────────── */
.links-bar {
  max-width:1120px; margin:0 auto;
  padding:2rem 3rem 6rem;
  display:flex; align-items:center; gap:0.75rem; flex-wrap:wrap;
}

.link-pill {
  display:inline-flex; align-items:center; gap:0.55rem;
  padding:0.8rem 1.6rem;
  text-decoration:none;
  font-size:0.68rem; font-weight:500;
  letter-spacing:0.12em; text-transform:uppercase;
  border:1px solid var(--border);
  color:var(--muted);
  border-radius:var(--radius);
  transition:border-color 0.2s, color 0.2s, background 0.2s;
}
.link-pill:hover { border-color:var(--border-2); color:var(--text); }
.link-pill.featured {
  background:var(--accent); border-color:var(--accent); color:#fff;
}
.link-pill.featured:hover { background:#d44d1e; border-color:#d44d1e; }
.link-pill svg { width:13px; height:13px; }

/* ────────────────────────── PAGE HEADER ────────────────────────── */
.page-header {
  padding:9rem 3rem 3rem;
  max-width:1120px; margin:0 auto;
  border-bottom:1px solid var(--border);
  margin-bottom:4rem;
  position:relative; overflow:hidden;
}
.page-ghost {
  position:absolute; right:-1rem; bottom:-2rem;
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(6rem,15vw,13rem);
  line-height:1; letter-spacing:0.02em;
  color:rgba(255,255,255,0.025);
  pointer-events:none; user-select:none;
  white-space:nowrap;
}

.page-eyebrow {
  font-size:0.6rem; font-weight:600;
  letter-spacing:0.32em; text-transform:uppercase;
  color:var(--accent); margin-bottom:1.25rem;
}
.page-header h1 {
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(3rem,7vw,5.5rem);
  line-height:0.93; letter-spacing:0.025em;
  margin-bottom:1rem;
}
.page-meta {
  font-size:0.7rem; color:var(--muted); letter-spacing:0.08em;
}

/* ────────────────────────── POLICY CONTENT ────────────────────────── */
.policy-content {
  max-width:720px; margin:0 auto;
  padding:0 3rem 7rem;
}

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

.policy-section h2 {
  font-family:'Bebas Neue', sans-serif;
  font-size:1.55rem; letter-spacing:0.06em;
  color:var(--text); margin-bottom:1.25rem;
  display:flex; align-items:center; gap:0.8rem;
}
.policy-section h2::before {
  content:''; display:inline-block;
  width:16px; height:2px;
  background:var(--accent); flex-shrink:0;
}

.policy-section p {
  font-size:0.87rem; color:var(--muted);
  line-height:1.9; margin-bottom:1rem;
}

.policy-section ul { list-style:none; margin:0.75rem 0 1rem; }
.policy-section ul li {
  font-size:0.87rem; color:var(--muted);
  padding:0.38rem 0 0.38rem 1.5rem;
  position:relative; line-height:1.75;
  border-bottom:1px solid rgba(255,255,255,0.03);
}
.policy-section ul li:last-child { border-bottom:none; }
.policy-section ul li::before {
  content:'→'; position:absolute; left:0;
  color:var(--accent); font-size:0.7rem;
  top:0.55rem;
}

.policy-highlight {
  background:var(--surface);
  border:1px solid var(--border);
  border-left:2px solid var(--accent);
  padding:1.25rem 1.5rem; margin:1.5rem 0;
  font-size:0.84rem; color:var(--muted); line-height:1.85;
  border-radius:0 var(--radius) var(--radius) 0;
}

.policy-link { color:var(--accent); text-decoration:none; }
.policy-link:hover { text-decoration:underline; }

/* ────────────────────────── SUPPORT ────────────────────────── */
.support-content {
  max-width:1120px; margin:0 auto;
  padding:0 3rem 7rem;
  display:grid; grid-template-columns:1fr 1.4fr;
  gap:1.5rem; align-items:start;
}

.support-card {
  background:var(--surface);
  border:1px solid var(--border);
  padding:2.5rem;
  border-radius:var(--radius);
}

.support-card h2 {
  font-family:'Bebas Neue', sans-serif;
  font-size:1.9rem; letter-spacing:0.04em;
  margin-bottom:0.75rem;
}
.support-card p {
  font-size:0.84rem; color:var(--muted);
  line-height:1.8; margin-bottom:2rem;
}

.support-contact-link {
  display:flex; align-items:center; gap:0.9rem;
  padding:1rem 1.25rem;
  border:1px solid var(--border);
  color:var(--text); text-decoration:none;
  font-size:0.84rem;
  border-radius:var(--radius);
  transition:border-color 0.2s, color 0.2s;
  margin-bottom:0.75rem;
}
.support-contact-link:hover { border-color:var(--accent); color:var(--accent); }
.support-contact-link svg { width:16px; height:16px; flex-shrink:0; color:var(--accent); }

.support-divider {
  width:100%; height:1px; background:var(--border); margin:2rem 0;
}

.faq-list { display:flex; flex-direction:column; }
.faq-item {
  padding:1.1rem 0;
  border-bottom:1px solid var(--border);
}
.faq-item:first-child { padding-top:0; }
.faq-q {
  font-size:0.8rem; font-weight:500;
  letter-spacing:0.03em; color:var(--text);
  margin-bottom:0.4rem;
}
.faq-a { font-size:0.8rem; color:var(--muted); line-height:1.75; }

/* ────────────────────────── FOOTER ────────────────────────── */
footer {
  border-top:1px solid var(--border);
  padding:2rem 3rem;
  display:flex; align-items:center; justify-content:space-between;
  position:relative; z-index:1;
}
.footer-logo img { height:20px; width:auto; opacity:0.35; }
.footer-links { display:flex; gap:2rem; list-style:none; }
.footer-links a {
  color:var(--muted); text-decoration:none;
  font-size:0.63rem; letter-spacing:0.12em; text-transform:uppercase;
  transition:color 0.2s;
}
.footer-links a:hover { color:var(--accent); }
.footer-copy { font-size:0.63rem; color:#252525; }

/* ────────────────────────── ANIMATIONS ────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes scrollBounce {
  0%,100% { transform:rotate(45deg) translateY(0); opacity:0.5; }
  50%      { transform:rotate(45deg) translateY(4px); opacity:1; }
}

/* reveal on scroll */
.reveal {
  opacity:0; transform:translateY(24px);
  transition:opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity:1; transform:none; }

/* ────────────────────────── RESPONSIVE ────────────────────────── */
@media (max-width:860px) {
  nav { padding:0 1.5rem; }
  .nav-links { display:none; }
  .nav-toggle { display:flex; }

  .hero { padding:8rem 1.5rem 5rem; }
  .hero-logo img { height:64px; }

  .cards-section { padding:4rem 1.5rem 3rem; }
  .cards-grid { grid-template-columns:1fr; }

  .links-bar { padding:1.5rem 1.5rem 5rem; }

  .page-header { padding:8rem 1.5rem 2.5rem; }
  .page-ghost { display:none; }

  .policy-content { padding:0 1.5rem 5rem; }

  .support-content { grid-template-columns:1fr; padding:0 1.5rem 5rem; }

  footer {
    flex-direction:column; gap:1.5rem;
    text-align:center; padding:2rem 1.5rem;
  }
  .footer-links { flex-wrap:wrap; justify-content:center; gap:1.25rem; }
}
