:root {
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.76);
  --glass: rgba(9, 22, 34, 0.42);
  --line: rgba(255, 255, 255, 0.28);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font);
  letter-spacing: 0;
  background: #071521;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding: clamp(24px, 5vw, 64px);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(2, 8, 14, 0.04), rgba(2, 8, 14, 0.72)),
    linear-gradient(90deg, rgba(2, 8, 14, 0.72), rgba(2, 8, 14, 0.18) 58%, rgba(2, 8, 14, 0.42)),
    url("https://images.unsplash.com/photo-1514214246283-d427a95c5d2f?auto=format&fit=crop&w=2400&q=85")
      center / cover;
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 202, 89, 0.22), transparent 26rem),
    radial-gradient(circle at 78% 70%, rgba(21, 196, 214, 0.18), transparent 30rem);
  pointer-events: none;
  content: "";
}

.brand {
  align-self: start;
  width: fit-content;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.owner-panel {
  align-self: center;
  max-width: min(920px, 100%);
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.domain {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(54px, 10vw, 136px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: clamp(24px, 4vw, 36px);
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 720px) {
  .hero {
    padding: 22px;
  }

  .owner-panel {
    align-self: end;
    margin-bottom: 8vh;
  }

  .contact-link {
    width: 100%;
  }
}
