:root {
  --bg: #050816;
  --bg-alt: #0a1024;
  --panel: rgba(10, 16, 36, 0.78);
  --panel-strong: rgba(8, 13, 28, 0.94);
  --line: rgba(95, 174, 255, 0.28);
  --text: #eef4ff;
  --muted: #adc4ea;
  --bright: #69e5ff;
  --bright-strong: #27a6ff;
  --silver: #dce7ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Rajdhani", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(39, 166, 255, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(105, 229, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #02040b 0%, #071022 45%, #040814 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 85%);
}

.site-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.site-header,
.site-footer,
.info-card,
.content-card,
.contact-card,
.hero-art-panel,
.feature-art {
  backdrop-filter: blur(18px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  position: sticky;
  top: 0;
  z-index: 10;
  margin-top: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(6, 10, 24, 0.8);
  box-shadow: var(--shadow);
}

.brand {
  flex: 0 1 420px;
  min-width: 0;
}

.brand img {
  display: block;
  width: 100%;
  max-width: 340px;
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  gap: 0.5rem;
  align-items: center;
}

.site-nav a,
.button {
  text-decoration: none;
  color: var(--text);
  border-radius: 999px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-nav a {
  padding: 0.7rem 1rem;
  border: 1px solid transparent;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.site-nav a:hover,
.site-nav a.is-active {
  border-color: var(--line);
  background: rgba(105, 229, 255, 0.12);
  box-shadow: 0 0 24px rgba(39, 166, 255, 0.14);
}

main {
  display: grid;
  gap: 2.2rem;
  padding: 2rem 0;
}

.hero,
.feature,
.contact-layout,
.content-grid,
.stats-grid {
  display: grid;
  gap: 1.5rem;
}

.hero,
.feature {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.hero {
  min-height: 68vh;
}

.page-hero {
  padding: 3rem 0 0.5rem;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--bright);
  font-size: 0.82rem;
}

h1,
h2 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  max-width: 11ch;
  text-shadow: 0 0 24px rgba(39, 166, 255, 0.22);
}

.page-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.lead,
p,
a,
span {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--muted);
}

.hero-copy,
.feature-copy {
  animation: rise-in 700ms ease both;
}

.hero-art-panel,
.feature-art,
.info-card,
.content-card,
.contact-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(9, 15, 34, 0.92), rgba(7, 11, 24, 0.8));
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-art-panel,
.feature-art {
  padding: 1rem;
  overflow: hidden;
  animation: float-in 900ms ease both;
}

.hero-art-panel img,
.feature-art img {
  display: block;
  width: 100%;
  height: auto;
}

.photo-portrait {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
}

.photo-landscape {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border: 1px solid var(--line);
  font-weight: 700;
  letter-spacing: 0.03em;
}

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

.button-primary {
  background: linear-gradient(135deg, rgba(105, 229, 255, 0.22), rgba(39, 166, 255, 0.42));
  box-shadow: 0 10px 30px rgba(39, 166, 255, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.content-card,
.contact-card {
  padding: 1.4rem;
}

.content-grid,
.contact-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.contact-list a,
.footer-links a {
  color: var(--silver);
}

.emphasis-card {
  background:
    radial-gradient(circle at top right, rgba(105, 229, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(9, 15, 34, 0.96), rgba(7, 11, 24, 0.88));
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(4, 8, 18, 0.9);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 920px) {
  .site-header,
  .site-footer,
  .hero,
  .feature,
  .stats-grid,
  .content-grid,
  .contact-layout,
  .feature-reverse {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    position: static;
    display: grid;
    justify-content: stretch;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  h1,
  .page-hero h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 1rem, 1180px);
    padding-top: 0.5rem;
  }

  .site-header,
  .site-footer,
  .hero-art-panel,
  .feature-art,
  .info-card,
  .content-card,
  .contact-card {
    border-radius: 20px;
  }

  .site-nav {
    gap: 0.25rem;
  }

  .site-nav a,
  .button {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }
}
