:root {
  --bg: #08110b;
  --bg-soft: #0f1f15;
  --panel: rgba(15, 31, 21, 0.78);
  --text: #f8fffb;
  --muted: #c8ded0;
  --accent: #0e9a32;
  --accent-2: #16bf43;
  --ok: #98ffb0;
  --border: rgba(186, 246, 200, 0.24);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, #137a2e 0%, transparent 38%),
    radial-gradient(circle at 90% 18%, #0d3d1d 0%, transparent 36%),
    linear-gradient(140deg, #050906 0%, #0f1f15 45%, #08110b 100%);
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
  background-size: 3px 3px;
}

.topbar {
  width: min(1120px, 92vw);
  margin: 1.2rem auto 0;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  background: rgba(8, 17, 11, 0.55);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.brand-name {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.6rem;
}

.status-pill {
  font-size: 0.86rem;
  font-weight: 700;
  color: #ecfff2;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(14, 154, 50, 0.34), rgba(22, 191, 67, 0.2));
  border: 1px solid rgba(133, 239, 159, 0.48);
}

.hero {
  width: min(1120px, 92vw);
  margin: 2rem auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
}

.hero-copy,
.hero-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(1.3rem, 2.4vw, 2rem);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-logo {
  width: clamp(120px, 20vw, 165px);
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #ffffff;
  padding: 0.3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  margin-bottom: 1rem;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.22em;
  font-weight: 700;
  font-size: 0.8rem;
}

.hero-copy h1 {
  margin: 0.35rem 0 0;
  font-size: clamp(2rem, 5vw, 4.3rem);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.lead {
  margin: 1rem 0 0;
  color: #e7f8ed;
  max-width: 62ch;
  line-height: 1.5;
}

.actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn-primary {
  border: 0;
  text-decoration: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  font-weight: 800;
  font-family: inherit;
  transition: transform 220ms ease, filter 220ms ease, background-color 220ms ease;
}

.btn-primary {
  background: linear-gradient(95deg, var(--accent), var(--accent-2));
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.hero-card h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: 0.05em;
}

.hero-card p {
  margin: 0.6rem 0 0;
  color: #e8f8ef;
  line-height: 1.5;
}

.contact-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
  color: #d3f3df;
}

.footer {
  text-align: center;
  color: #d5f6e1;
  padding: 0 1rem 2rem;
  font-size: 0.95rem;
}

.hero-copy,
.hero-card,
.topbar {
  animation: rise 700ms ease both;
}

.hero-card {
  animation-delay: 110ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .topbar {
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
}
