:root {
  --green: #00ffae;
  --brand: #007664;
  --deep: #020806;
  --card: rgba(255, 255, 255, .08);
  --line: rgba(255, 255, 255, .14);
  --text-soft: rgba(255, 255, 255, .72);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: Arial, sans-serif;
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 255, 174, .12), transparent 26%),
    radial-gradient(circle at 80% 30%, rgba(0, 118, 100, .22), transparent 30%),
    linear-gradient(145deg, #020806, #071713 55%, #03100d);
  padding: 28px 16px;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(95px);
  opacity: .28;
  z-index: 0;
  pointer-events: none;
  animation: floatLight 14s ease-in-out infinite alternate;
}

body::before {
  background: var(--green);
  top: -120px;
  left: -120px;
}

body::after {
  background: var(--brand);
  right: -120px;
  bottom: -120px;
  animation-delay: 2s;
}

#ambientCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.page {
  width: 100%;
  max-width: 470px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero {
  text-align: center;
  padding: 28px 22px 24px;
  border-radius: 32px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  margin-bottom: 16px;
}

.logo-ring {
  width: 118px;
  height: 118px;
  margin: 0 auto 16px;
  padding: 5px;
  border-radius: 50%;
  background: conic-gradient(var(--green), #ffffff, var(--brand), var(--green));
  box-shadow: 0 0 45px rgba(0, 255, 174, .34);
  animation: breathe 3s ease-in-out infinite;
}

.logo-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

h1 {
  font-size: 31px;
  letter-spacing: -1px;
  margin-bottom: 7px;
}

.tagline {
  color: var(--text-soft);
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 1.5;
}

.stats{

    display:flex;
    justify-content:space-between;
    align-items:center;

    margin:22px 0 8px;

    padding:18px 8px;

    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);

}

.stat{

    flex:1;

    background:none;

    border:none;

    text-align:center;

    color:rgba(255,255,255,.62);

}

.stat:not(:last-child){

    border-right:1px solid rgba(255,255,255,.08);

}

.stat strong{

    display:block;

    color:#9fffe0;

    font-size:24px;

    font-weight:800;

    margin-bottom:6px;

}

.stat small{

    display:block;

    margin-top:4px;

    font-size:12px;

    color:rgba(255,255,255,.55);

}

.socials {
  display: flex;
  justify-content: center;
  gap: 11px;
  flex-wrap: wrap;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .13);
  transition: .25s;
}

.socials a:hover {
  transform: translateY(-4px);
  background: rgba(0, 255, 174, .15);
  box-shadow: 0 14px 32px rgba(0, 255, 174, .18);
}

.socials img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.banner {
  display: block;
  overflow: hidden;
  border-radius: 28px;
  margin-bottom: 14px;
  text-decoration: none;
  color: #fff;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .30);
  transition: .28s;
}

.banner:hover,
.link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 90px rgba(0, 255, 174, .18);
}

.banner img {
  width: 100%;
  display: block;
}

.banner-body {
  padding: 16px 18px 18px;
  background: rgba(6, 17, 15, .92);
}

.eyebrow {
  display: block;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.banner strong {
  font-size: 17px;
  line-height: 1.3;
  display: block;
}

.links { display: grid; gap: 12px; }

.link-card {
  display: grid;
  grid-template-columns: 50px 1fr 22px;
  gap: 12px;
  align-items: center;
  padding: 15px;
  min-height: 78px;
  border-radius: 24px;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: .25s;
}

.icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .10);
  font-size: 23px;
}

.icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.text strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.text small {
  display: block;
  color: rgba(255, 255, 255, .61);
  font-size: 12px;
  line-height: 1.35;
}

.arrow { color: var(--green); font-size: 28px; }

.footer { margin-top: 28px; text-align: center; }

.footer a {
  display: inline-block;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  transition: .25s;
}

.footer a:hover {
  color: var(--green);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: revealUp .7s ease forwards;
}

.reveal:nth-of-type(2) { animation-delay: .08s; }
.link-card:nth-child(1) { animation-delay: .14s; }
.link-card:nth-child(2) { animation-delay: .20s; }
.link-card:nth-child(3) { animation-delay: .26s; }

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}

@keyframes floatLight {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 80px) scale(1.18); }
}

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 430px) {
  body { padding: 20px 12px; }
  h1 { font-size: 28px; }
  .hero { border-radius: 28px; }
  .stats { grid-template-columns: 1fr; }
  .stat { min-height: auto; }
}
