:root {
  --bg: #070707;
  --bg-elev: #131313;
  --line: #363636;
  --line-soft: #303030;
  --text: #ffffff;
  --muted: #d7d7d7;
  --dim: #a8a8a8;
  --eyebrow: #bdbdbd;
  --card-body: #cbcbcb;
  --point: #dddddd;
  --accent: #3ee0ff;
  --accent-deep: #12b8d6;
  --max: 1180px;
  --radius: 24px;
  --font-display: "Syne", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 80;
  background: #fff;
  color: #070707;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  padding: 14px 18px 0;
  pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  width: min(1180px, 100%);
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding: 10px 14px 10px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  background: rgba(12,12,12,0.72);
  backdrop-filter: blur(34px) saturate(180%) contrast(110%);
  -webkit-backdrop-filter: blur(34px) saturate(180%) contrast(110%);
  box-shadow: 0 14px 40px rgba(0,0,0,0.24);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand-mark {
  width: 28px;
  height: 28px;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 15px;
  line-height: 1;
}
.brand-name span { color: var(--accent); display: block; font-size: 11px; letter-spacing: 0.18em; font-weight: 800; }
.nav-links {
  display: flex;
  gap: 6px;
  margin-left: auto;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  text-decoration: none;
  color: #e8e8e8;
  font-weight: 800;
  font-size: 14px;
  padding: 9px 12px;
  border-radius: 14px;
}
.nav-links a[aria-current="page"],
.nav-links a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.nav-cta {
  background: #fff !important;
  color: #070707 !important;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 14px;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  color: #fff;
  border: 1px solid #777;
  border-radius: 12px;
  min-height: 40px;
  padding: 0 12px;
  font-weight: 800;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px 96px;
}
.nav-spacer { height: 94px; }

.crumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 24px;
  font-size: 14px;
}
.crumbs a { color: #fff; }
.crumbs .div { color: #6e6e6e; }
.crumbs .now { color: #a8a8a8; }

.page-hero { max-width: 1000px; padding: 82px 0 48px; }
.eyebrow {
  color: var(--eyebrow);
  font-size: 13px;
  line-height: 18px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
h1 {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: 78px;
  line-height: 76px;
  letter-spacing: -4px;
  margin: 20px 0 0;
  max-width: 18ch;
}
.intro {
  color: var(--muted);
  max-width: 920px;
  font-size: 27px;
  line-height: 39px;
  margin-top: 18px;
}

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 16px;
  font-weight: 800;
  text-decoration: none;
}
.btn-primary { background: #fff; color: #070707; }
.btn-ghost { border: 1px solid #777; color: #fff; }

.landing-hero {
  position: relative;
  margin: 18px 0 42px;
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid #363636;
}
.landing-hero img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.landing-hero .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,7,7,0.72) 8%, rgba(7,7,7,0.18) 70%, rgba(7,7,7,0.35));
}
.landing-hero .copy {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 36px;
  max-width: 720px;
}
.landing-hero h1 { font-size: 64px; line-height: 64px; max-width: 14ch; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 8px 0 36px;
}
.stat {
  border: 1px solid var(--line);
  background: var(--bg-elev);
  border-radius: var(--radius);
  padding: 28px 30px;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: -2px;
  color: var(--accent);
}
.stat span { color: #cfcfcf; font-size: 16px; line-height: 24px; }

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.card {
  width: calc(50% - 9px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-elev);
  padding: 30px;
}
.card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: 34px;
  line-height: 38px;
  margin: 0;
  letter-spacing: -1.2px;
}
.card p { color: var(--card-body); font-size: 18px; line-height: 28px; margin: 15px 0 0; }
.points { list-style: none; padding: 0; margin: 8px 0 0; }
.points li {
  display: flex;
  gap: 12px;
  color: var(--point);
  font-size: 17px;
  line-height: 26px;
  margin-top: 15px;
}
.points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--accent);
  margin-top: 9px;
  flex: 0 0 auto;
}

.media-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin: 18px 0;
}
.media-row figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
}
.media-row img { width: 100%; height: 360px; object-fit: cover; }
.media-row figcaption {
  padding: 16px 18px 20px;
  color: #aeaeae;
  font-size: 15px;
  line-height: 22px;
}

.faq {
  margin-top: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
}
.faq article {
  padding: 30px;
  border-bottom: 1px solid var(--line-soft);
}
.faq article:last-child { border-bottom: 0; }
.faq h2 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 0;
  letter-spacing: -0.8px;
}
.faq p { color: var(--card-body); font-size: 18px; line-height: 28px; margin: 12px 0 0; }

.email-btn, .wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  min-height: 80px;
  border-radius: 22px;
  background: #fff;
  color: #070707;
  text-decoration: none;
  font-weight: 800;
  font-size: 36px;
  text-align: center;
  padding: 16px 20px;
}
.social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.social a {
  width: 44px;
  height: 44px;
  border-radius: 22px;
  border: 1px solid #777;
  display: grid;
  place-items: center;
  text-decoration: none;
}
.social svg { width: 18px; height: 18px; fill: #fff; }

.map-frame {
  margin-top: 22px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 380px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.note {
  margin-top: 28px;
  color: #8f8f8f;
  font-size: 14px;
  line-height: 22px;
  max-width: 820px;
}

footer {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid #333;
  padding: 46px 28px 72px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-body { color: #aeaeae; font-size: 16px; line-height: 24px; max-width: 720px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 18px; }
.footer-links a { color: #fff; font-weight: 800; }

@media (max-width: 1020px) {
  h1 { font-size: 54px; line-height: 54px; letter-spacing: -2px; }
  .landing-hero h1 { font-size: 42px; line-height: 44px; }
  .intro { font-size: 22px; line-height: 32px; }
  .card h2 { font-size: 28px; line-height: 32px; }
}

@media (max-width: 760px) {
  .nav { padding: 10px 12px 0; }
  .nav-inner { border-radius: 18px; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .nav-links, .nav-cta { display: none; }
  .nav-inner.open {
    flex-wrap: wrap;
  }
  .nav-inner.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    background: #121212;
    border: 1px solid #363636;
    border-radius: 18px;
    padding: 10px;
    margin-left: 0;
  }
  .nav-inner.open .nav-cta {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .nav-spacer { height: 78px; }
  .wrap, footer { padding-left: 18px; padding-right: 18px; }
  .page-hero { padding: 52px 0 28px; }
  h1 { font-size: 32px; line-height: 37px; letter-spacing: -1px; }
  .intro { font-size: 16px; line-height: 24px; }
  .landing-hero { min-height: 420px; }
  .landing-hero img { height: 420px; }
  .landing-hero .copy { left: 18px; right: 18px; bottom: 20px; }
  .landing-hero h1 { font-size: 32px; line-height: 34px; }
  .stats, .media-row { grid-template-columns: 1fr; }
  .card { width: 100%; padding: 23px; }
  .card h2 { font-size: 25px; line-height: 29px; }
  .faq article { padding: 23px; }
  .faq h2 { font-size: 22px; }
  .wa-btn, .email-btn { font-size: 18px; min-height: 64px; }
  .stat b { font-size: 32px; }
}
