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

:root {
  --bg: #09090b;
  --surface: rgba(24, 24, 27, .72);
  --surface-hover: rgba(39, 39, 42, .88);
  --line: rgba(255, 255, 255, .09);
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --accent: #e11d48;
  --accent-2: #fb7185;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.background-glow { position: fixed; border-radius: 50%; filter: blur(100px); pointer-events: none; opacity: .16; }
.glow-one { width: 320px; height: 320px; background: #be123c; top: -130px; right: -100px; }
.glow-two { width: 260px; height: 260px; background: #7c3aed; bottom: -140px; left: -120px; }

.page-shell { width: min(1120px, calc(100% - 32px)); margin: 0 auto; position: relative; z-index: 1; }
.topbar { height: 110px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; color: inherit; text-decoration: none; }
.brand-logo { width: 185px; height: 82px; display: block; object-fit: contain; object-position: left center; filter: drop-shadow(0 8px 22px rgba(0,0,0,.25)); }
.status { color: #a1a1aa; font-size: 9px; letter-spacing: .16em; font-weight: 700; }
.status i { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 10px rgba(34,197,94,.8); margin-right: 7px; }

.hero { padding: 86px 0 68px; max-width: 700px; animation: rise .7s ease both; }
.eyebrow, .section-kicker { margin: 0 0 13px; color: var(--accent-2); font-size: 10px; font-weight: 800; letter-spacing: .22em; }
.hero h1 { margin: 0; font-size: clamp(42px, 8vw, 76px); line-height: .98; letter-spacing: -.055em; font-weight: 800; }
.hero h1 span { color: var(--accent-2); }
.hero-text { max-width: 560px; margin: 22px 0 0; color: var(--muted); font-size: 15px; line-height: 1.75; }

.access-section { padding-bottom: 90px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.section-heading h2 { margin: 0; font-size: 25px; letter-spacing: -.035em; }
.counter { min-width: 34px; height: 28px; padding: 0 9px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 11px; font-weight: 700; }

.access-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.access-card {
  min-height: 184px; padding: 22px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between;
  color: inherit; text-decoration: none; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); backdrop-filter: blur(16px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
  animation: rise .55s ease both;
}
.access-card::after { content: ""; position: absolute; width: 120px; height: 120px; right: -65px; bottom: -70px; border-radius: 50%; background: var(--card-accent, #e11d48); opacity: .13; filter: blur(22px); transition: opacity .25s ease; }
.access-card:hover { transform: translateY(-5px); border-color: rgba(251,113,133,.32); background: var(--surface-hover); box-shadow: 0 18px 50px rgba(0,0,0,.28); }
.access-card:hover::after { opacity: .3; }
.card-top { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.card-icon { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; background: rgba(255,255,255,.065); border: 1px solid var(--line); font-size: 20px; }
.card-arrow { color: #71717a; font-size: 18px; transition: transform .25s ease, color .25s ease; }
.access-card:hover .card-arrow { color: var(--text); transform: translate(3px,-3px); }
.card-info { position: relative; z-index: 1; }
.card-info h3 { margin: 0 0 7px; font-size: 16px; font-weight: 700; letter-spacing: -.015em; }
.card-info p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.empty-state { grid-column: 1/-1; padding: 45px 20px; border: 1px dashed var(--line); border-radius: 18px; text-align: center; color: var(--muted); font-size: 13px; }

footer { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0 30px; border-top: 1px solid var(--line); color: #52525b; font-size: 9px; font-weight: 700; letter-spacing: .14em; }

@keyframes rise { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 760px) {
  .page-shell { width: min(100% - 24px, 620px); }
  .topbar { height: 88px; }
  .brand-logo { width: 145px; height: 70px; }
  .status { display: none; }
  .hero { padding: 62px 0 52px; }
  .hero h1 { font-size: clamp(42px, 13vw, 64px); }
  .hero-text { font-size: 14px; }
  .access-grid { grid-template-columns: 1fr; gap: 11px; }
  .access-card { min-height: 145px; }
  footer { font-size: 8px; }
}

@media (min-width: 761px) and (max-width: 980px) { .access-grid { grid-template-columns: repeat(2, 1fr); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; } }
