@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --bg: #07110d;
  --bg-soft: #0a1711;
  --panel: rgba(255,255,255,0.045);
  --panel-border: rgba(255,255,255,0.09);
  --text: #f4f7f5;
  --muted: #a8b7af;
  --green: #75e59b;
  --green-2: #b5f6c9;
  --green-dark: #173e28;
  --line: rgba(255,255,255,0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 5%, rgba(61, 136, 83, 0.15), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(44, 101, 66, 0.12), transparent 30%),
    var(--bg);
  font-family: "DM Sans", system-ui, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 50;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 22px auto 0;
  padding: 14px 16px;
  border: 1px solid var(--panel-border);
  background: rgba(7,17,13,.72);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 18px;
  z-index: 20;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-name {
  font: 800 20px/1 "Manrope", sans-serif;
  letter-spacing: -0.7px;
}

.brand-name span {
  color: var(--green);
}

.brand-mark {
  width: 34px;
  height: 34px;
  position: relative;
  display: inline-block;
}

.brand-mark .ear {
  width: 14px;
  height: 14px;
  background: #eaf4ed;
  border-radius: 50%;
  position: absolute;
  top: 2px;
}
.ear-left { left: 2px; }
.ear-right { right: 2px; }

.brand-mark .face {
  width: 30px;
  height: 27px;
  border-radius: 48% 48% 45% 45%;
  background: #f5faf7;
  position: absolute;
  left: 2px;
  bottom: 0;
}

.eye {
  position: absolute;
  width: 8px;
  height: 10px;
  border-radius: 50%;
  background: #122019;
  top: 8px;
  transform: rotate(18deg);
}
.eye-left { left: 6px; }
.eye-right { right: 6px; transform: rotate(-18deg); }

.nose {
  position: absolute;
  width: 5px;
  height: 4px;
  border-radius: 50%;
  background: #122019;
  left: 50%;
  top: 17px;
  transform: translateX(-50%);
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: #c7d2cc;
  font-size: 14px;
  transition: .2s ease;
}

.nav a:hover {
  color: var(--green);
}

.header-badge {
  border: 1px solid rgba(117,229,155,.25);
  background: rgba(117,229,155,.08);
  color: #d9fbe4;
  font-size: 13px;
  padding: 9px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot, .status-light {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(117,229,155,.1);
}

main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 40px;
  position: relative;
  padding: 70px 0 50px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow, .section-kicker {
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border: 1px solid rgba(117,229,155,.16);
  background: rgba(117,229,155,.05);
  border-radius: 999px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

h1, h2, h3 {
  font-family: "Manrope", sans-serif;
}

h1 {
  margin: 24px 0 20px;
  font-size: clamp(54px, 7vw, 92px);
  line-height: .98;
  letter-spacing: -4px;
  max-width: 820px;
}

.gradient-text {
  display: block;
  background: linear-gradient(90deg, var(--green), var(--green-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  padding: 13px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #08120d;
  background: var(--green);
}

.btn-secondary {
  border: 1px solid var(--panel-border);
  background: rgba(255,255,255,.035);
}

.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta strong {
  font-size: 14px;
}

.hero-meta span {
  color: #82928a;
  font-size: 12px;
}

.hero-visual {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
  pointer-events: none;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  right: -80px;
  top: 80px;
  background: #52cc78;
}

.hero-glow-two {
  width: 240px;
  height: 240px;
  right: 220px;
  bottom: 20px;
  background: #1f7140;
}

.panda-card {
  width: min(420px, 90%);
  aspect-ratio: .92;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border: 1px solid var(--panel-border);
  border-radius: 34px;
  position: relative;
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 30px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
}

.panda-large {
  width: 190px;
  height: 180px;
  position: relative;
}

.panda-ear {
  width: 68px;
  height: 68px;
  position: absolute;
  top: 4px;
  background: #101b16;
  border-radius: 50%;
}
.panda-ear-left { left: 6px; }
.panda-ear-right { right: 6px; }

.panda-head {
  width: 170px;
  height: 145px;
  position: absolute;
  left: 10px;
  bottom: 0;
  background: #edf5f0;
  border-radius: 46% 46% 42% 42%;
  box-shadow: inset 0 -14px 24px rgba(0,0,0,.04);
}

.panda-eye {
  width: 42px;
  height: 54px;
  background: #132019;
  position: absolute;
  top: 43px;
  border-radius: 50%;
}
.panda-eye::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  top: 20px;
  left: 17px;
}
.panda-eye-left { left: 27px; transform: rotate(18deg); }
.panda-eye-right { right: 27px; transform: rotate(-18deg); }

.panda-nose {
  position: absolute;
  width: 18px;
  height: 12px;
  background: #132019;
  border-radius: 55%;
  left: 50%;
  top: 88px;
  transform: translateX(-50%);
}

.panda-mouth {
  position: absolute;
  width: 24px;
  height: 11px;
  border-bottom: 2px solid #132019;
  border-radius: 50%;
  left: 50%;
  top: 101px;
  transform: translateX(-50%);
}

.server-lines {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 74px;
  display: flex;
  gap: 6px;
}

.server-lines span {
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(117,229,155,.6), transparent);
}

.mini-status {
  position: absolute;
  right: 24px;
  bottom: 22px;
  padding: 8px 10px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  color: #dce8e1;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(117,229,155,.4); }
  50% { box-shadow: 0 0 0 7px rgba(117,229,155,0); }
}

.orbital-ring {
  position: absolute;
  border: 1px solid rgba(117,229,155,.12);
  border-radius: 50%;
}
.ring-one {
  width: 510px;
  height: 510px;
}
.ring-two {
  width: 610px;
  height: 610px;
  border-style: dashed;
  opacity: .5;
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  color: #7f9187;
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.section {
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2,
.status-copy h2,
.about h2 {
  margin: 10px 0 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -2.2px;
}

.section-heading p,
.status-copy p,
.about p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 290px;
  position: relative;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  transition: transform .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(117,229,155,.22);
}

.icon-box {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(117,229,155,.09);
  color: var(--green);
  border: 1px solid rgba(117,229,155,.12);
  margin-bottom: 45px;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -.7px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.card-label {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #75877d;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.status-section {
  padding: 30px 0 110px;
}

.status-panel {
  padding: 44px;
  border-radius: 26px;
  border: 1px solid var(--panel-border);
  background:
    linear-gradient(135deg, rgba(117,229,155,.055), rgba(255,255,255,.02));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.status-item {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-light {
  flex: 0 0 auto;
}

.status-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.status-item strong {
  font-size: 13px;
}

.status-item span:last-child {
  color: #809188;
  font-size: 11px;
}

.about {
  text-align: center;
  border-top: 1px solid var(--line);
}

.about p {
  margin: 18px auto 0;
  font-size: 17px;
}

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 42px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  color: #7f9187;
  font-size: 12px;
}

.footer-brand {
  justify-self: start;
}

footer > p:nth-child(2) {
  justify-self: center;
}

.copyright {
  justify-self: end;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 80px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .section-heading,
  .status-panel {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .status-grid {
    grid-template-columns: 1fr 1fr;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  footer > p:nth-child(2),
  .copyright {
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .site-header,
  main,
  footer {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    top: 10px;
    margin-top: 10px;
  }

  .header-badge {
    display: none;
  }

  h1 {
    font-size: 52px;
    letter-spacing: -2.8px;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 40px;
  }

  .hero-meta {
    gap: 15px;
    flex-wrap: wrap;
  }

  .hero-visual {
    min-height: 390px;
  }

  .panda-card {
    width: 320px;
  }

  .ring-one {
    width: 360px;
    height: 360px;
  }

  .ring-two {
    width: 420px;
    height: 420px;
  }

  .section {
    padding: 80px 0;
  }

  .status-panel {
    padding: 26px;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }
}
