@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #080808;
  --panel: #101010;
  --panel-2: #151515;
  --text: #f4f4f4;
  --muted: #9a9a9a;
  --line: #272727;
  --accent: #ffffff;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  padding: 20px 5vw;
  background: rgba(8,8,8,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -.04em; font-size: 1.2rem; }
.brand-mark {
  width: 34px; height: 34px; border: 1px solid #666; border-radius: 50%;
  display: grid; place-items: center; font-size: .68rem; letter-spacing: -.05em;
}
.nav { display: flex; gap: 30px; font-size: .85rem; color: #cfcfcf; }
.nav a:hover { color: #fff; }
.menu-toggle { display: none; background: none; color: white; border: 0; font-size: 1.5rem; }

.hero {
  min-height: 92vh; position: relative; overflow: hidden;
  display: grid; align-items: center; padding: 150px 7vw 90px;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}
.hero-glow {
  position: absolute; width: 600px; height: 600px; right: -180px; top: 80px;
  border-radius: 50%; background: rgba(255,255,255,.07); filter: blur(100px);
}
.hero-content { position: relative; max-width: 760px; }
.eyebrow { font-size: .72rem; letter-spacing: .22em; color: #8d8d8d; font-weight: 700; margin: 0 0 18px; }
h1 { font-size: clamp(4rem, 10vw, 8.5rem); line-height: .88; letter-spacing: -.08em; margin: 0; font-weight: 900; }
h1 span, h2 span { color: #999; }
.hero-copy { max-width: 580px; margin: 30px 0; color: #aaa; font-size: 1.05rem; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px;
  padding: 0 22px; border-radius: 4px; font-size: .85rem; font-weight: 700;
  transition: transform .2s, background .2s, border-color .2s;
}
.button:hover { transform: translateY(-2px); }
.primary { background: #fff; color: #080808; }
.secondary { border: 1px solid #444; color: #fff; }
.secondary:hover { border-color: #888; }
.hero-card {
  position: absolute; right: 7vw; bottom: 100px; width: 260px;
  border-left: 1px solid #555; padding: 15px 20px; color: #777;
}
.hero-card span { display: block; font-weight: 800; color: #ddd; }
.hero-card strong { display: block; margin-top: 6px; font-size: .62rem; letter-spacing: .13em; }

.section { max-width: var(--max); margin: 0 auto; padding: 120px 5vw; }
.section-heading { margin-bottom: 55px; }
h2 { font-size: clamp(2.5rem, 6vw, 5rem); line-height: .95; letter-spacing: -.06em; margin: 0 0 20px; }
.section-heading > p:last-child { color: var(--muted); max-width: 550px; }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.service-card {
  min-height: 330px; padding: 35px; background: var(--panel);
  border: 1px solid var(--line); transition: transform .2s, border-color .2s;
}
.service-card:hover { transform: translateY(-4px); border-color: #555; }
.service-card.featured { background: linear-gradient(145deg, #161616, #0d0d0d); }
.number { color: #666; font-size: .7rem; letter-spacing: .15em; font-weight: 700; }
h3 { font-size: 1.45rem; margin: 45px 0 10px; letter-spacing: -.04em; }
.service-card p { color: #999; max-width: 500px; }
.service-card ul { list-style: none; padding: 12px 0 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.service-card li { border: 1px solid #2d2d2d; padding: 7px 10px; color: #bbb; font-size: .72rem; }

.statement {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 120px 7vw; text-align: center;
}
.statement p { color: #777; text-transform: uppercase; letter-spacing: .2em; font-size: .7rem; }
.statement h2 { max-width: 800px; margin: auto; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.copy { color: #a6a6a6; font-size: 1rem; }
.copy strong { color: #eee; }

.faq-section { max-width: 900px; }
.faqs { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 22px 0; }
summary { cursor: pointer; font-weight: 600; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: #777; font-size: 1.2rem; }
details[open] summary::after { content: "−"; }
details p { color: #999; max-width: 720px; margin: 15px 0 0; }

.contact {
  max-width: 1180px; margin: 0 auto 80px; padding: 70px 6vw;
  background: #111; border: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center;
}
.contact h2 { margin-bottom: 15px; }
.contact > div > p:last-child { color: #888; }
.contact-actions { display: flex; flex-direction: column; gap: 10px; min-width: 220px; }
.social { color: #aaa; font-size: .8rem; padding: 7px 0; }
.social:hover { color: #fff; }

.footer {
  border-top: 1px solid var(--line); padding: 35px 6vw;
  display: flex; justify-content: space-between; gap: 20px; color: #777; font-size: .75rem;
}
.footer-brand { color: #eee; font-size: 1rem; font-weight: 800; }
.footer p { margin: 4px 0; }
.footer-right { text-align: right; }

@media (max-width: 760px) {
  .site-header { padding: 16px 5vw; }
  .menu-toggle { display: block; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 67px;
    padding: 20px 5vw; background: #090909; border-bottom: 1px solid var(--line);
    flex-direction: column; gap: 18px;
  }
  .nav.open { display: flex; }
  .hero { min-height: 90vh; padding: 125px 6vw 70px; }
  .hero-card { display: none; }
  h1 { font-size: clamp(4rem, 19vw, 7rem); }
  .section { padding: 85px 6vw; }
  .service-grid, .split, .contact { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .contact { margin: 0 5vw 60px; padding: 45px 7vw; gap: 35px; }
  .footer { flex-direction: column; }
  .footer-right { text-align: left; }
}
