:root {
  --bg: #070707;
  --bg-2: #101010;
  --panel: rgba(255,255,255,0.055);
  --panel-border: rgba(255,255,255,0.12);
  --text: #ffffff;
  --muted: #b8b8b8;
  --orange: #ff7a00;
  --orange-2: #ff9f1c;
  --shadow: 0 28px 80px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; position: relative; overflow: hidden; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(7,7,7,0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: 2px; }
.brand-mark {
  font-size: 30px;
  color: var(--orange);
  line-height: 1;
}
.brand-text { font-size: 18px; }
.nav-menu { display: flex; align-items: center; gap: 26px; color: var(--muted); font-weight: 600; }
.nav-menu a:hover { color: var(--orange); }
.nav-toggle { display: none; background: none; border: 0; color: white; font-size: 28px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #111;
  font-weight: 800;
  border: 1px solid transparent;
  box-shadow: 0 14px 35px rgba(255,122,0,0.22);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 45px rgba(255,122,0,0.32); }
.btn-outline { background: transparent; color: var(--text); border-color: rgba(255,255,255,0.22); box-shadow: none; }
.btn-small { padding: 10px 18px; color: #111 !important; }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  background:
    radial-gradient(circle at top right, rgba(255,122,0,0.28), transparent 34%),
    linear-gradient(135deg, #050505 0%, #0d1117 55%, #080808 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.eyebrow { color: var(--orange); font-weight: 900; letter-spacing: 2.5px; text-transform: uppercase; font-size: 13px; margin: 0 0 14px; }
h1, h2, h3 { line-height: 1.05; margin: 0; }
h1 { font-size: clamp(48px, 7vw, 96px); letter-spacing: -4px; }
h2 { font-size: clamp(34px, 4.3vw, 58px); letter-spacing: -2px; }
h3 { font-size: 24px; }
.hero-subtitle { font-size: 20px; color: var(--muted); max-width: 680px; margin: 26px 0 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-points { display: flex; gap: 18px; margin-top: 38px; font-size: 22px; font-weight: 900; }
.hero-points span:nth-child(2) { color: var(--orange); }
.hero-card { min-height: 430px; display: grid; place-items: center; }
.building-card {
  width: min(430px, 100%);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255,122,0,0.35);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.building-card::after { content: ''; position: absolute; width: 260px; height: 260px; background: var(--orange); filter: blur(110px); opacity: .22; bottom: -90px; right: -80px; }
.roof { width: 150px; height: 75px; border-top: 12px solid var(--orange); border-left: 12px solid var(--orange); transform: rotate(45deg); margin-bottom: -70px; }
.g3-large { font-size: 110px; font-weight: 900; color: var(--orange); z-index: 1; }
.building-card p { color: var(--muted); z-index: 1; font-weight: 700; }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.panel, .card, .offer-card, .metrics-card, .contact-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.panel h2 { margin-bottom: 20px; }
.panel p { color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; color: var(--muted); }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: '✦'; color: var(--orange); position: absolute; left: 0; }
.warning li::before { content: '×'; font-weight: 900; }
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 24px; }
.mini-grid div { background: rgba(0,0,0,0.28); border-radius: 18px; padding: 18px; }
.mini-grid strong { display: block; color: var(--orange); }
.mini-grid span { color: var(--muted); font-size: 14px; }

.section-heading { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { min-height: 120px; display: flex; align-items: end; font-weight: 800; font-size: 18px; }
.card:hover, .offer-card:hover { border-color: rgba(255,122,0,0.42); transform: translateY(-4px); }
.card, .offer-card { transition: .25s ease; }
.dark-band { background: linear-gradient(180deg, #0d0d0d, #070707); }
.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.offer-card p { color: var(--muted); }
.icon { color: var(--orange); font-size: 42px; display: inline-block; margin-bottom: 22px; }
.accent-panel { border-color: rgba(255,122,0,0.3); background: linear-gradient(145deg, rgba(255,122,0,0.16), rgba(255,255,255,0.04)); }
.g3-meaning { display: grid; gap: 18px; margin-top: 26px; }
.g3-meaning div { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 14px; }
.g3-meaning strong { color: var(--orange); font-size: 24px; }
.g3-meaning span { color: var(--muted); }
.investor-section { background: radial-gradient(circle at left, rgba(255,122,0,0.18), transparent 32%); }
.investor-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: center; }
.investor-grid p { color: var(--muted); font-size: 18px; }
.metrics-card { display: grid; gap: 16px; }
.metrics-card div { padding: 22px; border-radius: 18px; background: rgba(0,0,0,0.28); }
.metrics-card strong { display: block; color: var(--orange); font-size: 24px; }
.metrics-card span { color: var(--muted); }
.contact-section { padding-top: 50px; }
.contact-card { text-align: center; max-width: 900px; margin: 0 auto; border-color: rgba(255,122,0,0.35); }
.contact-card p { color: var(--muted); }
.contact-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin: 28px 0; }
.contact-details { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; color: var(--muted); font-weight: 700; }
.footer { padding: 34px 0; border-top: 1px solid rgba(255,255,255,0.08); color: var(--muted); }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.footer strong { color: white; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute; top: 78px; left: 20px; right: 20px;
    display: none; flex-direction: column; align-items: stretch;
    background: rgba(10,10,10,0.96); border: 1px solid rgba(255,255,255,0.12);
    padding: 20px; border-radius: 22px;
  }
  .nav-menu.open { display: flex; }
  .hero-grid, .split-grid, .investor-grid { grid-template-columns: 1fr; }
  .cards-grid, .offer-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { letter-spacing: -2px; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 68px 0; }
  .cards-grid, .offer-grid, .mini-grid { grid-template-columns: 1fr; }
  .hero-actions, .contact-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-points { font-size: 18px; gap: 12px; }
  .panel, .card, .offer-card, .metrics-card, .contact-card { padding: 24px; border-radius: 22px; }
  .footer-grid { flex-direction: column; text-align: center; }
}
