@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-1: #040916;
  --bg-2: #090f24;
  --text: #ffffff;
  --muted: #c6d0e5;
  --line: rgba(255,255,255,0.10);
  --panel: rgba(10, 16, 34, 0.58);
  --panel-strong: rgba(14, 20, 42, 0.76);
  --blue: #37b6ff;
  --blue-soft: #7bddff;
  --purple: #8e68ff;
  --pink: #d96cff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.40);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.28);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  background:
    linear-gradient(rgba(2,5,15,0.75), rgba(2,5,15,0.85)),
    url('assets/background.jpg') center / cover no-repeat fixed,
    linear-gradient(180deg, #02050f 0%, #050b1b 50%, #040814 100%);
}

.aurora,
.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.stars {
  opacity: 0.7;
  background-image:
    radial-gradient(circle at 10% 15%, rgba(255,255,255,0.7) 0 1px, transparent 1.2px),
    radial-gradient(circle at 23% 36%, rgba(125, 211, 252, 0.7) 0 1px, transparent 1.2px),
    radial-gradient(circle at 81% 19%, rgba(255,255,255,0.55) 0 1px, transparent 1.2px),
    radial-gradient(circle at 74% 62%, rgba(147,197,253,0.65) 0 1px, transparent 1.2px),
    radial-gradient(circle at 15% 80%, rgba(255,255,255,0.45) 0 1px, transparent 1.2px),
    radial-gradient(circle at 92% 74%, rgba(255,255,255,0.55) 0 1px, transparent 1.2px);
}

.aurora-1 {
  background:
    radial-gradient(55% 35% at 50% 26%, rgba(69, 116, 255, 0.12), transparent 60%),
    radial-gradient(50% 24% at 35% 52%, rgba(131, 90, 255, 0.08), transparent 60%);
  filter: blur(18px);
}

.aurora-2 {
  background:
    radial-gradient(40% 18% at 50% 72%, rgba(57, 208, 255, 0.10), transparent 70%),
    radial-gradient(25% 14% at 40% 88%, rgba(212, 104, 255, 0.06), transparent 70%);
  filter: blur(24px);
}

.container {
  width: min(1160px, calc(100% - 28px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(4, 8, 18, 0.52);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand img {
  display: block;
  width: auto;
  height: 42px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover { color: white; }

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.header-cta,
.button.primary {
  background: linear-gradient(180deg, rgba(65,162,255,0.98), rgba(25,115,255,0.92));
  box-shadow: 0 12px 26px rgba(37,99,235,0.28);
  color: white;
}

.button.secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  color: white;
  box-shadow: var(--shadow-soft);
}

.hero {
  padding: 72px 0 54px;
  text-align: center;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: min(560px, 100%);
  height: auto;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.42));
}

.hero-copy {
  margin: 22px auto 0;
  max-width: 760px;
}

.eyebrow,
.contact-card span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  color: var(--blue-soft);
}

.hero h1 {
  margin: 18px auto 0;
  font-size: clamp(2.6rem, 5.8vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.hero-text,
.section-text,
.section-intro,
.service-card p,
.contact-card strong {
  color: var(--muted);
}

.hero-text {
  margin: 18px auto 0;
  max-width: 680px;
  font-size: 1.06rem;
  line-height: 1.82;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.section {
  padding: 42px 0 84px;
}

.section-heading,
.contact-panel,
.glass-panel {
  position: relative;
}

.section-heading {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 28px;
}

.section-heading h2,
.glass-panel h2,
.contact-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section-intro,
.section-text {
  margin: 14px auto 0;
  max-width: 720px;
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.glass-panel,
.contact-panel,
.contact-card {
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(16, 21, 42, 0.60), rgba(10, 15, 30, 0.48));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.service-card {
  border-radius: 26px;
  padding: 24px;
  text-align: left;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.service-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 221, 255, 0.25);
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.48);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: linear-gradient(180deg, rgba(34, 130, 255, 0.30), rgba(185, 98, 255, 0.18));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.service-card h3 {
  margin: 16px 0 8px;
  font-size: 1.32rem;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 0;
  line-height: 1.75;
}

.about-section {
  max-width: 920px;
}

.glass-panel {
  border-radius: 32px;
  padding: 30px;
  text-align: center;
}

.feature-pills {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.feature-pills span {
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  color: #e6eefb;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-panel {
  border-radius: 32px;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
  gap: 22px;
  align-items: center;
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: block;
  text-decoration: none;
  border-radius: 22px;
  padding: 18px;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.contact-card span {
  display: block;
  font-size: 0.72rem;
  color: #9eb5d6;
  margin-bottom: 8px;
}

.contact-card strong {
  display: block;
  color: white;
  font-size: 1.16rem;
  word-break: break-word;
}

@media (max-width: 980px) {
  .service-grid,
  .contact-panel {
    grid-template-columns: 1fr 1fr;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }

  .brand img {
    height: 34px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .feature-pills span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .site-header .header-cta {
    width: auto;
  }
}


/* Updated transparent logo */
.brand img {
  height: 34px;
  width: auto;
}

.hero-logo {
  width: min(520px, 100%);
  background: transparent !important;
}

/* Updated service icons to match the reference more closely */
.service-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: radial-gradient(circle at 50% 40%, rgba(120,180,255,0.10), rgba(160,100,255,0.08));
  box-shadow:
    0 0 26px rgba(120,180,255,0.12),
    inset 0 0 14px rgba(255,255,255,0.04);
}

.service-icon svg {
  width: 84px;
  height: 84px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(105, 193, 255, 0.12));
}

@media (max-width: 760px) {
  .brand img { height: 28px; }
  .service-icon { width: 78px; height: 78px; }
  .service-icon svg { width: 78px; height: 78px; }
}


/* Subtle cinematic vignette */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(0,0,0,0.6));
  pointer-events: none;
  z-index: 0;
}
