:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: #111827;
  --border: rgba(255, 255, 255, 0.10);
  --text: #ffffff;
  --muted: #cbd5e1;
  --muted-2: #94a3b8;
  --cyan: #22d3ee;
  --indigo: #6366f1;
  --purple: #a78bfa;
  --max: 1200px;
  --radius: 24px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.section { padding: 80px 0; }

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 15% 15%, rgba(99, 102, 241, 0.22), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(34, 211, 238, 0.18), transparent 26%),
    linear-gradient(135deg, #020617 0%, #0f172a 45%, #172554 100%);
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}

.glow.one {
  width: 280px;
  height: 280px;
  left: -60px;
  top: -60px;
  background: var(--indigo);
}

.glow.two {
  width: 300px;
  height: 300px;
  right: -60px;
  top: 60px;
  background: var(--cyan);
}

header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.logo-shell {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  box-shadow: 0 0 30px rgba(99,102,241,0.22);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.logo-shell::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 28px;
  background: radial-gradient(circle at center, rgba(99,102,241,0.28), transparent 70%);
  filter: blur(10px);
  z-index: -1;
}

.wordmark-box {
  padding: 10px 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(99,102,241,0.08);
}

.wordmark-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.wordmark-title span { color: #c4b5fd; }

.wordmark-sub {
  margin-top: 4px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted-2);
}

.brand-meta {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  color: #e2e8f0;
}

nav a:hover { color: #67e8f9; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  padding: 72px 0 96px;
}

.eyebrow {
  display: inline-flex;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.1);
  color: #a5f3fc;
  font-size: 0.92rem;
  margin-bottom: 20px;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

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

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 18px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--cyan);
  color: #082f49;
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.18);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  background: transparent;
}

.btn:hover { transform: translateY(-1px); }
.btn-secondary:hover { background: rgba(255,255,255,0.05); }

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

.card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.card .icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #e2e8f0;
}

.section-label {
  margin: 0;
  color: #67e8f9;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

h2 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-copy {
  max-width: 760px;
  margin-top: 16px;
  color: var(--muted);
}

.services-grid,
.industries-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

.services-grid { grid-template-columns: repeat(4, 1fr); }
.industries-grid { grid-template-columns: repeat(3, 1fr); }

.service-card,
.industry-card {
  border-radius: 28px;
  border: 1px solid var(--border);
  background: #0f172a;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.35);
}

.service-card .service-icon {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.service-card h3,
.industry-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.service-card p,
.industry-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.about-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.75);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mini-card {
  border-radius: 26px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  padding: 24px;
}

.mini-card.full { grid-column: 1 / -1; }

.mini-card .label {
  color: var(--muted-2);
  font-size: 0.88rem;
}

.mini-card p:last-child,
.mini-card li { color: #e2e8f0; }

.why-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}

.why-list li::before {
  content: "• ";
  color: #67e8f9;
}

.contact-section {
  border-top: 1px solid var(--border);
  background: linear-gradient(135deg, #0f172a, #020617);
}

.contact-card {
  border-radius: 28px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  padding: 32px;
  backdrop-filter: blur(8px);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.contact-label {
  font-size: 0.88rem;
  color: var(--muted-2);
  margin-bottom: 8px;
}

.contact-value {
  color: white;
  font-weight: 600;
  word-break: break-word;
}

.contact-value a:hover { color: #67e8f9; }

.website-chip {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  background: rgba(34, 211, 238, 0.1);
  color: #a5f3fc;
  font-size: 0.95rem;
}

.website-chip strong { color: white; }

footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  color: var(--muted-2);
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  flex-wrap: wrap;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .services-grid,
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .mini-grid,
  .contact-info,
  .highlight-grid,
  .why-list,
  .services-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .brand {
    align-items: flex-start;
  }

  .wordmark-title {
    white-space: normal;
    font-size: 1rem;
  }

  .hero-grid { padding: 48px 0 72px; }
  .section { padding: 64px 0; }
}
