* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #07090c;
  --panel: rgba(0, 0, 0, 0.74);
  --line: rgba(255, 255, 255, 0.11);
  --blue: #0879bd;
  --blue-soft: #7ed1ff;
  --text: #f4f4f6;
  --muted: #9ca3af;
  --muted-dark: #6b7280;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Aptos, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  text-rendering: geometricPrecision;
}

body {
  overflow-x: hidden;
}

.page {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 12%, rgba(8, 121, 189, 0.24), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #07090c 0%, #030405 100%);
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(circle at 50% 45%, rgba(141, 143, 152, 0.10), transparent 22%),
    #07090c;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.035;
  mix-blend-mode: screen;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 6px 6px;
}

.ambient {
  pointer-events: none;
  position: fixed;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.22;
  z-index: -2;
}

.ambient-one {
  width: 380px;
  height: 380px;
  left: -120px;
  top: 18%;
  background: var(--blue);
}

.ambient-two {
  width: 280px;
  height: 280px;
  right: -80px;
  bottom: 12%;
  background: rgba(126, 209, 255, 0.35);
}

.hero {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) 22px 34px;
  min-height: calc(100vh - 88px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo-card {
  width: min(100%, 760px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #000;
  padding: clamp(14px, 2vw, 22px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  overflow: hidden;
}

.logo {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  margin: 30px 0 0;
  color: var(--blue-soft);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 18px 0 0;
  font-family: "Arial Narrow", "Helvetica Neue", Aptos, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.service-grid {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  color: #e5e7eb;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-grid span {
  min-width: 190px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  padding: 13px 18px;
  backdrop-filter: blur(10px);
}

.contact-card {
  margin-top: 28px;
  width: min(100%, 560px);
  border: 1px solid rgba(8, 121, 189, 0.42);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.52);
  padding: 18px 20px;
}

.contact-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-card a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(126, 209, 255, 0.55);
}

.contact-card a:hover {
  color: var(--blue-soft);
}

.footer {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted-dark);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .hero {
    justify-content: flex-start;
    padding-top: 54px;
  }

  .logo-card {
    border-radius: 14px;
    padding: 12px;
  }

  .service-grid {
    width: 100%;
  }

  .service-grid span {
    width: 100%;
    min-width: 0;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}
