
:root {
  --bg: #07111d;
  --bg-2: #0b1727;
  --panel: rgba(12, 22, 37, 0.7);
  --panel-strong: rgba(10, 18, 30, 0.86);
  --border: rgba(157, 183, 222, 0.12);
  --border-strong: rgba(157, 183, 222, 0.22);
  --text: #eef4ff;
  --muted: #9ba8bd;
  --accent: #67d7ff;
  --accent-2: #89ffd4;
  --accent-3: #7d88ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(125, 136, 255, 0.14), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(103, 215, 255, 0.12), transparent 20%),
    linear-gradient(180deg, #050d16 0%, #08111d 40%, #09121e 100%);
  line-height: 1.6;
  min-height: 100vh;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
body.menu-open { overflow: hidden; }

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image: radial-gradient(rgba(255,255,255,0.75) 0.65px, transparent 0.65px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.08));
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(4, 9, 16, 0.62);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.brand-shield {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.79rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
}

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.03);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
}

.hero-section {
  position: relative;
  overflow: clip;
  padding: 90px 0 56px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.6;
}

.glow-a {
  width: 320px;
  height: 320px;
  top: 40px;
  right: 10%;
  background: rgba(103, 215, 255, 0.22);
}

.glow-b {
  width: 280px;
  height: 280px;
  left: 8%;
  top: 160px;
  background: rgba(125, 136, 255, 0.18);
}

.grid-fade {
  position: absolute;
  inset: 8% 0 auto 0;
  height: 420px;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,0.95), transparent 72%);
  opacity: 0.32;
}

.hero-grid,
.profile-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
}

.hero-grid {
  min-height: calc(100vh - 210px);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero-copy h1 {
  max-width: 11.8ch;
  font-size: clamp(2.75rem, 4.45vw, 4.7rem);
}

.hero-subtitle,
.section-heading p,
.service-card p,
.profile-copy p,
.contact-copy p,
.contact-footnote,
.site-footer p {
  color: var(--muted);
}

.hero-subtitle {
  max-width: 60ch;
  font-size: 1.06rem;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  color: #06101a;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 34px rgba(103, 215, 255, 0.2);
}

.button-secondary {
  color: var(--text);
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.035);
}

.button-large {
  min-width: 220px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.hero-meta span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: #c1d0e8;
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.glass-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(13, 23, 38, 0.76), rgba(9, 17, 28, 0.92));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), transparent 28%);
}

.hero-panel {
  min-height: 520px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -60px -70px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(103,215,255,0.18), transparent 68%);
  filter: blur(12px);
  z-index: -1;
}

.hero-watermark {
  position: absolute;
  right: 26px;
  top: 22px;
  width: 104px;
  opacity: 0.12;
  filter: saturate(0.95) blur(0.2px);
}

.hero-panel-head {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}

.hero-panel-head h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero-panel-head p {
  margin: 14px 0 0;
  color: var(--muted);
}

.focus-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.focus-item {
  padding: 18px 18px 17px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.038), rgba(255,255,255,0.02));
  backdrop-filter: blur(6px);
}

.focus-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.signal-label,
.profile-label {
  display: block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--accent);
  border: 1px solid rgba(103, 215, 255, 0.18);
  background: linear-gradient(180deg, rgba(103, 215, 255, 0.11), rgba(125, 136, 255, 0.06));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 8px 24px rgba(0,0,0,0.18);
}

.card-icon svg {
  width: 20px;
  height: 20px;
}

.focus-item strong,
.profile-row strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

.content-section {
  padding: 42px 0 36px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

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

.service-card {
  min-height: 220px;
  padding: 24px;
}

.service-card:last-child {
  background: linear-gradient(180deg, rgba(16, 28, 46, 0.84), rgba(9, 17, 28, 0.94));
}


.service-card h3 {
  margin: 16px 0 10px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.service-card p,
.profile-copy p,
.contact-copy p,
.section-heading p {
  margin: 0;
}

.profile-copy p + p { margin-top: 16px; }

.profile-panel {
  padding: 16px;
}

.profile-row {
  padding: 20px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}

.profile-row + .profile-row {
  margin-top: 12px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
  padding: 28px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.contact-footnote {
  font-size: 0.95rem;
}

.site-footer {
  padding: 28px 0 42px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .profile-grid,
  .contact-panel,
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cards-grid article:last-child {
    grid-column: auto;
  }

  .hero-panel {
    min-height: 460px;
    padding: 26px;
  }
}

@media (max-width: 860px) {
  .menu-toggle { display: block; }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    background: rgba(7, 12, 20, 0.96);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .site-nav.open { display: flex; }

  .nav-cta {
    justify-content: center;
  }

  .hero-grid,
  .profile-grid,
  .contact-panel,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 56px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-panel {
    min-height: auto;
    padding: 22px;
  }

  .hero-watermark {
    width: 86px;
    right: 18px;
    top: 18px;
  }

  .contact-actions {
    align-items: stretch;
  }

  .button-large {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-shield {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 0.92rem;
    letter-spacing: 0.16em;
  }

  .brand-tag {
    font-size: 0.74rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 10.2vw, 3.35rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-meta span {
    width: 100%;
    text-align: center;
  }

  .service-card,
  .contact-panel,
  .profile-panel {
    padding: 20px;
  }
}


@media (max-width: 860px) {
  .hero-panel-head {
    max-width: none;
  }
}
