:root {
  --bg: #080b0d;
  --panel: #11161a;
  --panel-2: #171d22;
  --text: #f4f1ea;
  --muted: #a8b0b8;
  --line: rgba(255,255,255,.12);
  --accent: #c49a46;
  --accent-2: #d5c19b;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 70% 10%, rgba(196,154,70,.18), transparent 34rem),
    linear-gradient(180deg, #080b0d 0%, #0d1114 55%, #080b0d 100%);
}

a { color: inherit; text-decoration: none; }

.nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 800;
  letter-spacing: .08em;
}

.mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: .04em;
}

.nav nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.nav nav a:hover { color: var(--text); }

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(54px, 8vw, 104px);
  line-height: .92;
  letter-spacing: -.07em;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
}

.button {
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.primary {
  background: var(--accent);
  color: #111;
}

.secondary {
  border: 1px solid var(--line);
  color: var(--text);
}

.hero-panel {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    var(--panel);
  border-radius: 32px;
  padding: 34px;
  display: flex;
  align-items: end;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.35);
}

.hero-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(255,255,255,.035) 28px 29px);
  opacity: .45;
}

.ring {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -110px;
  top: 50px;
  border: 42px solid rgba(196,154,70,.22);
  border-radius: 50%;
}

.ring:after {
  content: "";
  position: absolute;
  inset: 48px;
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.panel-title {
  position: relative;
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-panel strong {
  position: relative;
  display: block;
  max-width: 360px;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.hero-panel p {
  position: relative;
  margin-top: 16px;
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
  border-top: 1px solid var(--line);
}

.intro p {
  max-width: 960px;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -.05em;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

h2 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -.06em;
  margin-bottom: 0;
}

.grid {
  display: grid;
  gap: 18px;
}

.three { grid-template-columns: repeat(3, 1fr); }

.card {
  min-height: 300px;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
}

.number {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .18em;
}

.card h3 {
  font-size: 25px;
  letter-spacing: -.04em;
}

.card p, .split p {
  color: var(--muted);
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.ticks {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 13px;
}

.ticks li {
  color: var(--text);
  padding-left: 26px;
  position: relative;
}

.ticks li:before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--muted);
  background: rgba(255,255,255,.03);
}

.contact {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 60px;
  align-items: start;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  background: var(--panel);
  display: grid;
  gap: 12px;
}

.contact-card strong {
  font-size: 24px;
}

.contact-card span {
  color: var(--muted);
}

.contact-card a {
  color: var(--accent-2);
}

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 52px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 860px) {
  .nav nav { display: none; }
  .hero, .split, .contact { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 54px 0 80px; }
  .hero-panel { min-height: 360px; }
  .three { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  footer { flex-direction: column; }
}
