:root {
  --black: #080b0e;
  --graphite: #11171d;
  --panel: #182129;
  --line: #2b3740;
  --white: #f3f6f7;
  --muted: #9aa8b2;
  --amber: #ff9d24;
  --blue: #1d8cff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--black); color: var(--white); font: 16px/1.55 Arial, sans-serif; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; z-index: 20; padding: .7rem; background: #fff; color: #000; }
.header { height: 76px; display: flex; align-items: center; gap: 2.8rem; padding: 0 max(4vw, 24px); position: absolute; z-index: 4; width: 100%; border-bottom: 1px solid rgba(255,255,255,.16); }
.brand { display: inline-flex; align-items: center; gap: 7px; color: #fff; text-decoration: none; letter-spacing: .08em; font-weight: 900; }
.brand i { width: 20px; height: 20px; border: 5px solid var(--amber); transform: rotate(45deg); margin-right: 5px; }
.brand b { color: var(--amber); font-size: .72rem; align-self: flex-start; margin-top: 3px; }
nav { display: flex; gap: 2rem; margin: auto; }
nav a, .header-cta { color: #dce3e7; text-decoration: none; font-weight: 700; }
nav a:hover, .header-cta:hover { color: var(--amber); }
.hero { min-height: 800px; position: relative; display: flex; align-items: center; justify-content: flex-end; padding: 120px max(6vw,30px) 120px; overflow: hidden; }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,11,14,.2) 0%, rgba(8,11,14,.3) 45%, rgba(8,11,14,.94) 75%, #080b0e 100%); }
.hero-copy { width: min(720px,50vw); position: relative; z-index: 2; }
.eyebrow { color: var(--amber); text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 900; margin: 0 0 1.15rem; }
h1 { font-size: clamp(3rem,5.6vw,6.3rem); line-height: .92; letter-spacing: -.065em; margin: 0 0 1.7rem; }
h2 { font-size: clamp(2.2rem,4.2vw,4.6rem); line-height: 1; letter-spacing: -.05em; margin: 0; }
h3 { font-size: 1.22rem; margin: .7rem 0; }
.hero-copy > p:not(.eyebrow) { font-size: 1.2rem; color: #bec8ce; max-width: 630px; }
.actions { display: flex; align-items: center; gap: 26px; margin-top: 2rem; }
.button { background: var(--amber); color: #0a0d0f; font-weight: 900; padding: 16px 22px; text-decoration: none; }
.text-link { color: #fff; text-decoration: none; font-weight: 700; }
.hero-note { position: absolute; left: max(4vw,24px); bottom: 40px; z-index: 2; display: flex; gap: 18px; max-width: 330px; color: #d7e0e5; }
.hero-note span { color: var(--amber); font-weight: 900; }
.hero-note p { margin: 0; }
.facts { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.facts div { padding: 34px max(3vw,24px); display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.facts strong { font-size: 1.7rem; }
.facts span { color: var(--muted); }
.section { padding: 120px max(6vw,30px); }
.section-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: 8vw; align-items: end; }
.section-head > p { color: var(--muted); font-size: 1.13rem; margin: 0; }
.grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); margin-top: 60px; border: 1px solid var(--line); }
.grid article { background: var(--graphite); padding: 28px; min-height: 245px; }
.grid article:hover { background: var(--panel); }
.grid article span, .timeline span { color: var(--amber); font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.grid p, .timeline p { color: var(--muted); }
.industries { padding: 110px max(6vw,30px); background: #eef2f4; color: #12181d; }
.industry-list { margin-top: 55px; border-top: 1px solid #aab3b9; }
.industry-list div { display: flex; justify-content: space-between; gap: 20px; padding: 21px 0; border-bottom: 1px solid #c8d0d4; font-size: clamp(1.1rem,2vw,1.6rem); font-weight: 750; }
.industry-list b { color: #7b858c; font-size: .8rem; }
.format { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; }
.format-title { position: sticky; top: 40px; align-self: start; }
.timeline { border-top: 1px solid var(--line); }
.timeline article { padding: 30px 0; border-bottom: 1px solid var(--line); }
.cta { margin: 0 22px 22px; background: var(--blue); padding: 90px max(5vw,30px); display: grid; grid-template-columns: 1.15fr .85fr; gap: 6vw; align-items: end; }
.cta .eyebrow { color: #0b1a27; }
.cta p { max-width: 650px; }
.contact { background: #08111a; padding: 34px; display: flex; flex-direction: column; gap: 12px; }
.contact a { color: #fff; text-decoration: none; font-weight: 800; }
.contact .number { font-size: clamp(1.8rem,3vw,3rem); letter-spacing: -.04em; }
footer { padding: 45px max(6vw,30px); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; color: var(--muted); font-size: .88rem; }

@media (max-width: 900px) {
  .header { gap: 1rem; height: 68px; }
  nav { display: none; }
  .header-cta { margin-left: auto; font-size: .83rem; }
  .hero { min-height: 840px; align-items: flex-start; justify-content: flex-start; padding: 120px 22px 190px; }
  .hero > img { object-position: 33% center; }
  .hero-overlay { background: linear-gradient(180deg,rgba(8,11,14,.96) 0%,rgba(8,11,14,.58) 60%,rgba(8,11,14,.96) 100%); }
  .hero-copy { width: 100%; }
  h1 { font-size: 3.15rem; }
  .actions { flex-direction: column; align-items: stretch; text-align: center; }
  .facts { grid-template-columns: 1fr 1fr; }
  .facts div { padding: 24px 20px; }
  .section, .industries { padding: 78px 22px; }
  .section-head, .format, .cta { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr 1fr; }
  .format-title { position: static; }
  .cta { margin: 0; padding: 75px 22px; }
  footer { grid-template-columns: 1fr; padding: 40px 22px; }
}

@media (max-width: 560px) {
  .brand span { font-size: .9rem; }
  .brand b { font-size: .58rem; }
  .facts, .grid { grid-template-columns: 1fr; }
  .grid article { min-height: auto; }
}
