*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  background: #222831;
  color: #eeeeee;
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.58;
}
a { color: inherit; text-decoration: none; }
.page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(34,40,49,.94), rgba(34,40,49,.72)),
    url("/assets/hero-interior.webp") center / cover fixed;
}
.overlay {
  min-height: 100vh;
  background:
    linear-gradient(rgba(34,40,49,.88), rgba(34,40,49,.92)),
    linear-gradient(90deg, rgba(238,238,238,.04) 1px, transparent 1px),
    linear-gradient(rgba(238,238,238,.035) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}
.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
}
.brand {
  font-weight: 820;
  letter-spacing: .01em;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  color: rgba(238,238,238,.72);
  font-size: 14px;
  font-weight: 650;
}
.nav a:hover { color: #eeeeee; }
.hero {
  padding: 86px 0 54px;
  max-width: 900px;
}
.kicker {
  color: #00adb5;
  font-size: 13px;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
h1 {
  max-width: 900px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: .98;
  letter-spacing: 0;
}
.lead {
  max-width: 740px;
  margin-top: 24px;
  color: rgba(238,238,238,.78);
  font-size: clamp(18px, 2.2vw, 22px);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 760;
}
.btn-primary { background: #00adb5; color: #222831; }
.btn-secondary { border: 1px solid rgba(238,238,238,.18); background: rgba(57,62,70,.82); }
.section {
  padding: 34px 0;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.panel {
  border: 1px solid rgba(238,238,238,.14);
  border-radius: 8px;
  background: rgba(57,62,70,.84);
  padding: 22px;
}
.panel h2, .panel h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.panel p, .panel li {
  color: rgba(238,238,238,.72);
}
.panel ul {
  padding-left: 18px;
}
.wide {
  grid-column: span 2;
}
.note {
  max-width: 860px;
  color: rgba(238,238,238,.68);
  font-size: 15px;
}
footer {
  padding: 42px 0;
  color: rgba(238,238,238,.62);
}
@media (max-width: 760px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  .hero { padding-top: 54px; }
  .grid { grid-template-columns: 1fr; }
  .wide { grid-column: auto; }
}
