:root {
  --bg: #07090a;
  --panel: #0f1315;
  --panel-2: #151a1d;
  --line: #283035;
  --text: #f2f4f5;
  --muted: #a7b0b5;
  --accent: #a9e4e7;
  --accent-strong: #65cbd1;
  --warm: #d4b06a;
  --max: 1160px;
  --radius: 18px;
  --shadow: 0 22px 70px rgba(0,0,0,.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 90% 5%, rgba(70,130,135,.15), transparent 34rem),
    radial-gradient(circle at 10% 40%, rgba(92,74,50,.12), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: var(--accent); }
a:hover { color: #d6fbfd; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7,9,10,.88);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 196px; max-height: 66px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: #d9dfe1;
  text-decoration: none;
  font-size: .94rem;
  font-weight: 650;
  letter-spacing: .02em;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }
.nav-cta {
  padding: 10px 15px;
  border: 1px solid #3e4b50;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
}

.hero { padding: 72px 0 50px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: 58px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 18px rgba(101,203,209,.7);
}
h1 {
  margin: 16px 0 18px;
  font-size: clamp(2.7rem, 7vw, 5.5rem);
  line-height: .96;
  letter-spacing: -.055em;
}
.hero h1 span { display: block; color: #b5bec2; font-weight: 450; font-size: .48em; letter-spacing: -.02em; margin-top: 15px; }
.lead { margin: 0; max-width: 690px; color: #c3cbcf; font-size: clamp(1.08rem, 2vw, 1.28rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 19px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: .93rem;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: #dceff0; color: #071013; border: 1px solid #dceff0; }
.btn-primary:hover { color: #071013; background: #fff; }
.btn-secondary { background: rgba(255,255,255,.03); color: #eef2f3; border: 1px solid #3b4549; }
.btn-secondary:hover { border-color: #6f7d82; color: #fff; }

.hero-art {
  position: relative;
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #2c3539;
  box-shadow: var(--shadow);
  background: #000;
}
.hero-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: contrast(1.08) saturate(.85); }
.hero-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(4,5,6,.28) 60%, rgba(4,5,6,.82) 100%); }
.hero-card {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
  padding: 17px 18px;
  border-radius: 14px;
  background: rgba(10,13,14,.76);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(13px);
}
.hero-card strong { display: block; font-size: 1.03rem; }
.hero-card span { color: #b5bfc3; font-size: .9rem; }

.fact-strip { padding: 16px 0 68px; }
.facts {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.02);
}
.fact { padding: 22px 24px; border-right: 1px solid var(--line); }
.fact:last-child { border-right: 0; }
.fact b { display: block; font-size: 1.35rem; color: #fff; }
.fact span { color: var(--muted); font-size: .84rem; }

.section { padding: 72px 0; border-top: 1px solid rgba(255,255,255,.06); }
.section-head { max-width: 760px; margin-bottom: 35px; }
.section h2 { margin: 10px 0 12px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.08; letter-spacing: -.035em; }
.section-head p { margin: 0; color: var(--muted); font-size: 1.04rem; }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; counter-reset: step; }
.step {
  counter-increment: step;
  padding: 26px;
  background: linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step::before {
  content: "0" counter(step);
  display: inline-block;
  margin-bottom: 28px;
  color: var(--accent);
  font-weight: 850;
  font-size: .78rem;
  letter-spacing: .12em;
}
.step h3 { margin: 0 0 9px; font-size: 1.22rem; }
.step p { margin: 0; color: var(--muted); font-size: .94rem; }
.step a { display: inline-block; margin-top: 17px; font-weight: 750; text-decoration: none; }

.community {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: center;
}
.community-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #050708;
}
.community-image img { width: 100%; display: block; }
.community-copy p { color: var(--muted); }
.link-row { display: flex; flex-wrap: wrap; gap: 14px 20px; margin-top: 23px; }
.link-row a { text-decoration: none; font-weight: 760; }

.panel-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.panel { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.panel h3 { margin: 0 0 9px; font-size: 1.3rem; }
.panel p { margin: 0; color: var(--muted); }

.ad-wrap { display: flex; justify-content: center; padding: 28px 0 6px; min-height: 95px; overflow: hidden; }

.page-hero { padding: 72px 0 50px; }
.page-hero-inner { max-width: 800px; }
.page-hero h1 { font-size: clamp(2.7rem, 6vw, 4.8rem); }

.story-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 42px;
  align-items: start;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.story-row:first-child { border-top: 0; padding-top: 0; }
.story-media { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #0a0c0d; text-align: center; }
.story-media img { display: block; width: 100%; }
.story-copy h2 { margin: 0 0 14px; font-size: 2rem; letter-spacing: -.025em; }
.story-copy p { color: #bbc4c8; margin: 0 0 16px; }
.story-copy p:last-child { margin-bottom: 0; }
.story-wide .story-media img { aspect-ratio: 16/7; object-fit: cover; }

.notice {
  margin-top: 42px;
  padding: 22px 24px;
  border: 1px solid #394348;
  border-radius: 14px;
  background: rgba(255,255,255,.025);
  color: #aeb8bc;
  font-size: .92rem;
}
.notice strong { color: #e8edef; }

.site-footer { border-top: 1px solid rgba(255,255,255,.08); padding: 38px 0 44px; background: #060809; }
.footer-grid { display: flex; justify-content: space-between; gap: 28px; align-items: flex-end; }
.footer-copy { color: #879196; font-size: .86rem; max-width: 670px; }
.footer-copy p { margin: 7px 0 0; }
.footer-copy a { color: #bcc6ca; }
.footer-logo img { width: 150px; opacity: .7; }

@media (max-width: 900px) {
  .hero-grid, .community { grid-template-columns: 1fr; }
  .hero-art { min-height: 390px; }
  .facts { grid-template-columns: repeat(2,1fr); }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr; }
  .story-row { grid-template-columns: 190px 1fr; gap: 28px; }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 72px; }
  .brand img { width: 150px; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding-top: 50px; }
  h1 { font-size: clamp(2.7rem, 15vw, 4rem); }
  .hero-art { min-height: 320px; }
  .hero-card { left: 14px; right: 14px; bottom: 14px; }
  .facts { grid-template-columns: 1fr; }
  .fact { border-right: 0; border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: 0; }
  .panel-grid { grid-template-columns: 1fr; }
  .story-row { grid-template-columns: 1fr; }
  .story-media { max-width: 280px; }
  .story-wide .story-media { max-width: none; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}
