:root {
  --bg: #0A0C10;
  --surface: #111318;
  --surface-2: #1A1D24;
  --fg: #F0EDE8;
  --fg-muted: #8A8580;
  --fg-subtle: #4A4843;
  --accent: #D4A853;
  --accent-dim: rgba(212, 168, 83, 0.12);
  --border: rgba(212, 168, 83, 0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 48px 100px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 168, 83, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 83, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 30%, transparent 80%);
}
.hero-content {
  max-width: 860px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 32px 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  max-width: 700px;
  margin: 0 auto;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* MANIFESTO */
.manifesto {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  line-height: 1.3;
  margin-bottom: 36px;
}
.manifesto-body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

/* PILLARS */
.pillars {
  padding: 100px 48px;
}
.pillars-header {
  max-width: 700px;
  margin: 0 auto 72px;
  text-align: center;
}
.pillars-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.pillars-sub {
  font-size: 16px;
  color: var(--fg-muted);
}
.pillars-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
}
.pillar {
  background: var(--surface);
  padding: 48px 40px;
  transition: background 0.2s;
}
.pillar:hover {
  background: var(--surface-2);
}
.pillar-icon {
  margin-bottom: 28px;
  width: 32px;
  height: 32px;
}
.pillar-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.pillar-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* OUTCOMES */
.outcomes {
  padding: 100px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.outcomes-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.outcomes-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  color: var(--fg);
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.outcome {
  background: var(--bg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.outcome-metric {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.outcome-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 120px;
}
.outcomes-note {
  text-align: center;
  font-size: 12px;
  color: var(--fg-subtle);
  margin-top: 24px;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 40px;
}
.closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  background: var(--surface);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
}
.footer-meta {
  font-size: 12px;
  color: var(--fg-subtle);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-sep { color: var(--fg-subtle); }

/* ─── GLOBALSTAY LANDING PAGE ─────────────────────────────────────────────── */

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 20px 48px; border-bottom: 1px solid var(--border); background: rgba(10, 12, 16, 0.88); backdrop-filter: blur(12px); display: flex; align-items: center; }
.nav-inner { max-width: 1200px; width: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 600; color: var(--accent); letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-link { font-size: 13px; color: var(--fg-muted); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; }
.nav-link:hover { color: var(--fg); }

/* HERO */
.gs-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 48px 100px;
  position: relative;
  overflow: hidden;
}
.gs-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.gs-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 15, 0.72) 0%, rgba(10, 10, 15, 0.88) 60%, #0a0c10 100%);
}
.gs-hero-content {
  max-width: 860px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.gs-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.gs-hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 28px;
}
.gs-hero-lede {
  font-size: 18px;
  color: rgba(240, 237, 232, 0.75);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.gs-hero-ctas { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: #e8bb5f; transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); background: var(--accent-dim); }

/* STATS ROW */
.gs-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 56px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.gs-stat-box { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 0 64px; }
.gs-stat-number { font-family: 'Playfair Display', Georgia, serif; font-size: 48px; font-weight: 600; color: var(--accent); line-height: 1; }
.gs-stat-icon { color: var(--accent); display: flex; align-items: center; }
.gs-stat-label { font-size: 12px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.gs-stat-divider { width: 1px; height: 60px; background: var(--border); }

/* SHARED SECTION HEADER */
.gs-section-header { max-width: 700px; margin: 0 auto 72px; text-align: center; }
.gs-section-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(28px, 4vw, 48px); font-weight: 600; color: var(--fg); line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.01em; }
.gs-section-sub { font-size: 16px; color: var(--fg-muted); }

/* FEATURE PILLARS */
.gs-pillars { padding: 100px 48px; }
.gs-pillars-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; border: 1px solid var(--border); }
.gs-pillar { background: var(--surface); padding: 52px 44px; transition: background 0.2s; }
.gs-pillar:hover { background: var(--surface-2); }
.gs-pillar-icon { margin-bottom: 28px; width: 28px; height: 28px; }
.gs-pillar-title { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 600; color: var(--fg); margin-bottom: 18px; letter-spacing: -0.01em; }
.gs-pillar-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.8; }

/* PLATFORM FEATURES GRID */
.gs-features { padding: 100px 48px; background: var(--surface); border-top: 1px solid var(--border); }
.gs-features-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; border: 1px solid var(--border); }
.gs-feature-card { background: var(--bg); padding: 40px 36px; transition: background 0.2s; }
.gs-feature-card:hover { background: var(--surface-2); }
.gs-feature-icon { margin-bottom: 20px; width: 22px; height: 22px; color: var(--accent); }
.gs-feature-title { font-family: 'Playfair Display', Georgia, serif; font-size: 17px; font-weight: 600; color: var(--fg); margin-bottom: 12px; }
.gs-feature-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.75; }

/* WHO IT'S FOR */
.gs-who { padding: 100px 48px; }
.gs-who-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; border: 1px solid var(--border); }
.gs-who-card { background: var(--surface); padding: 48px 40px; transition: background 0.2s; }
.gs-who-card:hover { background: var(--surface-2); }
.gs-who-icon { margin-bottom: 24px; color: var(--accent); }
.gs-who-title { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 600; color: var(--fg); margin-bottom: 16px; }
.gs-who-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.75; }

/* TESTIMONIALS */
.gs-testimonials { padding: 100px 48px; background: var(--surface); border-top: 1px solid var(--border); }
.gs-testimonials-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gs-testimonial { background: var(--bg); border: 1px solid var(--border); padding: 40px 36px; border-radius: 2px; display: flex; flex-direction: column; gap: 20px; }
.gs-testimonial-stars { display: flex; gap: 4px; }
.gs-testimonial-text { font-size: 14px; color: var(--fg-muted); line-height: 1.8; font-style: italic; flex: 1; }
.gs-testimonial-author { display: flex; flex-direction: column; gap: 4px; margin-top: auto; }
.gs-testimonial-name { font-size: 14px; font-weight: 600; color: var(--fg); }
.gs-testimonial-role { font-size: 12px; color: var(--fg-subtle); }

/* FOOTER */
.gs-footer { border-top: 1px solid var(--border); padding: 48px 48px 32px; background: var(--surface); }
.gs-footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; }
.gs-footer-brand { display: flex; flex-direction: column; gap: 8px; }
.gs-footer-logo { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 600; color: var(--accent); }
.gs-footer-tagline { font-size: 13px; color: var(--fg-muted); max-width: 300px; }
.gs-footer-links { display: flex; align-items: center; gap: 8px; }
.gs-footer-link { font-size: 12px; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.gs-footer-link:hover { color: var(--fg); }
.gs-footer-sep { color: var(--fg-subtle); font-size: 12px; }
.gs-footer-copy { max-width: 1100px; margin: 0 auto; font-size: 11px; color: var(--fg-subtle); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .gs-pillars-grid,
  .gs-features-grid,
  .gs-who-grid,
  .gs-testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { gap: 20px; }
  .gs-hero { padding: 120px 24px 80px; }
  .gs-stats { flex-direction: column; gap: 0; padding: 40px 24px; }
  .gs-stat-box { padding: 32px 0; border-bottom: 1px solid var(--border); }
  .gs-stat-box:last-child { border-bottom: none; }
  .gs-stat-divider { width: 60px; height: 1px; }
  .gs-pillars, .gs-features, .gs-who, .gs-testimonials { padding: 72px 24px; }
  .gs-pillars-grid, .gs-features-grid, .gs-who-grid { grid-template-columns: 1fr; }
  .gs-testimonials-grid { grid-template-columns: 1fr; }
  .gs-footer-inner { flex-direction: column; gap: 24px; }
  .gs-footer-copy { text-align: center; }
}

@media (max-width: 480px) {
  .gs-hero-headline { font-size: 38px; }
  .gs-hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .gs-stat-number { font-size: 40px; }
}