/* BEAU TECH · mock-c · mock-b plus a short history */
@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; }
}

/* History */
.history { background: #232428; padding: clamp(5rem, 9vw, 8.5rem) 0; }
.history h2 { font-family: var(--head); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing: -0.015em; margin: 0 0 3.5rem; }
.timeline { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2.5rem; }
.timeline li { border-top: 1px solid rgba(10,132,255,.55); padding-top: 1.4rem; position: relative; }
.timeline li::before { content: ""; position: absolute; top: -4px; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.when { display: block; font-family: var(--head); font-weight: 600; font-size: 1.35rem; color: var(--fg); margin-bottom: .6rem; }
.timeline p { margin: 0; color: var(--muted); line-height: 1.6; font-size: .98rem; }
@media (max-width: 960px) { .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) {
  .history { padding: 4.5rem 0; }
  .history h2 { margin-bottom: 2.5rem; }
  .timeline { grid-template-columns: 1fr; gap: 0; border-left: 1px solid rgba(10,132,255,.45); margin-left: 3px; }
  .timeline li { border-top: 0; padding: 0 0 2rem 1.5rem; }
  .timeline li::before { top: .55rem; left: -4px; }
  .timeline li:last-child { padding-bottom: 0; }
}

/* Placeholder slots (remove when real content lands) */
.placeholder { color: #6E7077 !important; font-style: italic; }
.testimonials { background: var(--bg); padding: clamp(5rem, 9vw, 8.5rem) 0; }
.testimonials h2 { font-family: var(--head); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing: -0.015em; margin: 0 0 3rem; }
.quotes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem; }
.quote { margin: 0; padding: 1.75rem 0 0; border-top: 1px solid rgba(255,255,255,.14); }
.quote blockquote { margin: 0 0 1rem; font-family: var(--head); font-size: 1.05rem; line-height: 1.55; }
.quote blockquote p { margin: 0 0 .75rem; }
.quote figcaption { font-size: .9rem; }
@media (max-width: 640px) { .quotes { grid-template-columns: 1fr; gap: 2rem; } .testimonials { padding: 4.5rem 0; } }
