:root {
  --bg: #0b0d14;
  --bg-accent: #101524;
  --surface: rgba(255, 255, 255, 0.06);
  --card: rgba(255, 255, 255, 0.08);
  --text: #e7ecf5;
  --muted: #9aa4b5;
  --primary: #7cffc7;
  --primary-strong: #57e0a4;
  --accent: #78a0ff;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --radius-sm: 12px;
  --glow: 0 0 80px rgba(124, 255, 199, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  background: radial-gradient(120% 120% at 20% 20%, rgba(124, 255, 199, 0.08), transparent 45%),
    radial-gradient(100% 100% at 80% 0%, rgba(120, 160, 255, 0.12), transparent 40%),
    linear-gradient(160deg, #0c0f18 0%, #080910 60%, #05060c 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

.nav {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: rgba(8, 9, 16, 0.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.menu {
  display: flex;
  gap: 24px;
  font-weight: 500;
}

.menu a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.menu a:hover {
  color: var(--text);
}

.cta {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.cta:hover {
  border-color: var(--primary);
  box-shadow: var(--glow);
}

main {
  padding: 40px 6vw 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.3);
  background: linear-gradient(120deg, rgba(124, 255, 199, 0.08), rgba(120, 160, 255, 0.1) 30%, rgba(8, 9, 16, 0.9));
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  margin: 12px 0 16px;
}

.hero .lede {
  color: var(--muted);
  max-width: 620px;
}

.eyebrow,
.label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.hero__card {
  background: var(--card);
  border-radius: calc(var(--radius) * 0.9);
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.logo-placeholder {
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 255, 199, 0.12);
  color: var(--primary);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
}

dl {
  margin: 12px 0 0;
  display: grid;
  gap: 12px;
}

.row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  align-items: center;
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
}

.panel {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.panel h2 {
  margin: 12px 0;
  font-size: clamp(24px, 3vw, 36px);
}

.panel p {
  color: var(--muted);
  line-height: 1.6;
}

.panel__content {
  display: grid;
  gap: 16px;
}

.grid.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.stat__number {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
}

.stat__label {
  margin: 0;
}

.panel__visual {
  justify-self: end;
}

.glass {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.note {
  color: var(--muted);
  margin-top: 12px;
}

.panel.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
}

.credentials {
  background: var(--bg-accent);
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.credential {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.muted {
  color: var(--muted);
}

.value {
  margin: 4px 0 0;
  font-weight: 600;
  color: var(--text);
}

.contact {
  margin-top: 48px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(124, 255, 199, 0.06), rgba(120, 160, 255, 0.08), rgba(11, 13, 20, 0.9));
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  align-items: start;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.contact-form {
  display: grid;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: var(--radius-sm);
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.contact-form textarea,
.contact-form input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  padding: 10px;
  font-size: 15px;
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.form-status {
  min-height: 18px;
  color: var(--primary);
  font-weight: 600;
}

.footer {
  padding: 24px 6vw 32px;
  border-top: 1px solid var(--border);
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  align-items: center;
}

.footer__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button.primary {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #08101d;
  box-shadow: var(--glow);
}

.button.primary:hover {
  transform: translateY(-1px);
}

.button.ghost {
  border-color: var(--border);
  color: var(--text);
}

.button.ghost:hover {
  border-color: var(--primary);
}

.button.full {
  width: 100%;
}

[data-animate] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav {
    gap: 12px;
  }
  .menu {
    gap: 14px;
  }
  .hero {
    padding: 24px;
  }
}

@media (max-width: 680px) {
  .nav {
    flex-wrap: wrap;
  }
  .menu {
    width: 100%;
    justify-content: space-between;
  }
}
