:root {
  --navy:    #1A1A2E;
  --navy-l:  #252545;
  --navy-d:  #0f0f1f;
  --gold:    #C9A84C;
  --gold-l:  #e8c76a;
  --gold-d:  #8a6f2e;
  --teal:    #2A9D8F;
  --crimson: #C1121F;
  --violet:  #9B5DE5;
  --cream:   #F8F7F4;
  --white:   #ffffff;
  --muted:   #6b7280;
  --border:  #e2e0db;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--cream); color: var(--navy); overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(26,26,46,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(201,168,76,0.2); padding: 0 48px; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { font-family: 'Lora', serif; font-size: 19px; font-weight: 700; color: var(--white); text-decoration: none; display: flex; align-items: center; gap: 10px; letter-spacing: 0.5px; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 0.3px; color: #aaaacc; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 9px 20px; border-radius: 4px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--gold-l) !important; }

/* HERO */
.hero { min-height: 100vh; background: var(--navy-d); display: flex; align-items: center; position: relative; overflow: hidden; padding: 120px 48px 80px; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 55% 55% at 75% 55%, rgba(42,157,143,0.07) 0%, transparent 60%), radial-gradient(ellipse 40% 50% at 15% 75%, rgba(201,168,76,0.05) 0%, transparent 55%); }
.hero-grid { position: absolute; inset: 0; pointer-events: none; opacity: 0.03; background-image: linear-gradient(var(--gold) 1px, transparent 1px), linear-gradient(90deg, var(--gold) 1px, transparent 1px); background-size: 64px 64px; }
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); border-radius: 100px; padding: 6px 16px; font-size: 10px; font-weight: 700; letter-spacing: 2.5px; color: var(--gold); margin-bottom: 28px; animation: fadeUp 0.6s ease both; }
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(0.8); } }
.hero h1 { font-family: 'Lora', serif; font-size: clamp(34px, 4.2vw, 56px); font-weight: 700; line-height: 1.1; letter-spacing: -1px; color: var(--white); margin-bottom: 24px; animation: fadeUp 0.6s 0.1s ease both; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { font-size: 17px; line-height: 1.7; color: #aaaacc; margin-bottom: 40px; max-width: 480px; animation: fadeUp 0.6s 0.2s ease both; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.6s 0.3s ease both; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--navy); padding: 14px 28px; border-radius: 4px; font-size: 14px; font-weight: 700; text-decoration: none; letter-spacing: 0.3px; transition: all 0.2s; }
.btn-primary:hover { background: var(--gold-l); transform: translateY(-2px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); padding: 14px 28px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.14); font-size: 14px; font-weight: 500; text-decoration: none; transition: all 0.2s; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; animation: fadeUp 0.6s 0.4s ease both; }
.hcard { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 24px; transition: border-color 0.2s; }
.hcard:hover { border-color: rgba(201,168,76,0.25); }
.hcard.t { border-left: 3px solid var(--teal); }
.hcard.g { border-left: 3px solid var(--gold); }
.hcard.v { border-left: 3px solid var(--violet); }
.hcard.c { border-left: 3px solid var(--crimson); }
.hcard-icon { font-size: 26px; margin-bottom: 14px; }
.hcard h4 { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 6px; line-height: 1.3; }
.hcard p { font-size: 12px; color: #666688; line-height: 1.5; }

/* SECTION SHARED */
.section-wrap { padding: 96px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag { font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--gold); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.section-tag::before { content:''; width:24px; height:2px; background:var(--gold); }
h2.section-title { font-family: 'Lora', serif; font-size: clamp(28px, 3.8vw, 44px); font-weight: 600; line-height: 1.15; letter-spacing: -0.5px; color: var(--navy); margin-bottom: 18px; }
.section-sub { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 580px; margin-bottom: 56px; }

/* CARDS */
.examples-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.ecard { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 30px; position: relative; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.ecard:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(26,26,46,0.09); }
.ecard::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; }
.et::before { background: var(--teal); }
.ev::before { background: var(--violet); }
.eg::before { background: var(--gold); }
.ec::before { background: var(--crimson); }
.ecard-icon { width: 42px; height: 42px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 18px; }
.bt { background: rgba(42,157,143,0.1); }
.bv { background: rgba(155,93,229,0.1); }
.bg { background: rgba(201,168,76,0.1); }
.bc { background: rgba(193,18,31,0.1); }
.ecard h3 { font-family: 'Lora', serif; font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.ecard p { font-size: 14px; line-height: 1.65; color: var(--muted); margin-bottom: 18px; }
.ecard-niche { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500; color: var(--navy); background: var(--cream); padding: 5px 10px; border-radius: 3px; display: inline-block; letter-spacing: 0.3px; }

/* TRUST BAR */
.trust-bar { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 48px; }
.trust-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon { width: 38px; height: 38px; border-radius: 8px; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.trust-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.trust-text span { font-size: 12px; color: var(--muted); }

/* HOW IT WORKS */
.how-bg { background: var(--navy); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; }
.step { padding: 34px 26px; border-right: 1px solid rgba(255,255,255,0.08); position: relative; }
.step:last-child { border-right: none; }
.step-num { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500; color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.step h3 { font-family: 'Lora', serif; font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.step p { font-size: 13px; line-height: 1.65; color: #888aaa; }

/* SCOPE */
.scope-box { background: var(--navy); border: 1px solid rgba(201,168,76,0.25); border-radius: 12px; padding: 56px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.scope-box h3 { font-family: 'Lora', serif; font-size: 28px; font-weight: 600; color: var(--white); margin-bottom: 14px; line-height: 1.2; }
.scope-box h3 em { color: var(--gold); font-style: italic; }
.scope-box p { font-size: 15px; color: #aaaacc; line-height: 1.7; margin-bottom: 28px; }
.scope-terms { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.scope-terms li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: #aaaacc; line-height: 1.5; }
.scope-terms li::before { content: '◈'; color: var(--gold); flex-shrink: 0; font-size: 11px; margin-top: 2px; }

/* CTA */
.cta-bg { background: var(--navy-d); }
.cta-wrap { text-align: center; position: relative; }
.cta-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 60%); }
.cta-wrap h2 { font-family: 'Lora', serif; font-size: clamp(28px, 4vw, 48px); font-weight: 600; color: var(--white); margin-bottom: 20px; position: relative; z-index: 1; }
.cta-wrap h2 em { color: var(--gold); font-style: italic; }
.cta-wrap p { font-size: 17px; color: #aaaacc; max-width: 580px; margin: 0 auto 40px; line-height: 1.7; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* FOOTER */
footer { background: var(--navy-d); border-top: 1px solid rgba(255,255,255,0.05); padding: 48px 48px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 24px; }
.footer-brand .logo { font-family: 'Lora', serif; font-size: 18px; font-weight: 700; color: var(--white); letter-spacing: 0.5px; }
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: 13px; color: #555570; line-height: 1.6; margin-top: 10px; max-width: 260px; }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; color: var(--gold); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13px; color: #666688; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 0 auto; font-size: 12px; color: #333355; text-align: center; }

.bar { height: 4px; background: linear-gradient(90deg, var(--teal), var(--gold), var(--crimson), var(--violet)); }
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }

/* INNER PAGE HERO (smaller than home hero) */
.page-hero { background: var(--navy-d); padding: 140px 48px 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 60%); pointer-events: none; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; text-align: center; }
.page-hero h1 { font-family: 'Lora', serif; font-size: clamp(34px, 4.2vw, 52px); font-weight: 700; line-height: 1.1; letter-spacing: -1px; color: var(--white); margin-bottom: 16px; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { font-size: 17px; color: #aaaacc; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* FAQ + LEGAL prose */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-family: 'Lora', serif; font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 12px; margin-top: 36px; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 15px; line-height: 1.75; color: var(--muted); margin-bottom: 14px; }
.prose .meta { font-size: 12px; color: var(--muted); margin-bottom: 32px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.5px; }

/* FAQ GRID */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.faq-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 28px; }
.faq-card h3 { font-family: 'Lora', serif; font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.faq-card p { font-size: 14px; line-height: 1.7; color: var(--muted); }

/* ABOUT PAGE */
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.about-grid p { font-size: 16px; line-height: 1.75; color: var(--muted); margin-bottom: 18px; }
.about-pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 60px; }
.pillar { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 28px; }
.pillar-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500; color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.pillar h3 { font-family: 'Lora', serif; font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.pillar p { font-size: 13px; line-height: 1.7; color: var(--muted); margin-bottom: 0; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero, .page-hero { padding-left: 20px; padding-right: 20px; }
  .section-wrap { padding: 64px 20px; }
  .hero-inner, .scope-box, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-cards { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  footer { padding: 32px 20px 24px; }
  .footer-inner { gap: 24px; }
  .scope-box { padding: 32px 24px; }
}
