/* /assets/css/style.css */
:root{
  --bg: #070a12;
  --panel: rgba(255,255,255,.08);
  --panel2: rgba(255,255,255,.12);
  --text: #eaf2ff;
  --muted: rgba(234,242,255,.72);
  --shadow: 0 22px 60px rgba(0,0,0,.45);
  --ring: rgba(14,165,233,.55);

  --brand1: #0ea5e9;
  --brand2: #38bdf8;
  --brand3: #22c55e;

  --radius-xl: 26px;
  --radius-lg: 18px;

  --max: 1200px;
}

/* Base */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(14,165,233,.28), transparent 55%),
    radial-gradient(900px 700px at 85% 15%, rgba(34,197,94,.20), transparent 55%),
    radial-gradient(900px 700px at 60% 90%, rgba(56,189,248,.20), transparent 55%),
    var(--bg);
  overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }

.container{
  width: min(var(--max), calc(100% - 48px));
  margin-inline:auto;
}

@media (prefers-reduced-motion: no-preference){
  html{ scroll-behavior:smooth; }
}

/* Header (glass sticky) */
header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(10,14,24,.72), rgba(10,14,24,.35));
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 0;
  gap: 16px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 14px;
  min-width: 220px;
}
.brand img{
  height:52px;
  width:52px;
  border-radius:50%;
  object-fit:cover;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.brand strong{
  font-size: 20px;
  letter-spacing: .2px;
  line-height: 1.1;
}
.brand strong span{
  display:block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
}
.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand1), var(--brand2));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 14px 34px rgba(14,165,233,.22);
  font-weight: 800;
  font-size: 13px;
  transform: translateZ(0);
  transition: transform .25s ease, filter .25s ease;
}
.cta:hover{ transform: translateY(-2px); filter: brightness(1.05); }
.cta:focus-visible{ outline: 3px solid var(--ring); outline-offset: 3px; }

/* Hero */
.hero{
  position: relative;
  padding: 72px 0 60px;
  min-height: calc(100vh - 78px);
  display:grid;
  place-items:center;
  overflow:hidden;
}

/* Background blobs */
.blob{
  position:absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(30px);
  opacity:.55;
  mix-blend-mode: screen;
  pointer-events:none;
}
.blob.one{
  left:-160px; top:120px;
  background: radial-gradient(circle at 30% 30%, rgba(14,165,233,.9), rgba(14,165,233,.15) 55%, transparent 70%);
  animation: float1 10s ease-in-out infinite;
}
.blob.two{
  right:-180px; top:80px;
  background: radial-gradient(circle at 30% 30%, rgba(34,197,94,.8), rgba(34,197,94,.12) 55%, transparent 70%);
  animation: float2 12s ease-in-out infinite;
}
.blob.three{
  left:20%; bottom:-220px;
  background: radial-gradient(circle at 30% 30%, rgba(56,189,248,.85), rgba(56,189,248,.10) 55%, transparent 70%);
  animation: float3 14s ease-in-out infinite;
}
@keyframes float1{ 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(22px,-18px) scale(1.03);} }
@keyframes float2{ 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(-18px,14px) scale(1.04);} }
@keyframes float3{ 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(14px,-22px) scale(1.02);} }

.hero-card{
  position: relative;
  width: 100%;
  padding: 44px 26px 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 220px at 20% 0%, rgba(14,165,233,.26), transparent 55%),
    radial-gradient(900px 220px at 90% 20%, rgba(34,197,94,.18), transparent 60%);
  opacity:.9;
  pointer-events:none;
}
.hero-inner{
  position: relative;
  text-align:center;
  padding: 8px 10px;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .3px;
}
.dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand1), var(--brand2));
  box-shadow: 0 0 0 6px rgba(14,165,233,.16);
}

h1{
  margin: 18px 0 10px;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.9px;
  font-weight: 950;
}
.subtitle{
  margin: 0 auto;
  max-width: 780px;
  font-size: clamp(15px, 1.6vw, 20px);
  color: var(--muted);
  line-height: 1.6;
}

.meta{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  justify-content:center;
  flex-wrap: wrap;
}

/* Cards */
.cards{
  margin-top: 34px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.card{
  position: relative;
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 14px 38px rgba(0,0,0,.30);
  overflow:hidden;

  transform: translateY(8px);
  opacity: 0;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, opacity .35s ease;
  will-change: transform;
}
.card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(600px 220px at 15% 10%, rgba(255,255,255,.12), transparent 55%);
  opacity:.8;
  pointer-events:none;
}
.card h2{
  position: relative;
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.2px;
}
.card p{
  position: relative;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 600;
  font-size: 14px;
}

.card.clickable{ cursor:pointer; }
.card.clickable:hover{
  transform: translateY(-6px);
  border-color: rgba(56,189,248,.35);
  box-shadow: 0 18px 52px rgba(0,0,0,.38);
}
.card.clickable:focus-visible{
  outline: 3px solid var(--ring);
  outline-offset: 3px;
}

.card.disabled{
  opacity: .55;
  filter: grayscale(.12);
  cursor: not-allowed;
}
.card.disabled:hover{
  transform: translateY(0);
  box-shadow: 0 14px 38px rgba(0,0,0,.30);
  border-color: rgba(255,255,255,.11);
}

/* Badges */
.badge{
  position: relative;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2px;
  border: 1px solid rgba(255,255,255,.12);
  width: fit-content;
}
.badge.live{
  color: rgba(234,242,255,.95);
  background: linear-gradient(135deg, rgba(34,197,94,.30), rgba(34,197,94,.14));
}
.badge.live::before{
  content:"";
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--brand3);
  box-shadow: 0 0 0 6px rgba(34,197,94,.14);
}
.badge.soon{
  color: rgba(234,242,255,.90);
  background: linear-gradient(135deg, rgba(245,158,11,.28), rgba(245,158,11,.10));
}
.badge.soon::before{
  content:"";
  width: 8px; height: 8px; border-radius: 999px;
  background: #f59e0b;
  box-shadow: 0 0 0 6px rgba(245,158,11,.14);
}

/* Scroll reveal */
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer{
  border-top: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(to top, rgba(0,0,0,.35), rgba(0,0,0,0));
  padding: 34px 0;
  color: rgba(234,242,255,.70);
  text-align:center;
}
footer strong{ color: rgba(234,242,255,.92); }

.footer-links{
  margin: 12px 0 0;
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
  font-weight: 800;
  color: rgba(234,242,255,.75);
}
.footer-link{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(234,242,255,.35);
  padding-bottom: 2px;
  transition: transform .2s ease, border-color .2s ease, color .2s ease, filter .2s ease;
}
.footer-link:hover{
  transform: translateY(-1px);
  border-color: rgba(56,189,248,.6);
  color: rgba(234,242,255,.92);
  filter: brightness(1.05);
}
.footer-link:focus-visible{
  outline: 3px solid var(--ring);
  outline-offset: 3px;
  border-bottom-color: transparent;
}
.footer-sep{ opacity:.6; }

/* Responsive */
@media (max-width: 520px){
  .container{ width: calc(100% - 28px); }
  .hero-card{ padding: 34px 16px 22px; }
  .brand{ min-width: auto; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .blob{ animation:none !important; }
  .card, .cta, .footer-link{ transition:none !important; }
  html{ scroll-behavior:auto; }
}
