:root {
  --bg: #090b0e;
  --panel: #0e1115;
  --text: #f4f2ee;
  --muted: #818892;
  --line: rgba(255, 255, 255, 0.09);
  --accent: #ff6b35;
  --accent-hot: #ff4538;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 72% 35%, rgba(255, 89, 48, 0.08), transparent 30%),
    linear-gradient(135deg, #080a0d 0%, #0c0f13 58%, #080a0d 100%);
  color: var(--text);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
}
a { color: inherit; }

.page-shell {
  position: relative;
  width: min(1480px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
}
.page-shell::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 76%);
  content: "";
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255,107,53,.35);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(255,107,53,.18), rgba(255,69,56,.05));
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name strong { font-size: 13px; letter-spacing: .18em; }
.brand-name small { margin-top: 5px; color: var(--accent); font-size: 8px; font-weight: 800; letter-spacing: .38em; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #d8dadd;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: .2s ease;
}
.header-cta:hover { border-color: rgba(255,107,53,.42); color: var(--accent); transform: translateY(-1px); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr);
  min-height: 650px;
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: 78px 0 58px;
}
.hero-copy { position: relative; z-index: 2; align-self: center; max-width: 650px; }
.status-line { display: flex; align-items: center; gap: 9px; color: #8d949e; font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.status-line span { width: 7px; height: 7px; border-radius: 50%; background: #4fdd99; box-shadow: 0 0 15px rgba(79,221,153,.6); }
.eyebrow { margin: 46px 0 13px; color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .24em; }
h1 { margin: 0; font-size: clamp(54px, 6.2vw, 92px); line-height: .94; letter-spacing: -.075em; }
h1 em { color: transparent; font-style: normal; -webkit-text-stroke: 1.5px var(--accent); }
.lead { max-width: 600px; margin: 27px 0 0; color: #969ca4; font-size: 14px; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 20px; margin-top: 34px; }
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 238px;
  padding: 16px 18px;
  border: 1px solid rgba(255,107,53,.55);
  border-radius: 10px;
  background: linear-gradient(120deg, rgba(255,107,53,.2), rgba(255,69,56,.11));
  box-shadow: 0 18px 50px rgba(255,70,45,.11);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  transition: .2s ease;
}
.primary-cta b { color: var(--accent); font-size: 18px; }
.primary-cta:hover { border-color: var(--accent); background: linear-gradient(120deg, rgba(255,107,53,.3), rgba(255,69,56,.17)); transform: translateY(-2px); }
.access-note { max-width: 180px; color: #5f6670; font-size: 9px; line-height: 1.5; }

.hero-visual { position: relative; align-self: stretch; min-height: 500px; }
.hero-visual::before {
  position: absolute;
  inset: 4% -15% 2% 3%;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 48% 48% 12px 12px;
  background: linear-gradient(155deg, rgba(255,255,255,.03), transparent 55%);
  content: "";
}
.sun { position: absolute; top: 17%; right: 15%; width: 210px; height: 210px; border-radius: 50%; background: radial-gradient(circle at 40% 40%, #ffad60, #f04b35 46%, rgba(240,75,53,.05) 70%); filter: blur(.2px); box-shadow: 0 0 90px rgba(255,79,48,.22); }
.city { position: absolute; right: 2%; bottom: 15%; left: 9%; display: flex; align-items: flex-end; gap: 7px; }
.city i { display: block; flex: 1; border: 1px solid rgba(255,255,255,.055); background: #15191e; box-shadow: inset 0 0 25px rgba(255,107,53,.025); }
.city i:nth-child(1) { height: 125px; }.city i:nth-child(2) { height: 200px; }.city i:nth-child(3) { height: 158px; }.city i:nth-child(4) { height: 250px; }.city i:nth-child(5) { height: 175px; }.city i:nth-child(6) { height: 105px; }
.city-back { right: -6%; bottom: 24%; opacity: .48; transform: scale(.86); transform-origin: bottom; }
.city-back i:nth-child(1) { height: 210px; }.city-back i:nth-child(2) { height: 145px; }.city-back i:nth-child(3) { height: 270px; }.city-back i:nth-child(4) { height: 180px; }.city-back i:nth-child(5) { height: 230px; }
.road { position: absolute; right: -4%; bottom: 4%; left: 1%; height: 115px; background: linear-gradient(165deg, transparent 0 45%, #171b20 46% 75%, transparent 76%); transform: skewX(-10deg); }
.road span { position: absolute; top: 65%; right: 7%; left: 20%; height: 1px; background: repeating-linear-gradient(90deg, rgba(255,107,53,.65) 0 34px, transparent 34px 72px); }
.visual-label { position: absolute; right: 3%; bottom: 9%; display: flex; flex-direction: column; padding: 10px 14px; border-left: 2px solid var(--accent); background: rgba(8,10,13,.74); }
.visual-label small { color: #666e78; font-size: 7px; letter-spacing: .2em; }.visual-label strong { margin-top: 3px; font-size: 10px; letter-spacing: .12em; }

.promise { display: grid; grid-template-columns: repeat(3, 1fr); width: min(1240px, calc(100% - 64px)); margin: 0 auto; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.promise article { display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 25px 25px 27px 0; }
.promise article + article { padding-left: 25px; border-left: 1px solid var(--line); }
.promise span { color: var(--accent); font-size: 8px; font-weight: 800; }
.promise h2 { margin: 0; font-size: 10px; letter-spacing: .08em; }
.promise p { margin: 7px 0 0; color: #69717b; font-size: 9px; line-height: 1.6; }

footer { display: flex; justify-content: space-between; width: min(1240px, calc(100% - 64px)); margin: 0 auto; padding: 25px 0 35px; color: #4f5660; font-size: 8px; font-weight: 700; letter-spacing: .16em; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 60px; }
  .hero-copy { max-width: 710px; }
  .hero-visual { min-height: 430px; margin-top: -25px; opacity: .72; }
  .promise { grid-template-columns: 1fr; }
  .promise article, .promise article + article { padding: 20px 0; border-left: 0; }
  .promise article + article { border-top: 1px solid var(--line); }
}

@media (max-width: 600px) {
  .site-header, .hero, .promise, footer { width: min(100% - 36px, 1240px); }
  .site-header { padding: 20px 0; }
  .brand-name { display: none; }
  .header-cta { padding: 10px 12px; }
  .hero { min-height: auto; padding: 54px 0 35px; }
  .eyebrow { margin-top: 34px; }
  h1 { font-size: clamp(46px, 16vw, 68px); }
  .lead { font-size: 12px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .primary-cta { width: 100%; }
  .access-note { max-width: none; }
  .hero-visual { min-height: 330px; margin-top: 0; }
  .sun { top: 14%; right: 5%; width: 160px; height: 160px; }
  .city { left: 0; }
  .visual-label { right: 0; }
  footer { gap: 15px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
