:root{
  /* Dark Museum palette */
  --bg:#07080b;
  --bgDeep:#05060a;

  --text:#eef0f7;
  --muted:#b7bccb;

  --glass: rgba(255,255,255,.045);
  --glass2: rgba(255,255,255,.032);
  --border: rgba(255,255,255,.09);

  /* One primary accent (luma cyan). Purple remains subtle secondary. */
  --accent:#54f0d1;
  --accent2:#9b87ff;

  --shadow: 0 28px 90px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html,body{height:100%}

/* anchors + sticky header */
html{
  scroll-behavior:smooth;
  scroll-padding-top: 88px;
}

body{
  margin:0;
  min-height:100vh;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);

  /* single unified background */
  background:
    radial-gradient(900px 520px at 20% 12%, rgba(155,135,255,.10), transparent 60%),
    radial-gradient(880px 520px at 85% 18%, rgba(84,240,209,.10), transparent 62%),
    radial-gradient(900px 720px at 50% 110%, rgba(155,135,255,.06), transparent 66%),
    linear-gradient(180deg, var(--bg), var(--bgDeep) 78%);
}

/* Subtle animated grain overlay (museum texture) */
body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
  opacity:.12;
  mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  animation: grainMove 14s steps(10) infinite;
}
@keyframes grainMove{
  0%{transform:translate3d(0,0,0)}
  25%{transform:translate3d(-2%,1%,0)}
  50%{transform:translate3d(2%,-1%,0)}
  75%{transform:translate3d(-1%,-2%,0)}
  100%{transform:translate3d(0,0,0)}
}

/* keep content above grain */
header, main, footer{position:relative; z-index:1;}

a{color:inherit;text-decoration:none}
a:hover{opacity:.95}

.wrap{max-width:1120px;margin:0 auto;padding:0 20px}

/* ===== HEADER ===== */

.top{
  position:sticky; top:0; z-index:50;
  background: rgba(6,6,10,.74);
  border-bottom:1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
}
.top__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:68px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.2px;
}

.brand__icon{
  width:34px;
  height:34px;
  border-radius:11px;
  display:block;
  object-fit:cover;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 34px rgba(0,0,0,.35);
}

.brand__name{font-size:15px}

.nav{
  display:flex;
  gap:18px;
  align-items:center;
}
.nav a{
  font-size:13px;
  color:rgba(238,240,247,.74);
}
.nav a:hover{color:rgba(238,240,247,.94)}

/* ===== TYPO ===== */

.kicker{
  display:inline-block;
  font-size:11px;
  letter-spacing:.26em;
  text-transform:uppercase;
  color:rgba(238,240,247,.66);
  margin:0 0 12px;
}

h1{
  margin:0 0 14px;
  font-size:58px;
  line-height:1.02;
  letter-spacing:-.04em;
}

.lead{
  margin:0 0 22px;
  font-size:16px;
  line-height:1.75;
  color:rgba(238,240,247,.84);
}

h2{
  margin:0 0 18px;
  font-size:28px;
  letter-spacing:-.02em;
}

.muted{color:rgba(238,240,247,.72)}
.small{margin-top:10px;font-size:12px;color:rgba(238,240,247,.66);line-height:1.6}

/* ===== HERO ===== */

.hero{
  padding:78px 0 48px;
  position:relative;
}

/* aurora behind hero, slow & subtle */
.hero:before{
  content:"";
  position:absolute;
  inset:-140px -80px auto -80px;
  height:420px;
  pointer-events:none;
  background:
    radial-gradient(520px 260px at 18% 38%, rgba(84,240,209,.14), transparent 60%),
    radial-gradient(560px 300px at 78% 28%, rgba(155,135,255,.12), transparent 62%);
  filter: blur(18px);
  opacity:.85;
  animation: auroraDrift 16s ease-in-out infinite;
}
@keyframes auroraDrift{
  0%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(18px,-10px,0)}
  100%{transform:translate3d(0,0,0)}
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:start;
}
.hero__copy{max-width: 62ch}
.hero__side{display:flex;flex-direction:column;gap:16px}

.cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:0 0 18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  font-weight:800;
  font-size:14px;
  transition: transform .14s ease, background .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn--primary{
  background: linear-gradient(135deg, rgba(84,240,209,.92), rgba(155,135,255,.36));
  border-color: rgba(255,255,255,.16);
  color:#07080b;
  box-shadow: 0 18px 60px rgba(84,240,209,.10);
}
.btn--ghost{background: rgba(255,255,255,.035)}
.btn--ghost:hover{border-color: rgba(255,255,255,.14)}

.meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:0 0 16px;
}

.pill{
  font-size:12px;
  color:rgba(238,240,247,.76);
  background: rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.10);
  padding:8px 10px;
  border-radius:999px;
}
.pill--solid{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}

.quote{
  margin-top:12px;
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.028);
}
.quote__line{font-weight:600; color:rgba(238,240,247,.90); line-height:1.7}
.quote__by{margin-top:6px; font-size:12px; color:rgba(238,240,247,.58)}

/* ===== CARDS / PANELS ===== */

.card, .panel{
  background: var(--glass);
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow: var(--shadow);
}

.card{padding:18px}
.panel{padding:18px;border-radius:18px;box-shadow:none;background: var(--glass2);}

.panel--deep{
  background: var(--glass);
  box-shadow: none;
}

.card--glow{position:relative}
.card--glow:before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(560px 260px at 20% 10%, rgba(84,240,209,.16), transparent 55%),
    radial-gradient(460px 240px at 85% 35%, rgba(155,135,255,.12), transparent 55%);
  filter: blur(14px);
  z-index:-1;
  border-radius:22px;
  opacity:.90;
}

.card__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px}
.card__title{font-weight:900}
.card__foot{margin-top:14px}
.hint{font-size:12px;color:rgba(238,240,247,.60)}

.chip{
  font-size:12px;
  color:rgba(238,240,247,.82);
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  padding:6px 10px;
  border-radius:999px;
}

.list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:rgba(238,240,247,.86);
}
.dot{
  width:8px;height:8px;border-radius:50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  margin-top:6px;flex:0 0 auto;
}

.miniCard{
  border-radius:18px;
  padding:16px 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.028);
}
.miniCard__title{font-weight:900;margin-bottom:6px}
.miniCard__text{margin:0;color:rgba(238,240,247,.78);line-height:1.75}

/* Hero stripe */
.hero__stripe{margin-top:20px}
.stripe{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.022);
}
.stripe__item{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
}
.stripe__k{font-size:12px;color:rgba(238,240,247,.60);font-weight:900;letter-spacing:.02em}
.stripe__v{margin-top:2px;font-size:12px;color:rgba(238,240,247,.86);font-weight:700}

/* ===== SECTIONS ===== */

.section{
  padding:78px 0;
  background: transparent;
}
.section[id]{scroll-margin-top: 88px;}

.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.grid2{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}

/* extra spacing between blocks */
.airy{margin-top:14px}

.panel h3{margin:0 0 10px;font-size:16px}
.panel p{margin:0;color:rgba(238,240,247,.82);line-height:1.75}

.bullets{
  margin:12px 0 0;
  padding-left:18px;
  color:rgba(238,240,247,.82);
  line-height:1.9;
}
.bullets b{color:rgba(238,240,247,.96)}

.note{
  margin-top:16px;
  padding:12px 14px;
  background: rgba(84,240,209,.06);
  border:1px solid rgba(84,240,209,.14);
  border-radius:14px;
  color:rgba(238,240,247,.86);
  line-height:1.75;
}

.banner{
  margin-top:22px;
  padding:18px 20px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.028);
}
.banner--alt{background: rgba(255,255,255,.022);}
.banner__title{font-weight:900;margin-bottom:6px}
.banner__text{color:rgba(238,240,247,.80);line-height:1.75}

.pillrow{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px}

/* Media blocks */
.mediaGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
  margin-top:14px;
}
.mediaItem{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.mediaItem__k{font-size:12px;color:rgba(238,240,247,.60);font-weight:900;letter-spacing:.02em}
.mediaItem__v{margin-top:4px;color:rgba(238,240,247,.84);line-height:1.7;font-weight:600}

/* Status */
.status{display:grid;gap:10px;margin-top:10px}
.status__row{
  display:flex;justify-content:space-between;align-items:center;
  padding:10px 12px;border-radius:14px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}
.ok{color:rgba(84,240,209,.92);font-weight:900}
.pending{color:rgba(238,240,247,.70);font-weight:800}

/* Footer */
.footer{
  padding:30px 0 54px;
  border-top:1px solid rgba(255,255,255,.06);
  background: transparent;
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}

/* ===== REVEAL ANIMATION ===== */
[data-reveal]{
  opacity:0;
  transform: translate3d(0, 10px, 0);
  transition: opacity .55s ease, transform .55s ease;
}
[data-reveal].is-in{
  opacity:1;
  transform: translate3d(0,0,0);
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr}
  .stripe{grid-template-columns:1fr}
  h1{font-size:46px}
}
@media (max-width: 520px){
  h1{font-size:38px}
  .brand__icon{width:32px;height:32px}
  .nav{display:none}
  .grid2,.grid3{grid-template-columns:1fr}
  .section{padding:64px 0}
}
/* =========================================================
   Son Of Earth — NEW GLOBAL BACKGROUND (Tech • Modern • Calm • Premium)
   Fixes: background not covering full page + bottom turning flat black.
   HOW TO USE:
   - Paste this block at the VERY END of styles.css (after everything else).
   - Remove/disable any older background patches you added previously.
   ========================================================= */

/* Use the HTML element as the true infinite canvas */
html{
  min-height:100%;
  background: var(--bg);
  position:relative; /* anchor pseudo element */
}

/* Cinematic, calm "aurora" layer that stays consistent through the whole scroll */
html::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1; /* behind everything */
  opacity:.95;
  background:
    /* soft cyan luma cloud */
    radial-gradient(900px 600px at 18% 14%, rgba(84,240,209,.12), transparent 62%),
    /* soft violet cloud */
    radial-gradient(860px 560px at 82% 16%, rgba(155,135,255,.10), transparent 64%),
    /* bottom lift so it never goes "pure black" */
    radial-gradient(1200px 900px at 50% 92%, rgba(84,240,209,.07), transparent 70%),
    radial-gradient(1200px 900px at 55% 98%, rgba(155,135,255,.06), transparent 72%),
    /* long vertical base (no hard stop) */
    linear-gradient(180deg,
      var(--bg) 0%,
      rgba(6,7,11,1) 38%,
      rgba(5,6,10,1) 72%,
      rgba(7,8,13,1) 100%
    );
  filter: saturate(112%) contrast(104%);
}

/* Let the html canvas show through; avoid "segment painting" */
body{
  min-height:100vh;
  background: transparent !important;
  background-color: transparent !important;
  background-attachment: scroll !important;
}

/* Prevent large wrappers from painting a separate background */
main, section, .section, .hero, .footer{
  background: transparent !important;
}

/* Footer: keep a premium finish without a band */
.footer{
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.014)) !important;
}
