@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

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

:root {
  --dark:        #0D1B2A;
  --dark-mid:    #162336;
  --dark-light:  #1C3050;
  --dark-card:   #172030;
  --blue:        #3B82F6;
  --blue-light:  #93C5FD;
  --blue-pale:   #DBEAFE;
  --teal:        #0EA5E9;
  --teal-light:  #7DD3FC;
  --teal-glow:   rgba(14,165,233,0.12);
  --gold:        #FBBC04;
  --gold-light:  #FDE68A;
  --gold-glow:   rgba(251,188,4,0.14);
  --amber:       #F59E0B;
  --amber-light: #FCD34D;
  --green:       #10B981;
  --green-light: #6EE7B7;
  --green-glow:  rgba(16,185,129,0.12);
  --coral:       #F97316;
  --coral-light: #FDBA74;
  --coral-glow:  rgba(249,115,22,0.12);
  --text:        #E2EEF9;
  --text-muted:  #7A92A8;
  --text-dim:    #3D5470;
  --border:      #1C3050;
  --border-mid:  #243D5C;
  --white:       #FFFFFF;
}

html { scroll-behavior: smooth; }
body {
  background: var(--dark); color: var(--text);
  font-family: 'DM Sans', sans-serif; font-size: 17px; line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,27,42,0.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%; display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.nav-brand { font-family:'DM Serif Display',serif; font-size:1.25rem; color:var(--white); text-decoration:none; }
.nav-brand span { color: var(--teal); }
.nav-links { display:flex; gap:2rem; align-items:center; }
.nav-links a { color:var(--text-muted); text-decoration:none; font-size:0.87rem; font-weight:500; letter-spacing:0.03em; text-transform:uppercase; transition:color 0.2s; }
.nav-links a:hover, .nav-links a.active { color:var(--text); }
.nav-cta { background:linear-gradient(135deg,var(--teal),var(--blue)) !important; color:var(--white) !important; padding:8px 22px !important; border-radius:6px !important; text-transform:none !important; font-size:0.9rem !important; letter-spacing:0 !important; font-weight:600 !important; transition:opacity 0.2s !important; }
.nav-cta:hover { opacity:0.85 !important; }

.accent-bar { position:fixed; left:0; top:0; bottom:0; width:4px; background:linear-gradient(180deg,var(--gold) 0%,var(--coral) 40%,var(--teal) 100%); z-index:200; }

/* PAGE */
.page { padding-top: 66px; }
section { padding: 88px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag { font-size:0.72rem; text-transform:uppercase; letter-spacing:0.14em; color:var(--teal); font-weight:600; margin-bottom:12px; }
.section-title { font-family:'DM Serif Display',serif; font-size:clamp(1.9rem,3.5vw,2.8rem); line-height:1.15; letter-spacing:-0.02em; color:var(--white); margin-bottom:16px; }
.section-sub { color:var(--text-muted); font-size:1rem; max-width:580px; line-height:1.75; margin-bottom:56px; }
.divider { width:44px; height:3px; background:linear-gradient(90deg,var(--teal),var(--blue)); margin-bottom:18px; border-radius:2px; }

/* BUTTONS */
.btn-primary { background:linear-gradient(135deg,var(--teal),var(--blue)); color:var(--white); padding:14px 32px; border-radius:8px; text-decoration:none; font-weight:600; font-size:0.95rem; transition:all 0.2s; display:inline-block; }
.btn-primary:hover { opacity:0.88; transform:translateY(-1px); }
.btn-secondary { border:1px solid var(--border-mid); color:var(--teal-light); padding:14px 32px; border-radius:8px; text-decoration:none; font-weight:500; font-size:0.95rem; transition:all 0.2s; display:inline-block; }
.btn-secondary:hover { border-color:var(--teal); background:var(--teal-glow); }
.btn-amber { background:linear-gradient(135deg,var(--amber),var(--coral)); color:var(--white); padding:14px 32px; border-radius:8px; text-decoration:none; font-weight:600; font-size:0.95rem; transition:all 0.2s; display:inline-block; }
.btn-amber:hover { opacity:0.88; transform:translateY(-1px); }

/* QUOTE */
.quote-block { border-left:3px solid var(--teal); padding:24px 32px; background:var(--dark-mid); border-radius:0 10px 10px 0; margin:40px 0; }
.quote-text { font-family:'DM Serif Display',serif; font-size:1.25rem; color:var(--white); line-height:1.6; font-style:italic; margin-bottom:10px; }
.quote-source { font-size:0.82rem; color:var(--text-muted); }

/* BAND VARIANTS */
.band-teal { background:linear-gradient(135deg,#071E33 0%,#0B2840 50%,#071E33 100%); border-top:1px solid rgba(14,165,233,0.2); border-bottom:1px solid rgba(14,165,233,0.2); }
.band-amber { background:linear-gradient(135deg,#1C1100 0%,#231500 50%,#1C1100 100%); border-top:1px solid rgba(245,158,11,0.2); border-bottom:1px solid rgba(245,158,11,0.2); }
.band-dark { background:rgba(22,35,54,0.4); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.band-green { background:linear-gradient(135deg,#041E16 0%,#062419 50%,#041E16 100%); border-top:1px solid rgba(16,185,129,0.2); border-bottom:1px solid rgba(16,185,129,0.2); }

/* STARS */
.stars { color:var(--gold); letter-spacing:2px; }

/* FOOTER */
footer { background:#070E18; border-top:1px solid var(--border); padding:56px 5% 36px; }
.footer-inner { max-width:1100px; margin:0 auto; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.footer-brand-block .footer-brand { font-family:'DM Serif Display',serif; font-size:1.3rem; color:var(--white); display:block; margin-bottom:12px; text-decoration:none; }
.footer-brand span { color:var(--teal); }
.footer-tagline { color:var(--text-muted); font-size:0.88rem; line-height:1.65; margin-bottom:20px; }
.footer-contact-item { display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.footer-contact-item a { color:var(--teal-light); text-decoration:none; font-size:0.9rem; font-weight:500; transition:color 0.2s; }
.footer-contact-item a:hover { color:var(--white); }
.contact-icon { width:32px; height:32px; border-radius:6px; background:var(--dark-light); display:flex; align-items:center; justify-content:center; font-size:0.9rem; flex-shrink:0; }
.footer-col h4 { font-size:0.75rem; text-transform:uppercase; letter-spacing:0.12em; color:var(--teal-light); font-weight:600; margin-bottom:16px; }
.footer-col a { display:block; color:var(--text-muted); text-decoration:none; font-size:0.88rem; margin-bottom:10px; transition:color 0.2s; }
.footer-col a:hover { color:var(--text); }
.footer-bottom { border-top:1px solid var(--border); padding-top:24px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-copy { color:var(--text-dim); font-size:0.82rem; }
.footer-playbook-link { color:var(--gold-light); text-decoration:none; font-size:0.85rem; font-weight:500; display:flex; align-items:center; gap:6px; transition:color 0.2s; }
.footer-playbook-link:hover { color:var(--white); }

@media (max-width:900px) { .nav-links { display:none; } .footer-top { grid-template-columns:1fr 1fr; } }
@media (max-width:600px) { .footer-top { grid-template-columns:1fr; } section { padding:64px 5%; } }
