:root {
  --night: #0a0c10;
  --steel: #141820;
  --ember: #d59b3a;
  --ember-soft: #f4c36b;
  --mist: #c9d2df;
  --white: #f7f8fb;
  --shadow: rgba(5, 7, 10, 0.6);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Rajdhani", sans-serif;
  background: radial-gradient(circle at top, #1b2230 0%, #0b0f15 45%, #080a0f 100%);
  color: var(--white);
  min-height: 100vh;
  line-height: 1.6;
}

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

.grain {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.15'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  padding: 3rem 6vw 3rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.logo {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.nav {
  display: flex;
  gap: 2rem;
  color: var(--mist);
}

.nav a {
  position: relative;
  padding-bottom: 0.35rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--ember);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2.6rem, 3.6vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: var(--ember-soft);
  margin-bottom: 1.2rem;
}

.subhead {
  color: var(--mist);
  max-width: 35rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
  flex-wrap: wrap;
}

.button {
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: linear-gradient(135deg, #f4c36b 0%, #c67c21 100%);
  color: #1d1406;
  box-shadow: 0 12px 28px rgba(198, 124, 33, 0.35);
}

.button.ghost {
  border: 1px solid rgba(244, 195, 107, 0.5);
  color: var(--ember-soft);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(5, 7, 10, 0.4);
}

.fineprint {
  font-size: 0.75rem;
  color: rgba(201, 210, 223, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-panel {
  display: grid;
  gap: 1.5rem;
}

.panel-card {
  background: linear-gradient(135deg, rgba(20, 24, 32, 0.95), rgba(10, 12, 16, 0.6));
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px var(--shadow);
  backdrop-filter: blur(8px);
}

.panel-card.outline {
  border: 1px solid rgba(213, 155, 58, 0.3);
  background: rgba(10, 12, 16, 0.4);
}

.panel-label {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.65rem;
  color: var(--ember-soft);
}

.panel-card h2 {
  margin: 1rem 0 0.8rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.7rem;
}

.panel-card ul {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.panel-card li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--mist);
}

.panel-card li::before {
  content: "◆";
  color: var(--ember);
  position: absolute;
  left: 0;
}

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

.cap-card {
  padding: 1.8rem;
  border-radius: 1.25rem;
  background: rgba(15, 18, 25, 0.7);
  border: 1px solid rgba(201, 210, 223, 0.08);
  box-shadow: 0 18px 30px rgba(5, 7, 10, 0.35);
}

.cap-card h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.cap-card p {
  color: var(--mist);
}

.contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(120deg, rgba(244, 195, 107, 0.15), rgba(12, 15, 20, 0.6));
  border: 1px solid rgba(244, 195, 107, 0.3);
}

.contact h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact p {
  color: var(--mist);
  max-width: 35rem;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(201, 210, 223, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    gap: 1rem;
  }

  .nav {
    gap: 1.2rem;
  }

  .contact {
    padding: 2rem 1.5rem;
  }
}
