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

:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --text: #f5f5f5;
  --muted: #888888;
  --accent: #ffffff;
  --border: rgba(255, 255, 255, 0.12);
  --glow: rgba(255, 255, 255, 0.06);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Rajdhani", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
  gap: 2.5rem;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.logo-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow:
    0 0 0 1px var(--glow),
    0 24px 48px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.domain {
  font-family: "Orbitron", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero {
  max-width: 520px;
}

.eyebrow {
  font-family: "Orbitron", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #aaaaaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto;
}

.contact {
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
}

.contact::before,
.contact::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
}

.contact::before {
  top: -1px;
  left: -1px;
}

.contact::after {
  bottom: -1px;
  right: -1px;
}

.contact h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.contact-note {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.phone-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.25rem;
  font-family: "Orbitron", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.phone-link:hover,
.phone-link:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
  outline: none;
}

.phone-icon {
  font-size: 1.1rem;
  opacity: 0.7;
}

.footer {
  margin-top: auto;
  padding-top: 1rem;
}

.footer p {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

@media (max-width: 480px) {
  .page {
    padding: 2rem 1.25rem;
    gap: 2rem;
  }

  .logo-wrap {
    width: 130px;
    height: 130px;
  }

  .contact {
    padding: 1.5rem;
  }
}
