:root {
  --bg: #080b12;
  --surface: rgba(18, 23, 35, 0.72);
  --surface-hover: rgba(24, 31, 47, 0.88);
  --text: #f5f7fb;
  --muted: #9aa4b6;
  --border: rgba(255, 255, 255, 0.10);
  --accent: #7c8cff;
  --accent-two: #68e0cf;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(77, 95, 208, 0.18), transparent 34%),
    radial-gradient(circle at 95% 45%, rgba(42, 163, 151, 0.12), transparent 30%),
    var(--bg);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  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: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.glow {
  position: fixed;
  z-index: -2;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.17;
  pointer-events: none;
}

.glow-one {
  top: -190px;
  left: 42%;
  background: var(--accent);
}

.glow-two {
  right: -210px;
  bottom: 0;
  background: var(--accent-two);
}

.site-header,
main,
footer {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,0.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
  font-family: "Space Grotesk", sans-serif;
}

.brand-name {
  letter-spacing: -0.02em;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 180ms ease;
}

.header-links a:hover {
  color: var(--text);
}

.header-links .contact-link {
  padding: 9px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.hero {
  display: flex;
  min-height: 72vh;
  flex-direction: column;
  justify-content: center;
  padding: 90px 0 110px;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  color: #c7ceda;
  font-size: 0.82rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-two);
  box-shadow: 0 0 0 5px rgba(104, 224, 207, 0.1), 0 0 18px rgba(104, 224, 207, 0.7);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  50% { opacity: 0.55; }
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-two);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #ffffff 0%, #aeb8ff 44%, #75e0d2 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.intro {
  max-width: 690px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 19px;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 650;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  color: #080b12;
  border-color: transparent;
  background: #f6f8fc;
}

.button.primary:hover {
  background: #ffffff;
}

.button.secondary {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.button.secondary:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.075);
}

.availability {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
  color: #7f899b;
  font-size: 0.82rem;
}

.availability-line {
  width: 42px;
  height: 1px;
  background: #485164;
}

.focus-section {
  padding: 110px 0 130px;
  border-top: 1px solid var(--border);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 70px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.section-heading h2 {
  max-width: 500px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
}

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

.focus-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  backdrop-filter: blur(15px);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.focus-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 140, 255, 0.32);
  background: var(--surface-hover);
}

.card-number {
  display: block;
  margin-bottom: 70px;
  color: #626e82;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
}

.focus-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.focus-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 28px 0 40px;
  border-top: 1px solid var(--border);
  color: #6f798c;
  font-size: 0.82rem;
}

footer p {
  margin: 0;
}

@media (max-width: 780px) {
  .brand-name,
  .header-links a:not(.contact-link) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 90px 0;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

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

  .focus-card {
    min-height: 220px;
  }

  .card-number {
    margin-bottom: 50px;
  }
}

@media (max-width: 500px) {
  .site-header,
  main,
  footer {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header {
    padding-top: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  footer {
    gap: 20px;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
