:root {
  color-scheme: dark;
  --deep: #031312;
  --paper: #ecfffa;
  --ramarro: #66ff34;
  --aqua: #68e9f2;
  --stone: #f2e7d6;
  --shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  background:
    radial-gradient(1200px 700px at 65% 15%, rgba(104, 233, 242, 0.3), transparent 60%),
    radial-gradient(900px 600px at 20% 25%, rgba(102, 255, 52, 0.2), transparent 55%),
    linear-gradient(180deg, #06201f 0%, #041312 60%, #030c0b 100%);
  color: var(--paper);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.9;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  overflow: hidden;
}

.container {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(3, 12, 11, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand img {
  width: 120px;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 12px;
}

.hero {
  padding: 70px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 12px;
  font-weight: 700;
  color: var(--ramarro);
  margin-bottom: 14px;
}

.hero-copy h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.lead {
  font-size: 17px;
  line-height: 1.65;
  opacity: 0.88;
  max-width: 50ch;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.btn.primary {
  border: none;
  color: var(--deep);
  background: linear-gradient(135deg, rgba(102, 255, 52, 0.95), rgba(104, 233, 242, 0.9));
  box-shadow: var(--shadow);
}

.btn.ghost {
  color: var(--paper);
}

.micro {
  font-size: 12px;
  opacity: 0.75;
  margin-top: 14px;
}

.hero-visual {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.label-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.label-card img {
  width: min(420px, 80vw);
}

.logo-mark {
  width: 160px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.4));
}

.section {
  padding: 36px 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 12px;
  color: var(--aqua);
  font-weight: 700;
  margin-bottom: 12px;
}

.section h2 {
  font-size: 26px;
  letter-spacing: -0.01em;
}

.section p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.88;
}

.callout {
  background: linear-gradient(135deg, rgba(102, 255, 52, 0.1), rgba(104, 233, 242, 0.1));
}

.callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer {
  padding: 36px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-logo {
  width: 140px;
  margin-bottom: 10px;
}

.tiny {
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.75;
}

.tiny.right {
  text-align: right;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .callout-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .tiny.right {
    text-align: left;
  }
}
