/* ============================================================
   GOLDEN EFFORT — SHARED LANDING/EXPLAINER PAGE STYLES
   Used by narrative/persuasive pages: /buy-with-momo/,
   /institutional-access/, and future landing pages.

   NOT used by the transactional buy pages (/buy/,
   /buy-institutional/) — those load ge-shared.css instead.
   Landing pages are about persuasion (dark hero, motion,
   storytelling); buy pages are about calm, fast checkout.
   Different jobs, different systems, kept deliberately separate.

   Namespace: .ge-land-* (generalized from the original .bwm-*
   prefix used when this lived inline in the MoMo page).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ── RESET ───────────────────────────────────────────────── */
.ge-land *, .ge-land *::before, .ge-land *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── TOKENS ──────────────────────────────────────────────── */
.ge-land {
  --gold:       #BF9446;
  --gold-light: #D4AE6A;
  --gold-pale:  #F5EDD8;
  --gold-glow:  rgba(191,148,70,0.15);
  --dark:       #0C0B09;
  --dark-2:     #1A1814;
  --dark-3:     #2A2720;
  --ink:        #3D3A32;
  --muted:      #7A7568;
  --cream:      #FAF8F3;
  --white:      #FFFFFF;
  --green:      #1A6641;
  --green-bg:   #EDF7F2;
  --red:        #8B1A1A;
  --red-bg:     #FDF0F0;
  --purple:      #8B5CF6;
  --purple-light:#A78BFA;
  --purple-pale: #F5F1FF;
  --border:     rgba(191,148,70,0.18);
  --r:          18px;
  --r-sm:       10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  background: var(--cream);
}

/* Accent variants — set data-accent="purple" on .ge-land to retint
   the hero/CTA/highlights from gold to purple (e.g. for the
   institutional page) without touching structural CSS. */
.ge-land[data-accent="purple"] {
  --gold:       var(--purple);
  --gold-light: var(--purple-light);
  --gold-pale:  var(--purple-pale);
  --gold-glow:  rgba(139,92,246,0.15);
  --border:     rgba(139,92,246,0.18);
}

/* ── HERO ────────────────────────────────────────────────── */
.ge-land-hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 80px 24px 96px;
  text-align: center;
}
.ge-land-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}
.ge-land-hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 65%);
  pointer-events: none;
}
.ge-land-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  animation: ge-land-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.ge-land-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(191,148,70,0.08);
}
.ge-land-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 62px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.ge-land-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.ge-land-hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.60);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 40px;
}
.ge-land-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), #8B6510);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 32px rgba(191,148,70,0.35);
}
.ge-land-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(191,148,70,0.45);
  color: var(--white);
  text-decoration: none;
}
.ge-land-hero-cta-arrow { transition: transform 0.2s; }
.ge-land-hero-cta:hover .ge-land-hero-cta-arrow { transform: translateX(4px); }

/* ── WAVE DIVIDER ────────────────────────────────────────── */
.ge-land-wave {
  display: block;
  width: 100%;
  background: var(--dark);
  line-height: 0;
}
.ge-land-wave svg { display: block; width: 100%; }

/* ── SECTIONS ────────────────────────────────────────────── */
.ge-land-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px;
}
.ge-land-section-sm {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 64px;
}
.ge-land-section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.ge-land-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.ge-land-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.ge-land-section h2 em {
  font-style: italic;
  color: var(--gold);
}
.ge-land-lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
}

/* ── QUOTE / PROBLEM CARD ────────────────────────────────── */
.ge-land-quote {
  background: var(--dark-2);
  border-radius: var(--r);
  padding: 40px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.ge-land-quote::before {
  content: '"';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px;
  color: rgba(191,148,70,0.06);
  top: -40px; left: 20px;
  line-height: 1;
  pointer-events: none;
}
.ge-land-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.ge-land-quote-attr {
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 500;
}

/* ── NUMBERED STEPS / TIMELINE ───────────────────────────── */
.ge-land-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  position: relative;
}
.ge-land-steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.ge-land-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  animation: ge-land-rise 0.6s ease both;
}
.ge-land-step:nth-child(1) { animation-delay: 0.1s; }
.ge-land-step:nth-child(2) { animation-delay: 0.2s; }
.ge-land-step:nth-child(3) { animation-delay: 0.3s; }
.ge-land-step:nth-child(4) { animation-delay: 0.4s; }
.ge-land-step-num {
  width: 56px;
  min-width: 56px;
  height: 56px;
  background: var(--dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.ge-land-step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.ge-land-step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.ge-land-step-tag {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--gold-pale);
  color: var(--gold);
}

/* ── PARALLEL CHECKLIST (non-sequential requirements) ────── */
/* Visually distinct from ge-land-steps: side-by-side cards, no
   connecting timeline — for "need A AND B" rather than "do A then B". */
.ge-land-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 40px;
}
.ge-land-check-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 26px 22px;
  text-align: left;
}
.ge-land-check-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}
.ge-land-check-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.ge-land-check-body {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.ge-land-check-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ge-land-check-link:hover { text-decoration: underline; }
.ge-land-checklist-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  padding-top: 6px;
}

/* ── FEATURE / PITCH LIST ─────────────────────────────────── */
.ge-land-pitch {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 8px 32px;
  margin-top: 40px;
  box-shadow: 0 8px 32px rgba(15,14,12,0.06);
}
.ge-land-pitch-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
}
.ge-land-pitch-row + .ge-land-pitch-row { border-top: 1px solid var(--gold-pale); }
.ge-land-pitch-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 30px;
  text-align: center;
}
.ge-land-pitch-text {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}
.ge-land-pitch-text strong { color: var(--dark); }

/* ── HIGHLIGHT CARD (e.g. MoMo card / callout box) ───────── */
.ge-land-highlight {
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  border-radius: var(--r);
  padding: 40px;
  border: 1px solid var(--border);
  display: flex;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.ge-land-highlight::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, var(--gold-glow), transparent 65%);
  pointer-events: none;
}
.ge-land-highlight-icon {
  font-size: 48px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.ge-land-highlight-body { position: relative; z-index: 1; }
.ge-land-highlight-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.ge-land-highlight-title em { font-style: italic; color: var(--gold-light); }
.ge-land-highlight-text {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ── COMPARISON TABLE ────────────────────────────────────── */
.ge-land-compare {
  margin-top: 40px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(15,14,12,0.06);
}
.ge-land-compare-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  background: var(--dark);
  padding: 16px 20px;
  gap: 8px;
}
.ge-land-compare-head-cell {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-align: center;
}
.ge-land-compare-head-cell:first-child { text-align: left; color: rgba(255,255,255,0.30); }
.ge-land-compare-col-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
}
.ge-land-compare-col-label.highlight { color: var(--gold-light); }
.ge-land-compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding: 14px 20px;
  gap: 8px;
  border-top: 1px solid var(--border);
  align-items: center;
  transition: background 0.15s;
}
.ge-land-compare-row:hover { background: rgba(191,148,70,0.03); }
.ge-land-compare-row.highlighted { background: rgba(191,148,70,0.05); }
.ge-land-compare-feature {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.ge-land-compare-cell {
  text-align: center;
  font-size: 18px;
}
.ge-land-compare-cell.text {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.ge-land-compare-cell.text.good { color: var(--green); }
.ge-land-compare-cell.text.bad  { color: var(--red); }

/* 3-column variant (2 product columns instead of 3) */
.ge-land-compare-head.cols-3,
.ge-land-compare-row.cols-3 { grid-template-columns: 1.6fr 1fr 1fr; }

/* ── FAQ ─────────────────────────────────────────────────── */
.ge-land-faqs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}
.ge-land-faq {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s;
}
.ge-land-faq:hover { box-shadow: 0 4px 16px rgba(191,148,70,0.08); }
.ge-land-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.ge-land-faq-icon {
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.ge-land-faq.open .ge-land-faq-icon { transform: rotate(45deg); }
.ge-land-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  padding: 0 24px;
}
.ge-land-faq.open .ge-land-faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}
.ge-land-faq-a a { color: var(--gold); font-weight: 600; }

/* ── STORY / TRUST CARD (light variant, e.g. "why we built this") ── */
.ge-land-story {
  background: linear-gradient(135deg, var(--gold-pale), #FFFDF8);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px;
}
.ge-land-story-text {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.8;
}
.ge-land-story-sig {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 16px;
  letter-spacing: 0.03em;
}

/* ── FINAL CTA ───────────────────────────────────────────── */
.ge-land-final {
  background: var(--dark);
  border-radius: var(--r);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 24px 80px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.ge-land-final::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--gold-glow), transparent 65%);
  pointer-events: none;
}
.ge-land-final-inner { position: relative; z-index: 1; }
.ge-land-final h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}
.ge-land-final h2 em { font-style: italic; color: var(--gold-light); }
.ge-land-final p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.ge-land-final-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), #8B6510);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 18px 40px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 32px rgba(191,148,70,0.35);
}
.ge-land-final-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(191,148,70,0.45);
  color: var(--white);
  text-decoration: none;
}
.ge-land-final-note {
  margin-top: 20px !important;
  font-size: 12px !important;
  color: rgba(255,255,255,0.30) !important;
  margin-bottom: 0 !important;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes ge-land-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ge-land-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ge-land-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── DIVIDER LINE ────────────────────────────────────────── */
.ge-land-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 24px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 560px) {
  .ge-land-hero { padding: 60px 20px 72px; }
  .ge-land-quote { padding: 28px 24px; }
  .ge-land-highlight { flex-direction: column; gap: 16px; padding: 28px 24px; }
  .ge-land-compare-head,
  .ge-land-compare-row { grid-template-columns: 1.2fr 1fr 1fr 1fr; padding: 12px 12px; gap: 4px; }
  .ge-land-compare-head.cols-3,
  .ge-land-compare-row.cols-3 { grid-template-columns: 1.4fr 1fr 1fr; }
  .ge-land-compare-feature { font-size: 12px; }
  .ge-land-compare-cell.text { font-size: 11px; }
  .ge-land-final { padding: 40px 24px; }
  .ge-land-steps::before { left: 26px; }
  .ge-land-checklist { grid-template-columns: 1fr; }
  .ge-land-pitch { padding: 4px 22px; }
}
