:root {
  --bg: #050505;
  --panel: #090909;
  --text: #f4f2ef;
  --muted: #a5a19c;
  --line: rgba(255, 255, 255, 0.12);
  --gold: #d8b27a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: .02em;
}
a { color: inherit; text-decoration: none; }

.topbar {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 34px 42px;
  font-size: 13px;
}
.brand-small { font-weight: 600; letter-spacing: .22em; }
.email-link { color: #ddd8d1; }

.section-pad { padding: 90px 7vw; }
.bordered { border-top: 1px solid var(--line); }

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(255,255,255,.07), transparent 25%),
    linear-gradient(180deg, #020202 0%, #090909 100%);
}
.hero-content { position: relative; z-index: 2; margin-top: -3vh; }
.hero h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(76px, 13vw, 190px);
  font-weight: 500;
  letter-spacing: .24em;
  transform: translateX(.12em);
}
.hero-copy {
  margin: 28px 0 42px;
  color: #dedad5;
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 300;
  letter-spacing: .16em;
}
.gold-rule {
  display: block;
  width: 34px;
  height: 1px;
  margin: 18px auto 0;
  background: var(--gold);
}
.gold-rule.small { margin-top: 26px; }
.cta {
  display: inline-block;
  padding: 18px 42px;
  border: 1px solid var(--gold);
  color: #efd3aa;
  font-size: 13px;
  letter-spacing: .25em;
  transition: .25s ease;
}
.cta:hover { background: var(--gold); color: #0b0b0b; }
.horizon {
  position: absolute;
  width: min(90vw, 1300px);
  height: 48vw;
  max-height: 640px;
  left: 50%;
  bottom: -29vw;
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0;
  border-top: 1px solid rgba(231, 213, 183, .6);
  background: radial-gradient(circle at 50% 0%, rgba(205,176,132,.13), rgba(0,0,0,.9) 45%);
  box-shadow: 0 -16px 90px rgba(223,198,155,.16);
}

.section-heading {
  text-align: center;
  font-size: clamp(16px, 1.5vw, 23px);
  letter-spacing: .24em;
  font-weight: 500;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1280px;
  margin: 64px auto 0;
}
.feature-card {
  padding: 0 24px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.feature-card:first-child { border-left: 0; }
.icon {
  color: var(--gold);
  font-size: 42px;
  height: 54px;
}
.feature-card h2 {
  margin: 22px 0 15px;
  font-size: 13px;
  letter-spacing: .17em;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

.industries { background: linear-gradient(180deg, #070707, #050505); }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: 1250px;
  margin: 58px auto 0;
}
.industry-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 5px 20px;
  border-left: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: .15em;
}
.industry-grid > div:first-child { border-left: 0; }
.industry-icon { color: var(--gold); font-size: 34px; }
.closing-line {
  margin: 54px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  letter-spacing: .05em;
}

.contact {
  text-align: center;
  background:
    radial-gradient(circle at 50% 90%, rgba(216,178,122,.06), transparent 32%),
    #050505;
  padding-bottom: 50px;
}
.contact-icon { color: var(--gold); font-size: 34px; margin-bottom: 28px; }
.contact-email {
  display: inline-block;
  margin-top: 32px;
  color: #e1c291;
  font-size: 19px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(216,178,122,.55);
}
.copyright {
  margin: 56px 0 0;
  color: #8e8a85;
  font-size: 10px;
  letter-spacing: .2em;
}

@media (max-width: 900px) {
  .topbar { padding: 24px; }
  .hero h1 { letter-spacing: .16em; }
  .feature-grid { grid-template-columns: 1fr; gap: 34px; }
  .feature-card { border-left: 0; border-top: 1px solid var(--line); padding-top: 34px; }
  .feature-card:first-child { border-top: 0; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 0; }
  .industry-grid > div:nth-child(odd) { border-left: 0; }
  .horizon { bottom: -18vw; }
}

@media (max-width: 560px) {
  .topbar { font-size: 11px; padding: 20px 16px; }
  .email-link { display: none; }
  .section-pad { padding: 74px 24px; }
  .hero { min-height: 92vh; }
  .hero h1 { font-size: 58px; letter-spacing: .12em; }
  .hero-copy { font-size: 15px; letter-spacing: .09em; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .industry-grid > div { font-size: 10px; }
  .section-heading { line-height: 1.7; }
  .horizon { width: 120vw; height: 65vw; bottom: -32vw; }
}
