@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --sky-deep: #0a1628;
  --sky-mid: #162544;
  --sky-light: #1e3a5f;
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --white: #f5f0e8;
  --white-soft: rgba(245, 240, 232, 0.7);
  --white-muted: rgba(245, 240, 232, 0.5);
  --text-body: rgba(245, 240, 232, 0.85);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--sky-deep);
  color: var(--text-body);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 80px 40px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: inline-block;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-lede {
  font-size: 1.15rem;
  max-width: 560px;
  line-height: 1.8;
  color: var(--white-soft);
}

/* === PILLARS === */
.pillars {
  padding: 120px 40px;
  position: relative;
}

.pillars::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.pillars-header {
  text-align: center;
  margin-bottom: 80px;
}

.pillars-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 16px;
}

.pillars-header p {
  color: var(--white-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.pillar {
  padding: 48px 36px;
  background: linear-gradient(145deg, rgba(30, 58, 95, 0.3), transparent);
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: all 0.4s ease;
}

.pillar:hover {
  background: linear-gradient(145deg, rgba(30, 58, 95, 0.5), transparent);
  border-color: rgba(201, 168, 76, 0.2);
}

.pillar-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.pillar h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.pillar p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--white-muted);
}

/* === EDGE === */
.edge {
  padding: 100px 40px;
  background: linear-gradient(180deg, transparent, rgba(22, 37, 68, 0.4), transparent);
}

.edge-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.edge-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.3;
}

.edge-text p {
  color: var(--white-soft);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.edge-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat {
  padding: 32px 24px;
  background: rgba(201, 168, 76, 0.04);
  border-left: 2px solid var(--gold);
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white-muted);
}

/* === CLOSING === */
.closing {
  padding: 140px 40px;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

.closing p {
  color: var(--white-muted);
  max-width: 500px;
  margin: 0 auto;
  font-size: 1rem;
}

/* === FOOTER === */
.footer {
  padding: 48px 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 1px;
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-link {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-note {
  font-size: 0.78rem;
  color: var(--white-muted);
  letter-spacing: 0.5px;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-soft);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sky-deep);
  background: var(--gold);
  text-decoration: none;
  padding: 10px 24px;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--sky-deep);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.35);
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  transform: translateY(-2px);
}

.hero-actions,
.closing-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero-inner {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

/* Adjust homepage hero for fixed nav */
.hero {
  padding-top: 120px;
}

/* === SECTION LABEL === */
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

/* === SERVICES PAGE === */
.services-section {
  padding: 80px 40px 120px;
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.service-card {
  position: relative;
  padding: 60px 48px;
  background: linear-gradient(145deg, rgba(30, 58, 95, 0.25), transparent);
  border: 1px solid rgba(201, 168, 76, 0.06);
  transition: all 0.4s ease;
  overflow: hidden;
}

.service-card:hover {
  background: linear-gradient(145deg, rgba(30, 58, 95, 0.45), transparent);
  border-color: rgba(201, 168, 76, 0.18);
}

.service-card-number {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.06);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 32px;
}

.service-card-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}

.service-card-tagline {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-card-content > p:not(.service-card-tagline) {
  color: var(--white-soft);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  margin-bottom: 32px;
}

.service-list li {
  font-size: 0.85rem;
  color: var(--white-muted);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}

.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(201, 168, 76, 0.4);
}

/* === ASSURANCE === */
.assurance {
  padding: 100px 40px;
  background: linear-gradient(180deg, transparent, rgba(22, 37, 68, 0.3), transparent);
}

.assurance-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.assurance-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 16px;
}

.assurance-lede {
  color: var(--white-soft);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 60px;
}

.assurance-lede em {
  color: var(--gold);
  font-style: italic;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  text-align: left;
}

.assurance-item {
  padding: 40px 32px;
  border: 1px solid rgba(201, 168, 76, 0.06);
}

.assurance-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.assurance-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.assurance-item p {
  font-size: 0.88rem;
  color: var(--white-muted);
  line-height: 1.7;
}

/* === PARTNER PAGE === */
.how-it-works {
  padding: 100px 40px;
}

.how-inner {
  max-width: 800px;
  margin: 0 auto;
}

.how-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 60px;
  line-height: 1.3;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.12);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  padding-top: 4px;
}

.step-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.step-body p {
  font-size: 0.93rem;
  color: var(--white-soft);
  line-height: 1.75;
}

/* === EARNINGS SECTION === */
.earnings {
  padding: 100px 40px;
  background: linear-gradient(180deg, transparent, rgba(22, 37, 68, 0.35), transparent);
}

.earnings-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.earnings-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.3;
}

.earnings-text p {
  font-size: 0.93rem;
  color: var(--white-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}

.earnings-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* === BENEFITS SECTION === */
.benefits {
  padding: 100px 40px;
}

.benefits-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.benefits-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 60px;
  line-height: 1.3;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.benefit-item {
  padding: 40px 32px;
  border: 1px solid rgba(201, 168, 76, 0.06);
  transition: border-color 0.3s;
}

.benefit-item:hover {
  border-color: rgba(201, 168, 76, 0.18);
}

.benefit-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.benefit-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.benefit-item p {
  font-size: 0.88rem;
  color: var(--white-muted);
  line-height: 1.7;
}

/* === FOR WHO SECTION === */
.for-who {
  padding: 100px 40px;
  background: linear-gradient(180deg, transparent, rgba(22, 37, 68, 0.3), transparent);
}

.for-who-inner {
  max-width: 700px;
  margin: 0 auto;
}

.for-who-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 48px;
  line-height: 1.3;
}

.traits {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.trait {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.07);
  font-size: 1rem;
  color: var(--white-soft);
}

.trait:last-child { border-bottom: none; }

.trait-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10, 22, 40, 0.98); padding: 24px; gap: 20px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding: 120px 24px 60px; min-height: 90vh; }
  .page-hero { padding: 120px 24px 60px; min-height: 50vh; }
  .pillars { padding: 80px 24px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 0; }
  .pillar { padding: 36px 28px; }
  .edge { padding: 80px 24px; }
  .edge-inner { grid-template-columns: 1fr; gap: 48px; }
  .edge-stats { grid-template-columns: 1fr 1fr; }
  .closing { padding: 100px 24px; }
  .footer { flex-direction: column; gap: 16px; text-align: center; padding: 36px 24px; }
  .services-section { padding: 60px 24px 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 40px 28px; }
  .assurance { padding: 80px 24px; }
  .assurance-grid { grid-template-columns: 1fr; }
  .how-it-works { padding: 80px 24px; }
  .step { gap: 24px; }
  .earnings { padding: 80px 24px; }
  .earnings-inner { grid-template-columns: 1fr; gap: 48px; }
  .earnings-stats { grid-template-columns: 1fr 1fr; }
  .benefits { padding: 80px 24px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .for-who { padding: 80px 24px; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 20px 48px; }
  .hero-tag { font-size: 0.65rem; letter-spacing: 3px; }
  .hero-actions { flex-direction: column; }
  .closing-actions { flex-direction: column; }
  .btn { text-align: center; }
  .edge-stats { grid-template-columns: 1fr; }
  .stat { padding: 24px 20px; }
  .earnings-stats { grid-template-columns: 1fr; }
  .step-num { font-size: 2.5rem; width: 44px; }
}