:root {
  color-scheme: dark;
  font-family: "Inter", "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg-primary: #03030a;
  --bg-panel: rgba(9, 9, 18, 0.88);
  --gradient: radial-gradient(circle at top, rgba(57, 255, 20, 0.25), transparent 45%), radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.3), transparent 50%), linear-gradient(140deg, #050008, #02010a 70%, #05000f);
  --text-primary: #f8fbff;
  --text-muted: rgba(248, 251, 255, 0.7);
  --accent: #39ff14;
  --accent-soft: rgba(57, 255, 20, 0.2);
  --border: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --max-width: 1100px;
}

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

body {
  margin: 0;
  min-height: 100vh;
  background: var(--gradient);
  color: var(--text-primary);
  font-family: inherit;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3Cfilter%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
}

.wrap {
  width: min(var(--max-width), 94vw);
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 0 1rem;
  position: sticky;
  top: 0;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(3, 3, 10, 0.85), rgba(3, 3, 10, 0));
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(57, 255, 20, 0.45);
  background: radial-gradient(circle, rgba(57, 255, 20, 0.35), transparent);
  display: grid;
  place-items: center;
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.35), inset 0 0 8px rgba(57, 255, 20, 0.25);
}

nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

nav a {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

nav a:hover,
nav a:focus-visible,
nav a[aria-current="page"] {
  color: var(--text-primary);
  border-color: var(--accent);
}

.cta-btn {
  background: linear-gradient(120deg, var(--accent), #00f5ff);
  color: #010104;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(57, 255, 20, 0.35);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 245, 255, 0.35);
}

.hero {
  display: grid;
  gap: 2.2rem;
  padding: 3rem 0 4rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin: 0;
}

.hero p {
  color: var(--text-muted);
  max-width: 640px;
  font-size: 1.1rem;
}

.hero-card {
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 2rem;
  background: var(--bg-panel);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

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

.metric {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.01);
}

.metric strong {
  font-size: 2rem;
  display: block;
}

.panel-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 2rem;
}

.panel {
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(6, 10, 20, 0.9), rgba(6, 8, 16, 0.65));
}

.panel h3 {
  margin-top: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.panel p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(57, 255, 20, 0.12);
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.section {
  margin: 3.5rem 0;
}

.section header {
  position: static;
  backdrop-filter: none;
  background: transparent;
  padding: 0 0 1.5rem;
}

.section h2 {
  margin: 0;
  font-size: 1.8rem;
}

.section p {
  color: var(--text-muted);
}

.grid-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-card {
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2rem;
  background: rgba(4, 4, 12, 0.85);
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 1rem;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

input,
textarea {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text-primary);
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-meta {
  display: grid;
  gap: 1rem;
}

.meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-left: 2px solid var(--accent-soft);
  padding-left: 1rem;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0 3rem;
  margin-top: 3rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.service-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 1.75rem;
  background: rgba(6, 8, 16, 0.78);
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 0 0 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.service-card strong {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.timeline {
  border-left: 2px solid rgba(57, 255, 20, 0.25);
  padding-left: 1.25rem;
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg-primary);
  position: absolute;
  left: -1.84rem;
  top: 0.4rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.stat-block {
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
}

.stat-block strong {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.35rem;
}

.team-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.bio-card {
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 1.5rem;
  background: rgba(6, 8, 16, 0.78);
}

.bio-card strong {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.25rem;
}

.bio-card span {
  display: block;
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

@media (max-width: 720px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero-card {
    padding: 1.5rem;
  }
}
