@import url('geo-footer.css');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a0e27;
  --gold: #f5a623;
  --gold2: #e8920f;
  --teal: #00c9a7;
  --white: #ffffff;
  --radius: 14px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4%;
  height: 68px;
  background: rgba(10,14,39,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.65rem; font-weight: 800; color: var(--white);
  text-decoration: none; letter-spacing: -.3px;
}
.nav-logo span { color: var(--gold); }
.nav-logo-img { height: 36px; width: auto; display: block; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; gap: 12px; }
.btn-nav-primary {
  padding: 8px 20px; border-radius: 8px;
  background: var(--gold); color: var(--navy);
  border: none; font-size: .88rem; font-weight: 700;
  text-decoration: none; transition: all .2s;
}
.btn-nav-primary:hover { background: var(--gold2); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: rgba(255,255,255,.8); border-radius: 2px;
  transition: all .3s;
}
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(10,14,39,.97); backdrop-filter: blur(12px);
  padding: 24px 4% 32px; z-index: 998; border-bottom: 1px solid rgba(255,255,255,.08);
  flex-direction: column; gap: 6px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,.75); text-decoration: none;
  font-size: 1rem; font-weight: 500; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-cta { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.mobile-menu .mobile-cta a {
  border-bottom: none; padding: 12px 24px; border-radius: 8px;
  font-size: .9rem; font-weight: 700; text-align: center; flex: 1;
}
.mobile-menu .mobile-cta .m-primary { background: var(--gold); color: var(--navy); border: none; }

/* PAGE HERO */
.page-hero {
  padding: 120px 4% 48px;
  background: linear-gradient(160deg, #060b22 0%, #0d1540 50%, #0a1535 100%);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 60%, rgba(245,166,35,.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,.15); border: 1px solid rgba(245,166,35,.3);
  color: var(--gold); padding: 6px 16px; border-radius: 50px;
  font-size: .82rem; font-weight: 600; margin-bottom: 20px; letter-spacing: .3px;
}
.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.6rem); font-weight: 900;
  color: var(--white); letter-spacing: -1px; margin-bottom: 12px;
  position: relative;
}
.page-hero .page-hero-sub {
  color: rgba(255,255,255,.5); font-size: .95rem; max-width: 560px; margin: 0 auto;
  position: relative;
}

/* MAIN */
.geo-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 4% 72px;
}
.geo-section {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.geo-section:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.geo-section h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -.3px;
}
.geo-figure {
  margin: 0 0 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
}
.geo-figure img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
.geo-lead {
  font-size: 1.02rem;
  color: rgba(255,255,255,.72);
  line-height: 1.85;
  margin-bottom: 0;
}
.geo-actions {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
}
.geo-back {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); text-decoration: none; font-weight: 600; font-size: .9rem;
  transition: opacity .2s;
}
.geo-back:hover { opacity: .85; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 700px) {
  .geo-inner { padding-bottom: 56px; }
}
