:root {
  color-scheme: dark;
  --bg: #030814;
  --bg-soft: #07111f;
  --panel: rgba(9, 22, 40, .74);
  --panel-strong: rgba(10, 27, 50, .92);
  --line: rgba(111, 189, 255, .18);
  --line-strong: rgba(46, 169, 255, .42);
  --text: #f7fbff;
  --muted: #9fb0c7;
  --blue: #2aa8ff;
  --cyan: #36e3ff;
  --indigo: #5f6dff;
  --orange: #ff9b42;
  --success: #4ade80;
  --shadow: 0 22px 70px rgba(0, 0, 0, .34);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 80% 5%, rgba(42, 168, 255, .16), transparent 28rem),
    radial-gradient(circle at 10% 28%, rgba(95, 109, 255, .11), transparent 26rem),
    linear-gradient(180deg, #030814 0%, #07101e 52%, #030813 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .42;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.7) 0 1px, transparent 1.4px),
    radial-gradient(circle at 70% 30%, rgba(54,227,255,.8) 0 1px, transparent 1.3px),
    radial-gradient(circle at 40% 70%, rgba(255,255,255,.5) 0 1px, transparent 1.2px);
  background-size: 145px 145px, 205px 205px, 265px 265px;
  mask-image: linear-gradient(to bottom, #000 0, #000 72%, transparent 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0 49.8%, rgba(255,255,255,.018) 50%, transparent 50.2%);
  background-size: 72px 100%;
  opacity: .5;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  color: #06101d;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(3, 8, 20, .74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  min-width: max-content;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.08em;
  color: #fff;
  background: linear-gradient(145deg, var(--cyan), #168cff 52%, #3157ff);
  box-shadow: 0 8px 30px rgba(42,168,255,.28), inset 0 1px rgba(255,255,255,.35);
}
.brand-copy { display: grid; line-height: 1.08; }
.brand-copy strong { font-size: 17px; letter-spacing: -.02em; }
.brand-copy span { margin-top: 5px; color: var(--muted); font-size: 11px; letter-spacing: .04em; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 9px 12px;
  border-radius: 11px;
  color: #bdc9da;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}
.nav a:hover, .nav a:focus-visible { color: #fff; background: rgba(255,255,255,.07); outline: none; }
.header-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(74,222,128,.22);
  border-radius: 999px;
  color: #c7f8d7;
  background: rgba(74,222,128,.06);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
}
.header-status::before { content:""; width:7px; height:7px; border-radius:50%; background:var(--success); box-shadow:0 0 18px rgba(74,222,128,.8); }

.hero {
  position: relative;
  padding: 72px 0 46px;
}
.hero-grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: 28px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(54,227,255,.22);
  border-radius: 999px;
  color: #bff7ff;
  background: rgba(54,227,255,.06);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content:""; width:7px; height:7px; border-radius:50%; background:var(--cyan); box-shadow:0 0 18px rgba(54,227,255,.72); }

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.9rem);
  line-height: .92;
  letter-spacing: -.068em;
  text-wrap: balance;
}
.gradient-word {
  display: inline-block;
  color: transparent;
  background: linear-gradient(110deg, #fff 0 9%, #62d9ff 30%, #168cff 65%, #696dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-subtitle {
  max-width: 690px;
  margin: 24px 0 0;
  color: #d7e3f2;
  font-size: clamp(1.18rem, 2.4vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -.02em;
}
.hero-copy {
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(54,227,255,.38); outline-offset: 3px; }
.button-primary { background: linear-gradient(135deg, #168cff, #3157ff); box-shadow: 0 12px 35px rgba(22,140,255,.24); }
.button-primary:hover { box-shadow: 0 16px 42px rgba(22,140,255,.34); }
.button-secondary { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.05); color: #dce8f8; }
.button-secondary:hover { border-color: rgba(54,227,255,.3); background: rgba(54,227,255,.08); }
.button svg { width: 16px; height: 16px; }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.fact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  color: #acbdd2;
  background: rgba(255,255,255,.025);
  font-size: 11px;
  font-weight: 700;
}
.fact::before { content:""; width:6px; height:6px; border-radius:50%; background:#4ea9ff; }

.hero-art {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}
.hero-art::before {
  content: "";
  position: absolute;
  width: min(90%, 450px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,168,255,.28) 0%, rgba(47,87,255,.12) 42%, transparent 70%);
  filter: blur(5px);
}
.orbit {
  position: absolute;
  width: min(92%, 470px);
  aspect-ratio: 1;
  border: 1px solid rgba(80,181,255,.14);
  border-radius: 50%;
  transform: rotate(-14deg) scaleY(.72);
}
.orbit::before, .orbit::after {
  content:"";
  position:absolute;
  top:50%; left:50%;
  border:1px solid rgba(95,109,255,.12);
  border-radius:50%;
  transform:translate(-50%,-50%) rotate(30deg) scaleY(.7);
}
.orbit::before { width:82%; height:82%; }
.orbit::after { width:122%; height:122%; }
.mascot-wrap {
  position: relative;
  z-index: 2;
  width: min(100%, 460px);
  padding: 8px;
  filter: drop-shadow(0 30px 42px rgba(0,0,0,.45));
}
.mascot-wrap img {
  width: 100%;
  height: auto;
  filter: saturate(1.08) contrast(1.04);
}
.mascot-badge {
  position: absolute;
  z-index: 3;
  right: 2%;
  bottom: 11%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(54,227,255,.25);
  border-radius: 14px;
  background: rgba(5,15,29,.78);
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
}
.mascot-badge strong { font-size: 12px; }
.mascot-badge span { color:var(--muted); font-size:10px; }
.badge-icon { width:28px; height:28px; border-radius:10px; display:grid; place-items:center; background:rgba(42,168,255,.12); color:var(--cyan); }
.badge-icon svg { width:16px; height:16px; }

.section { padding: 54px 0; }
.section-heading { max-width: 760px; margin-bottom: 24px; }
.section-kicker { color:var(--cyan); font-size:11px; font-weight:900; letter-spacing:.14em; text-transform:uppercase; }
.section h2 { margin: 7px 0 8px; font-size: clamp(1.8rem, 4vw, 2.6rem); line-height:1.05; letter-spacing:-.04em; }
.section-heading p { margin:0; color:var(--muted); font-size:14px; }

.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.link-card {
  position: relative;
  min-height: 212px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(14,34,61,.9), rgba(6,16,30,.86));
  box-shadow: inset 0 1px rgba(255,255,255,.035);
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.link-card::after {
  content:"";
  position:absolute;
  width:140px; height:140px;
  right:-54px; top:-58px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(42,168,255,.17), transparent 66%);
  transition: transform .25s ease, opacity .25s ease;
}
.link-card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 18px 44px rgba(0,0,0,.25), inset 0 1px rgba(255,255,255,.05); }
.link-card:hover::after { transform:scale(1.2); }
.link-card:focus-visible { outline:3px solid rgba(54,227,255,.34); outline-offset:4px; }
.card-top { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }
.card-icon {
  width:48px; height:48px;
  display:grid; place-items:center;
  border-radius:15px;
  background:rgba(42,168,255,.11);
  border:1px solid rgba(42,168,255,.15);
  color:#e8f7ff;
}
.card-icon img { width:30px; height:30px; object-fit:contain; }
.card-icon svg { width:27px; height:27px; }
.card-arrow { width:32px; height:32px; display:grid; place-items:center; border-radius:50%; border:1px solid rgba(255,255,255,.1); color:#a9c2dd; font-size:17px; transition:background .2s ease,color .2s ease,transform .2s ease; }
.link-card:hover .card-arrow { background:#168cff; color:#fff; transform:translate(2px,-2px); }
.card-body h3 { margin:18px 0 5px; font-size:17px; letter-spacing:-.025em; }
.card-body p { margin:0; color:#91a4bd; font-size:12px; min-height:38px; }
.card-domain { display:inline-flex; align-items:center; gap:7px; width:fit-content; margin-top:13px; padding:6px 9px; border-radius:999px; background:rgba(255,255,255,.045); color:#d8e7f6; font-size:10px; font-weight:800; }
.card-domain::before { content:""; width:6px; height:6px; border-radius:50%; background:var(--success); }
.link-card.alt { border-color:rgba(124,97,255,.26); }
.link-card.alt .card-icon { background:rgba(124,97,255,.12); border-color:rgba(124,97,255,.2); }
.link-card.youtube { border-color:rgba(255,75,88,.20); }
.link-card.youtube .card-icon { background:rgba(255,75,88,.08); border-color:rgba(255,75,88,.14); }

.about-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(12,30,54,.88), rgba(5,15,28,.86));
  box-shadow: var(--shadow);
}
.about-panel::after { content:""; position:absolute; width:360px; height:360px; right:-180px; top:-210px; border-radius:50%; background:radial-gradient(circle,rgba(42,168,255,.18),transparent 70%); }
.about-copy h2 { margin:0 0 10px; }
.about-copy p { margin:0; color:#a5b6ca; font-size:13px; }
.about-copy p + p { margin-top:11px; }
.security-note { display:flex; gap:12px; align-items:flex-start; margin-top:18px; padding:14px; border:1px solid rgba(74,222,128,.13); border-radius:16px; background:rgba(74,222,128,.045); }
.security-note svg { flex:0 0 22px; width:22px; color:#62e791; }
.security-note strong { display:block; margin-bottom:2px; font-size:12px; }
.security-note span { color:#9bb2c5; font-size:11px; }
.domain-list { position:relative; z-index:1; display:grid; align-content:center; gap:9px; }
.domain-row { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:12px 13px; border:1px solid rgba(255,255,255,.08); border-radius:14px; background:rgba(255,255,255,.03); }
.domain-row span:first-child { display:flex; align-items:center; gap:8px; color:#e4eef8; font-size:12px; font-weight:800; }
.domain-row span:first-child::before { content:""; width:7px; height:7px; border-radius:50%; background:var(--success); box-shadow:0 0 12px rgba(74,222,128,.45); }
.domain-label { padding:5px 8px; border-radius:999px; font-size:9px; font-weight:900; text-transform:uppercase; letter-spacing:.06em; color:#9bdcff; background:rgba(42,168,255,.09); }

.contact-grid { display:grid; grid-template-columns: repeat(2,1fr); gap:14px; }
.contact-card { display:flex; align-items:center; gap:16px; padding:20px; border:1px solid var(--line); border-radius:20px; background:rgba(9,22,40,.72); text-decoration:none; transition:transform .2s ease,border-color .2s ease,background .2s ease; }
.contact-card:hover { transform:translateY(-3px); border-color:var(--line-strong); background:rgba(12,30,52,.9); }
.contact-card:focus-visible { outline:3px solid rgba(54,227,255,.32); outline-offset:4px; }
.contact-icon { width:46px; height:46px; flex:0 0 46px; display:grid; place-items:center; border-radius:14px; background:linear-gradient(145deg,rgba(42,168,255,.2),rgba(49,87,255,.12)); color:#7ce8ff; }
.contact-icon svg { width:23px; height:23px; }
.contact-copy small { display:block; color:#8397b0; font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.contact-copy strong { display:block; margin-top:2px; font-size:15px; letter-spacing:-.01em; word-break:break-word; }
.contact-copy span { display:block; margin-top:3px; color:#8ea1b9; font-size:11px; }

.site-footer { margin-top:48px; border-top:1px solid rgba(255,255,255,.07); background:rgba(2,6,14,.58); }
.footer-main { display:grid; grid-template-columns: 1.3fr .7fr .7fr .95fr; gap:28px; padding:34px 0 28px; }
.footer-brand p { max-width:300px; margin:12px 0 0; color:#8397ae; font-size:11px; }
.footer-col h3 { margin:0 0 10px; color:#dfeaf7; font-size:11px; text-transform:uppercase; letter-spacing:.09em; }
.footer-col a { display:block; width:fit-content; margin:7px 0; color:#8fa5bd; font-size:11px; text-decoration:none; }
.footer-col a:hover, .footer-col a:focus-visible { color:#fff; outline:none; text-decoration:underline; text-underline-offset:4px; }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; gap:18px; padding:18px 0 24px; border-top:1px solid rgba(255,255,255,.05); color:#72869e; font-size:10px; }
.footer-bottom strong { color:#9cb0c8; }

@media (max-width: 980px) {
  .hero { padding-top:48px; }
  .hero-grid { min-height:auto; grid-template-columns: 1fr; }
  .hero-copy-wrap { text-align:center; display:grid; justify-items:center; }
  .hero-actions, .hero-facts { justify-content:center; }
  .hero-art { min-height:420px; }
  .mascot-wrap { width:min(84vw,420px); }
  .links-grid { grid-template-columns: repeat(2,1fr); }
  .about-panel { grid-template-columns:1fr; }
  .footer-main { grid-template-columns:1.3fr 1fr 1fr; }
  .footer-col:last-child { grid-column:2 / span 2; }
}

@media (max-width: 700px) {
  .container { width:min(calc(100% - 24px), var(--max)); }
  .header-inner { min-height:68px; }
  .nav a:not(.header-status) { display:none; }
  .header-status { margin-left:0; }
  .hero { padding:42px 0 26px; }
  .hero h1 { font-size:clamp(3.05rem, 16.8vw, 5.2rem); }
  .hero-subtitle { font-size:1.15rem; }
  .hero-copy { font-size:13px; }
  .hero-art { min-height:365px; }
  .mascot-wrap { width:min(92vw,370px); }
  .mascot-badge { right:0; bottom:5%; }
  .section { padding:42px 0; }
  .links-grid { grid-template-columns:1fr; }
  .link-card { min-height:184px; }
  .contact-grid { grid-template-columns:1fr; }
  .about-panel { padding:20px; }
  .footer-main { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1 / -1; }
  .footer-col:last-child { grid-column:auto; }
  .footer-bottom { align-items:flex-start; flex-direction:column; }
}

@media (max-width: 420px) {
  .brand-copy span { display:none; }
  .header-status { padding:7px 9px; font-size:9px; }
  .hero-actions { width:100%; }
  .button { flex:1 1 160px; }
  .hero-facts { display:grid; grid-template-columns:1fr; width:100%; }
  .fact { justify-content:center; }
  .hero-art { min-height:335px; }
  .mascot-badge { display:none; }
  .footer-main { grid-template-columns:1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { transition-duration:.01ms !important; animation-duration:.01ms !important; animation-iteration-count:1 !important; }
}
