/* BEAU TECH · mock-b · one full-bleed hero, one line */
@font-face { font-family: "Space Grotesk"; src: url("assets/fonts/space-grotesk-latin.woff2") format("woff2"); font-weight: 300 700; font-display: swap; }
@font-face { font-family: "Inter"; src: url("assets/fonts/inter-latin.woff2") format("woff2"); font-weight: 100 900; font-display: swap; }
:root { --ink: #0D0D0D; --bg: #1A1B1E; --fg: #F5F5F5; --muted: #9A9CA3; --accent: #0A84FF;
  --head: "Space Grotesk", "Inter", system-ui, sans-serif; --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; }
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; }
body { background: var(--bg); color: var(--fg); font-family: var(--body); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--fg); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent); }
.wrap { width: min(100% - 4rem, 1320px); margin-inline: auto; }

.hero {
  position: relative; overflow: hidden;
  min-height: calc(100vh - 88px); min-height: calc(100svh - 88px);
  display: grid; place-items: center;
  background:
    radial-gradient(ellipse 60% 55% at 50% 45%, rgba(10,132,255,.10) 0%, transparent 70%),
    radial-gradient(ellipse 120% 90% at 50% 40%, #2A2C32 0%, #212226 50%, #1A1B1E 100%);
}
.constellation { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .55; }
.hero-inner { position: relative; text-align: center; padding: 6rem 2rem; width: 100%; }
.mark { margin: 0 auto; width: min(78vw, 880px); }
.mark img { width: 100%; }
.line {
  font-family: var(--head); font-weight: 500;
  font-size: clamp(1.25rem, 2.3vw, 1.9rem); letter-spacing: -0.01em;
  color: #D9DADF; text-wrap: balance; margin: clamp(2rem, 4vw, 3.25rem) 0 0;
}

.site-footer { background: var(--ink); height: 88px; display: flex; align-items: center; font-size: .9rem; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.contact { display: flex; gap: 2rem; font-family: var(--head); font-size: 1rem; }
.contact a { color: #D9DADF; }

@media (max-width: 640px) {
  .wrap { width: min(100% - 2.5rem, 1320px); }
  .hero { min-height: calc(100vh - 120px); min-height: calc(100svh - 120px); }
  .mark { width: 84vw; }
  .line { font-size: 1.15rem; line-height: 1.4; text-wrap: balance; }
  .site-footer { height: auto; padding: 1.75rem 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: .9rem; }
  .contact { flex-direction: column; gap: .4rem; }
}
