:root {
  --green: #2fbf71;
  --green-bright: #4ee89a;
  --green-dark: #1f9e5c;
  --gold: #f5b027;
  --navy: #050d1a;
  --navy-2: #0a1626;
  --navy-soft: #0f1e33;
  --navy-soft-2: #132742;
  --ink: #e6edf5;
  --text: #e6edf5;
  --muted: #9fb0c0;
  --line: rgba(255, 255, 255, 0.1);
  --surface: #122338;
  --surface-2: #162a42;
  --soft: #0e1c30;
  --input-bg: #0c1a2d;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 40px 90px rgba(0, 0, 0, 0.5);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: "Sora", "Inter", Arial, sans-serif;
  --font-body: "Inter", Arial, Helvetica, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: #0a1728;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; }

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 15px;
  cursor: pointer;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn-arrow { transition: transform 200ms var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 12px 28px rgba(47, 191, 113, 0.32);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  box-shadow: 0 16px 36px rgba(47, 191, 113, 0.42);
}
.btn-light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(5, 13, 26, 0.18);
}
.btn-outline {
  border-color: rgba(47, 191, 113, 0.55);
  color: var(--green-bright);
  background: transparent;
}
.btn-outline:hover { border-color: var(--green-bright); background: rgba(47, 191, 113, 0.1); box-shadow: 0 10px 24px rgba(47, 191, 113, 0.16); }
.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); }
.btn-ghost-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  background: rgba(5, 13, 26, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.site-header.is-scrolled {
  background: rgba(5, 13, 26, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 168px; max-height: 50px; object-fit: contain; }
.brand-fallback {
  display: none;
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  font-family: var(--font-display);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: color 160ms ease, background 160ms ease;
}
.site-nav a:hover, .site-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.dashboard-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  padding: 12px 22px;
  border-radius: 11px;
  font-weight: 700;
  font-family: var(--font-display);
  box-shadow: 0 10px 24px rgba(47, 191, 113, 0.32);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}
.dashboard-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(47, 191, 113, 0.42); }
.auth-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
}
.auth-links a {
  color: rgba(255, 255, 255, 0.82);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: color 160ms ease, background 160ms ease;
}
.auth-links a:hover, .auth-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 11px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 132px 0 0;
  background:
    radial-gradient(60% 55% at 78% 18%, rgba(47, 191, 113, 0.2), transparent 62%),
    radial-gradient(45% 45% at 12% 78%, rgba(30, 100, 190, 0.22), transparent 60%),
    linear-gradient(140deg, #050d1a 0%, #0a1a30 55%, #050d1a 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 13, 26, 0.92) 0%, rgba(5, 13, 26, 0.55) 55%, rgba(5, 13, 26, 0.3) 100%),
    linear-gradient(180deg, rgba(5, 13, 26, 0.4) 0%, rgba(5, 13, 26, 0.05) 40%, rgba(5, 13, 26, 0.94) 100%);
}
.hero-glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000 0%, transparent 100%);
  opacity: 0.5;
}
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.hero-content {
  position: relative;
  color: #fff;
  max-width: 640px;
  text-align: left;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(47, 191, 113, 0.24);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47, 191, 113, 0.5); }
  60% { box-shadow: 0 0 0 8px rgba(47, 191, 113, 0); }
}
.hero h1, .page-hero h1 {
  margin: 0;
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.hero h1 span, h2 span { color: var(--green-bright); }
.hero-copy {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}
.hero-actions, .center-actions, .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-actions { margin-top: 26px; justify-content: flex-start; }

/* ---------- Animated Globe ---------- */
.globe {
  position: relative;
  width: min(360px, 40vw);
  aspect-ratio: 1;
  animation: globe-breathe 9s ease-in-out infinite;
}
@keyframes globe-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}
.globe-glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 191, 113, 0.34), rgba(47, 191, 113, 0.08) 55%, transparent 72%);
  filter: blur(8px);
  animation: glow-pulse 4.5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}
.globe-core {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 28%, rgba(22, 68, 52, 0.95), rgba(6, 18, 34, 0.96) 62%);
  box-shadow:
    inset -16px -14px 40px rgba(0, 0, 0, 0.6),
    inset 10px 10px 30px rgba(120, 255, 190, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(120, 255, 190, 0.18);
}
.globe-lat {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(120, 255, 190, 0.4);
  stroke-width: 0.7;
}
.globe-spin {
  position: absolute;
  inset: 0;
  display: flex;
  width: 200%;
  animation: globe-rotate 14s linear infinite;
}
.globe-wire {
  width: 50%;
  height: 100%;
  flex: none;
  fill: none;
  stroke: rgba(120, 255, 190, 0.5);
  stroke-width: 0.7;
}
@keyframes globe-rotate {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.globe-shade {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(115deg, transparent 40%, rgba(3, 10, 20, 0.55) 100%);
}
.globe-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(120, 255, 190, 0.4);
  inset: 8%;
  transform: rotateX(74deg) rotateZ(-18deg);
  animation: orbit-spin 18s linear infinite;
}
.globe-orbit-b {
  inset: 2%;
  border-color: rgba(122, 184, 255, 0.35);
  transform: rotateX(74deg) rotateZ(60deg);
  animation: orbit-spin 26s linear infinite reverse;
}
@keyframes orbit-spin {
  from { transform: rotateX(74deg) rotateZ(-18deg); }
  to { transform: rotateX(74deg) rotateZ(342deg); }
}
.globe-orb {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 18px 4px rgba(78, 232, 154, 0.6);
  animation: orb-float 6s ease-in-out infinite;
}
.globe-orb-1 { top: 18%; right: 14%; }
.globe-orb-2 { bottom: 20%; left: 16%; width: 8px; height: 8px; background: #7ab8ff; box-shadow: 0 0 14px 3px rgba(122, 184, 255, 0.55); animation-delay: -2s; }
.globe-orb-3 { top: 46%; right: 4%; width: 6px; height: 6px; background: var(--gold); box-shadow: 0 0 12px 3px rgba(245, 176, 39, 0.55); animation-delay: -4s; }
@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
  50% { transform: translateY(-18px) scale(1.15); opacity: 1; }
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  overflow: hidden;
  margin-top: 48px;
  backdrop-filter: blur(10px);
}
.hero-stat {
  padding: 20px 16px;
  text-align: center;
  background: rgba(10, 26, 48, 0.72);
  color: #fff;
}
.hero-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  color: var(--green-bright);
  line-height: 1.1;
}
.hero-stat span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--green-bright);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  font-family: var(--font-display);
}
.section-head h2, .contact-panel h2, .form-card h2, .application-intro h2, .map-card h2, .dual-card h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  font-weight: 800;
}
.section-head p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto;
  max-width: 680px;
  font-size: 17px;
}
.section-head.compact { margin-bottom: 34px; }

/* ---------- Feature Grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(47, 191, 113, 0.35);
}
.feature-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(47, 191, 113, 0.14), rgba(47, 191, 113, 0.05));
  border: 1px solid rgba(47, 191, 113, 0.22);
  transition: transform 260ms var(--ease);
}
.feature-card:hover .feature-icon { transform: scale(1.06) rotate(-3deg); }
.feature-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.feature-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}
.card-line {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  opacity: 0;
  transition: opacity 260ms var(--ease);
}
.feature-card:hover .card-line { opacity: 1; }

.feature-card.dark {
  background: linear-gradient(180deg, #10233a, var(--surface));
  border-color: rgba(120, 255, 190, 0.14);
}
.feature-card.dark h3 { color: #fff; }
.feature-card.dark p { color: rgba(255, 255, 255, 0.7); }
.feature-card.dark .feature-icon {
  background: linear-gradient(135deg, rgba(47, 191, 113, 0.2), rgba(47, 191, 113, 0.08));
  border-color: rgba(47, 191, 113, 0.32);
}
.feature-card.dark:hover { border-color: rgba(47, 191, 113, 0.4); box-shadow: var(--shadow); }

.affiliate-section {
  background:
    radial-gradient(50% 40% at 100% 0%, rgba(47, 191, 113, 0.1), transparent 60%),
    linear-gradient(180deg, #0b192c, #0e1e34);
}
.center-actions {
  justify-content: center;
  margin-top: 48px;
}

/* ---------- How It Works ---------- */
.how-section {
  background:
    radial-gradient(50% 40% at 0% 100%, rgba(30, 100, 190, 0.12), transparent 60%),
    linear-gradient(180deg, #0d1c31, #0b192c);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.step-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px 34px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  margin-bottom: 22px;
  box-shadow: 0 10px 22px rgba(47, 191, 113, 0.3);
}
.step-card h3 { margin: 0 0 10px; color: #fff; font-size: 20px; font-weight: 700; }
.step-card p { margin: 0; color: rgba(255, 255, 255, 0.7); font-size: 15px; }

/* ---------- Advertiser Section ---------- */
.advertiser-section {
  background:
    radial-gradient(50% 40% at 0% 100%, rgba(30, 100, 190, 0.12), transparent 60%),
    radial-gradient(50% 40% at 100% 0%, rgba(47, 191, 113, 0.1), transparent 60%),
    linear-gradient(180deg, #0e1e34, #0c1b2f);
}
.advertiser-section .section-head h2 { color: #fff; }
.advertiser-section .section-head p { color: rgba(255, 255, 255, 0.72); }
.advertiser-section .eyebrow { color: var(--green-bright); }

/* ---------- Dual CTA ---------- */
.dual-cta-section {
  padding: 72px 0;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(47, 191, 113, 0.08), transparent 60%),
    linear-gradient(180deg, #0c1b2f, #0a1728);
}
.dual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.dual-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 44px 40px;
  color: #fff;
  background:
    radial-gradient(80% 100% at 100% 0%, rgba(47, 191, 113, 0.28), transparent 55%),
    linear-gradient(150deg, var(--navy-soft-2), var(--navy-2));
  overflow: hidden;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}
.dual-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dual-card:nth-child(2) {
  background:
    radial-gradient(80% 100% at 0% 0%, rgba(30, 100, 190, 0.3), transparent 55%),
    linear-gradient(150deg, var(--navy-2), var(--navy));
}
.dual-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-bright);
  background: rgba(47, 191, 113, 0.14);
  border: 1px solid rgba(47, 191, 113, 0.3);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.dual-card:nth-child(2) .dual-tag { color: #7ab8ff; background: rgba(30, 100, 190, 0.2); border-color: rgba(30, 100, 190, 0.4); }
.dual-card h2 { color: #fff; margin-bottom: 12px; }
.dual-card p { margin: 0 0 28px; color: rgba(255, 255, 255, 0.74); }

/* ---------- Partners ---------- */
.partners-section { padding-top: 68px; padding-bottom: 68px; background: linear-gradient(180deg, #0a1728, #0d1c31); }
.partners-section .section-head h2 { font-size: clamp(24px, 3vw, 32px); }
.partners {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.partners a {
  min-width: 200px;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
  padding: 12px 24px;
}
.partners a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(47, 191, 113, 0.35);
}
.partners img {
  max-height: 44px;
  width: auto;
}

/* ---------- Contact ---------- */
.contact-section {
  background:
    radial-gradient(50% 40% at 100% 100%, rgba(47, 191, 113, 0.08), transparent 60%),
    linear-gradient(180deg, #0d1c31, #0b192c);
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 32px;
  align-items: stretch;
}
.contact-panel, .form-card, .application-form, .application-intro, .map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  box-shadow: var(--shadow);
}
.contact-panel {
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--green-bright), var(--gold));
}
.contact-panel p { color: rgba(255, 255, 255, 0.72); }
.contact-panel h2 { font-size: clamp(26px, 3vw, 34px); }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 16px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
  transition: border-color 200ms ease, transform 200ms var(--ease);
}
.contact-list li:hover { border-color: rgba(47, 191, 113, 0.4); transform: translateX(4px); }
.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-size: 18px;
}
.contact-list b {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}
.contact-list a, .contact-list span { color: rgba(255, 255, 255, 0.72); font-size: 15px; }
.contact-list a:hover { color: var(--green-bright); }

/* ---------- Forms ---------- */
form label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
form label span { font-size: 14px; font-weight: 700; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: var(--input-bg);
  min-height: 50px;
  padding: 12px 15px;
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
input::placeholder, textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(47, 191, 113, 0.16);
  outline: none;
}
select option { background: var(--surface-2); color: #fff; }
.form-card {
  padding: 40px 36px;
  display: grid;
  gap: 18px;
}
.form-card h2 { margin-bottom: 0; }
.form-card > p { margin: 0; color: rgba(255, 255, 255, 0.72); }
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form-status { min-height: 24px; color: var(--green-bright); font-weight: 700; }
.alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 15px;
}
.alert-success { background: rgba(47, 191, 113, 0.14); color: #4ee89a; border: 1px solid rgba(47, 191, 113, 0.3); }
.alert-error { background: rgba(239, 68, 68, 0.16); color: #fca5a5; border: 1px solid rgba(239, 68, 68, 0.35); }
.alert-error ul { margin: 0; padding-left: 20px; }

/* ---------- Map ---------- */
.map-section {
  padding: 0 0 100px;
  background: linear-gradient(180deg, #0b192c, #0a1728);
}
.map-card {
  padding: 28px;
}
.map-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.map-card h2 { font-size: clamp(22px, 3vw, 28px); margin-bottom: 4px; color: #fff; }
.map-card p { color: rgba(255, 255, 255, 0.72); margin: 0; }
.map-pin {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-size: 22px;
  box-shadow: 0 10px 24px rgba(47, 191, 113, 0.32);
}
.map-card iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 12px;
  display: block;
  filter: saturate(0.95) contrast(1.02);
}

/* ---------- Page Hero (Advertiser) ---------- */
.page-hero {
  padding: 200px 0 100px;
  color: #fff;
  background:
    radial-gradient(55% 45% at 82% 22%, rgba(47, 191, 113, 0.2), transparent 60%),
    radial-gradient(45% 45% at 10% 80%, rgba(30, 100, 190, 0.24), transparent 60%),
    linear-gradient(140deg, #050d1a 0%, #0a1a30 60%, #050d1a 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(70% 70% at 50% 30%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 30%, #000 0%, transparent 100%);
}
.page-hero .container { position: relative; }
.page-hero .eyebrow { color: var(--green-bright); }
.page-hero p:last-child {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.application-section {
  background:
    radial-gradient(50% 40% at 100% 0%, rgba(47, 191, 113, 0.08), transparent 60%),
    linear-gradient(180deg, #0e1e34, #0b192c);
}
.app-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 32px;
  align-items: start;
}
.application-intro {
  padding: 36px;
  position: sticky;
  top: 112px;
}
.application-intro h2 { font-size: clamp(24px, 3vw, 32px); }
.application-intro p { color: rgba(255, 255, 255, 0.72); }
.mini-stats {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.mini-stats div {
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(47, 191, 113, 0.14), rgba(47, 191, 113, 0.05));
  border: 1px solid rgba(47, 191, 113, 0.28);
}
.mini-stats b {
  display: block;
  color: var(--green-bright);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
}
.mini-stats span { color: rgba(255, 255, 255, 0.72); }
.application-form {
  padding: 36px;
  display: grid;
  gap: 28px;
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
legend {
  width: 100%;
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

/* ---------- Login ---------- */
.login-section {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(50% 40% at 100% 0%, rgba(47, 191, 113, 0.08), transparent 60%),
    linear-gradient(180deg, #0e1e34, #0b192c);
}
.login-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  max-width: 960px;
}
.login-panel h1 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(36px, 4.4vw, 52px);
  line-height: 1.1;
  font-weight: 800;
}
.login-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  max-width: 420px;
}
.login-form {
  align-content: start;
}
.login-form .form-actions { justify-content: flex-start; margin-top: 4px; }

/* ---------- Footer ---------- */
.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, #081224, #040a14);
  padding: 64px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 36px;
}
.footer-logo img { width: 168px; margin-bottom: 18px; }
.site-footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.03em;
}
.site-footer p { margin: 0 0 12px; }
.site-footer a {
  display: block;
  margin: 0 0 10px;
  transition: color 160ms ease, transform 160ms ease;
}
.site-footer a:hover { color: var(--green-bright); transform: translateX(3px); }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  transition: background 160ms ease, transform 160ms ease;
}
.socials a:hover { background: var(--green); transform: translateY(-2px); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-size: 14px;
}
.footer-bottom div { display: flex; gap: 20px; }
.footer-bottom a, .footer-bottom p { margin: 0; }

/* ---------- Scroll Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .header-inner { min-height: 74px; }
  .brand img { width: 148px; }
  .nav-toggle { display: block; margin-left: auto; }
  .dashboard-btn, .auth-links { display: none; }
  .site-nav {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 16px;
    background: rgba(5, 13, 26, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 16px; border-radius: 10px; }
  .hero { min-height: auto; padding-top: 120px; padding-bottom: 40px; }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .hero-content { max-width: 680px; margin: 0 auto; text-align: center; }
  .hero-copy { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .globe { width: min(280px, 60vw); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); margin-top: 36px; }
  .feature-grid, .contact-layout, .app-layout, .footer-grid, .steps-grid, .dual-grid, .login-layout {
    grid-template-columns: 1fr;
  }
  .application-intro { position: static; }
  .section { padding: 76px 0; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero { min-height: auto; padding-top: 104px; padding-bottom: 28px; }
  .hero h1, .page-hero h1 { font-size: 30px; }
  .hero-copy { font-size: 15px; }
  .globe { width: min(220px, 70vw); }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stat { padding: 16px 12px; }
  .feature-card, .contact-panel, .form-card, .application-form, .application-intro, .map-card, .dual-card {
    padding: 26px 22px;
  }
  .form-row {
    grid-template-columns: 1fr;
    display: grid;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-bottom div { flex-wrap: wrap; gap: 14px; }
  .page-hero { padding: 160px 0 72px; }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
  .dual-card { padding: 34px 26px; }
}
