/* ===================================================================
   ZEBRAFFE ENTERPRISES — PREMIUM SHARED STYLESHEET v2
   =================================================================== */
:root {
  --bg:        #0b0a09;
  --bg2:       #111009;
  --bg3:       #161410;
  --gold:      #b88e48;
  --gold-lt:   #d4a85a;
  --gold-pale: rgba(184,142,72,0.10);
  --gold-glow: rgba(184,142,72,0.22);
  --text:      #f0ece4;
  --text-muted:#9e9b93;
  --text-dim:  #6b6860;
  --border:    rgba(184,142,72,0.16);
  --border-hi: rgba(184,142,72,0.35);
  --card-bg:   rgba(18,16,12,0.92);
  --header-h:  72px;
  --transition: 0.28s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { background: var(--bg); color: var(--text); font-family: 'Outfit', sans-serif; line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* HEADER */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 500; background: rgba(11,10,9,0.95); border-bottom: 1px solid var(--border); backdrop-filter: blur(28px); transition: background 0.3s, border-color 0.3s; }
.header.scrolled { background: rgba(9,8,7,0.99); border-color: var(--border-hi); }
.header-top { max-width: 1520px; margin: 0 auto; height: var(--header-h); display: flex; align-items: center; padding: 0 2.5rem; }
.logo { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; flex-shrink: 0; margin-right: 1.5rem; }
.logo-mark { width: 42px; height: 42px; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: var(--bg); letter-spacing: -0.05em; transition: background 0.25s; }
.logo:hover .logo-mark { background: var(--gold-lt); }
.logo-mark span { color: rgba(11,10,9,0.4); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: var(--text); letter-spacing: 0.05em; }
.logo-tagline { font-family: 'Outfit', sans-serif; font-size: 0.57rem; letter-spacing: 0.30em; text-transform: uppercase; color: var(--gold); }

/* NAV */
.main-nav { display: flex; align-items: center; gap: 0; flex: 1; justify-content: center; position: relative; }
.nav-item { position: relative; }
.nav-link { font-family: 'Outfit', sans-serif; font-size: 0.78rem; font-weight: 400; color: var(--text-muted); text-decoration: none; padding: 0 0.9rem; height: var(--header-h); display: flex; align-items: center; gap: 0.3rem; border-bottom: 2px solid transparent; transition: color 0.25s, border-color 0.25s; white-space: nowrap; }
.nav-link .arrow { font-size: 0.52rem; opacity: 0.5; transition: transform 0.25s, opacity 0.25s; }
.nav-item:hover > .nav-link { color: var(--gold); border-bottom-color: var(--gold); }
.nav-item:hover > .nav-link .arrow { transform: rotate(180deg); opacity: 1; }
.nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }

/* DROPDOWN */
.dropdown { position: absolute; top: calc(var(--header-h) - 2px); left: 0; background: rgba(11,10,8,0.99); border: 1px solid var(--border); border-top: 2px solid var(--gold); min-width: 250px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity 0.22s, transform 0.22s, visibility 0.22s; backdrop-filter: blur(28px); z-index: 600; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.nav-item:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link { display: flex; align-items: center; gap: 0.9rem; font-family: 'Outfit', sans-serif; font-size: 0.82rem; color: var(--text-muted); text-decoration: none; padding: 0.9rem 1.4rem; border-bottom: 1px solid rgba(184,142,72,0.06); transition: color 0.2s, background 0.2s, padding-left 0.2s; }
.dropdown-link:last-child { border-bottom: none; }
.dropdown-link:hover { color: var(--gold); background: var(--gold-pale); padding-left: 1.8rem; }
.d-num { font-family: 'Cormorant Garamond', serif; font-size: 0.72rem; color: var(--gold); opacity: 0.55; min-width: 14px; flex-shrink: 0; }
.d-icon { font-size: 1rem; flex-shrink: 0; }

/* HEADER ACTIONS */
.header-actions { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; margin-left: 1.5rem; }

/* BUTTONS */
.btn-primary { font-family: 'Outfit', sans-serif; font-size: 0.76rem; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: var(--bg); background: var(--gold); border: 1px solid var(--gold); padding: 0.64rem 1.5rem; text-decoration: none; cursor: pointer; display: inline-block; white-space: nowrap; transition: background 0.25s, transform 0.2s, box-shadow 0.2s; }
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(184,142,72,0.35); }
.btn-ghost { font-family: 'Outfit', sans-serif; font-size: 0.76rem; font-weight: 400; letter-spacing: 0.10em; text-transform: uppercase; color: var(--text-muted); background: transparent; border: 1px solid var(--border); padding: 0.64rem 1.5rem; text-decoration: none; cursor: pointer; display: inline-block; white-space: nowrap; transition: border-color 0.25s, color 0.25s, transform 0.2s; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn-text { font-family: 'Outfit', sans-serif; font-size: 0.76rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: gap 0.25s; }
.btn-text:hover { gap: 0.9rem; }

/* MOBILE */
.nav-toggle { display: none; background: none; border: 1px solid var(--border); color: var(--text); font-size: 1.1rem; cursor: pointer; margin-left: auto; padding: 0.5rem 0.7rem; transition: border-color 0.25s, color 0.25s; }
.nav-toggle:hover { border-color: var(--gold); color: var(--gold); }
.mobile-menu { display: none; flex-direction: column; background: var(--bg2); border-top: 1px solid var(--border); max-height: 82vh; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-section-title { font-family: 'Outfit', sans-serif; font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); padding: 1.1rem 2rem 0.5rem; border-top: 1px solid var(--border); background: rgba(184,142,72,0.04); }
.mobile-menu a { color: var(--text-muted); text-decoration: none; font-family: 'Outfit', sans-serif; font-size: 0.88rem; padding: 0.72rem 2rem; border-bottom: 1px solid rgba(184,142,72,0.05); transition: color 0.2s, background 0.2s; }
.mobile-menu a.sub { padding-left: 3.2rem; font-size: 0.83rem; }
.mobile-menu a:hover { color: var(--gold); background: var(--gold-pale); }
@media (max-width: 1100px) { .main-nav { display: none; } .nav-toggle { display: block; } .header-actions { display: none; } }

/* PAGE HERO */
.page-hero { min-height: 54vh; display: flex; align-items: flex-end; padding: calc(var(--header-h) + 5rem) 5vw 5rem; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 70% 60% at 0% 100%, rgba(184,142,72,0.08) 0%, transparent 60%), radial-gradient(ellipse 40% 50% at 100% 0%, rgba(184,142,72,0.05) 0%, transparent 60%); }
.page-hero-grid { position: absolute; inset: 0; z-index: 0; background-image: linear-gradient(rgba(184,142,72,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(184,142,72,0.04) 1px, transparent 1px); background-size: 60px 60px; }
.page-hero-content { position: relative; z-index: 2; max-width: 900px; }

.breadcrumb { font-family: 'Outfit', sans-serif; font-size: 0.74rem; color: var(--text-dim); display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.page-eyebrow { font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 0.70rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.3rem; display: flex; align-items: center; gap: 1rem; }
.page-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.page-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; color: var(--text); line-height: 1.05; }
.page-title em { color: var(--gold); font-style: italic; }
.page-subtitle { font-family: 'Outfit', sans-serif; font-size: 1rem; color: var(--text-muted); line-height: 1.85; max-width: 580px; margin-top: 1.6rem; }

/* SUBMENU TABS */
.sub-tabs-bar { background: var(--bg2); border-bottom: 1px solid var(--border); padding: 0 5vw; overflow-x: auto; display: flex; position: sticky; top: var(--header-h); z-index: 100; }
.sub-tab { font-family: 'Outfit', sans-serif; font-size: 0.79rem; color: var(--text-muted); text-decoration: none; padding: 1rem 1.4rem; border-bottom: 2px solid transparent; transition: color 0.25s, border-color 0.25s; white-space: nowrap; display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.sub-tab:hover { color: var(--gold); }
.sub-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.sub-tab .st-num { font-family: 'Cormorant Garamond', serif; font-size: 0.68rem; color: var(--gold); opacity: 0.55; }

/* SECTIONS */
.section { padding: 6rem 5vw; }
.section.alt { background: var(--bg2); }
.section.dark { background: var(--bg3); }
.section-eyebrow { font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 0.70rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; color: var(--text); line-height: 1.15; margin-bottom: 1.8rem; }
.section-title em { color: var(--gold); font-style: italic; }
.section-body { font-family: 'Outfit', sans-serif; font-size: 0.95rem; color: var(--text-muted); line-height: 1.92; max-width: 680px; }
.section-body p { margin-bottom: 1.2rem; }
.section-body p:last-child { margin-bottom: 0; }

/* CARDS */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.card { background: var(--card-bg); border: 1px solid var(--border); padding: 2.4rem 2rem; transition: border-color 0.28s, transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.28s; }
.card:hover { border-color: var(--border-hi); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.card:hover::before { transform: scaleX(1); }
.card-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--text); margin-bottom: 0.8rem; line-height: 1.2; }
.card-text { font-family: 'Outfit', sans-serif; font-size: 0.88rem; color: var(--text-muted); line-height: 1.82; }
.card-link { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Outfit', sans-serif; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-decoration: none; margin-top: 1.2rem; transition: gap 0.25s; }
.card-link:hover { gap: 0.9rem; }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
@media (max-width: 800px) { .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 3rem; direction: ltr; } }

/* VISUAL PANEL */
.visual-panel { background: linear-gradient(135deg, var(--gold-pale) 0%, rgba(184,142,72,0.02) 100%); border: 1px solid var(--border); min-height: 380px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.visual-panel::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(184,142,72,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(184,142,72,0.03) 1px, transparent 1px); background-size: 40px 40px; }
.visual-panel-inner { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.visual-panel-icon { font-size: 5rem; opacity: 0.85; }
.visual-panel-label { font-family: 'Outfit', sans-serif; font-size: 0.68rem; letter-spacing: 0.30em; text-transform: uppercase; color: var(--gold); }

/* GOLD LIST */
.gold-list { list-style: none; margin-top: 2rem; }
.gold-list li { font-family: 'Outfit', sans-serif; font-size: 0.92rem; color: var(--text-muted); padding: 0.9rem 0; border-bottom: 1px solid rgba(184,142,72,0.07); display: flex; align-items: flex-start; gap: 1.1rem; line-height: 1.65; }
.gold-list li:last-child { border-bottom: none; }
.gold-list li::before { content: '◆'; color: var(--gold); font-size: 0.48rem; flex-shrink: 0; margin-top: 0.48rem; }
.gold-list li strong { color: var(--text); font-weight: 500; }

/* STATS BAND */
.stats-band { background: var(--gold); padding: 3.5rem 5vw; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem; text-align: center; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--bg); line-height: 1; }
.stat-lbl { font-family: 'Outfit', sans-serif; font-size: 0.67rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(11,10,9,0.55); margin-top: 0.5rem; }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, rgba(184,142,72,0.09) 0%, rgba(184,142,72,0.03) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 5.5rem 5vw; text-align: center; }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; color: var(--text); margin-bottom: 1.2rem; }
.cta-title em { color: var(--gold); font-style: italic; }
.cta-sub { font-family: 'Outfit', sans-serif; font-size: 0.95rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

/* HIGHLIGHT BOX */
.highlight-box { background: linear-gradient(135deg, rgba(184,142,72,0.08) 0%, transparent 80%); border: 1px solid var(--border); border-left: 3px solid var(--gold); padding: 2rem 2.5rem; margin: 3rem 0; }
.highlight-box p { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; color: var(--text); line-height: 1.7; }

/* STEPS */
.steps-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 0; margin-top: 3rem; border: 1px solid var(--border); }
.step { padding: 2.5rem 2rem; border-right: 1px solid var(--border); text-align: center; position: relative; overflow: hidden; transition: background 0.28s; }
.step:last-child { border-right: none; }
.step:hover { background: var(--gold-pale); }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: rgba(184,142,72,0.2); line-height: 1; margin-bottom: 0.5rem; }
.step-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 0.7rem; }
.step-text { font-family: 'Outfit', sans-serif; font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

/* FOOTER */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 5.5rem 5vw 2.5rem; }
.footer-inner { max-width: 1300px; margin: 0 auto; display: flex; gap: 5rem; flex-wrap: wrap; margin-bottom: 4rem; }
.footer-brand { flex: 1; min-width: 200px; }
.footer-tagline { font-family: 'Outfit', sans-serif; font-size: 0.80rem; color: var(--text-dim); margin-top: 1.2rem; letter-spacing: 0.1em; }
.footer-divider { width: 40px; height: 1px; background: var(--gold); margin: 1.5rem 0; }
.footer-contact-item { font-family: 'Outfit', sans-serif; font-size: 0.84rem; color: var(--text-muted); text-decoration: none; display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; transition: color 0.25s; }
.footer-contact-item:hover { color: var(--gold); }
.footer-links { display: flex; gap: 3.5rem; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; min-width: 128px; }
.footer-col-title { font-family: 'Outfit', sans-serif; font-size: 0.63rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--border); }
.footer-col a { font-family: 'Outfit', sans-serif; font-size: 0.83rem; color: var(--text-muted); text-decoration: none; transition: color 0.25s, padding-left 0.2s; }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-family: 'Outfit', sans-serif; font-size: 0.76rem; color: var(--text-dim); }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* LOGIN */
.login-split { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.login-left { background: linear-gradient(160deg, #0f0d08 0%, #1a1508 55%, #0f0d08 100%); border-right: 1px solid var(--border); display: flex; flex-direction: column; justify-content: center; padding: 6rem 4rem; position: relative; overflow: hidden; }
.login-left-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(184,142,72,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(184,142,72,0.04) 1px, transparent 1px); background-size: 60px 60px; }
.login-glow { position: absolute; top: 25%; left: 50%; transform: translateX(-50%); width: 380px; height: 380px; background: radial-gradient(circle, rgba(184,142,72,0.16) 0%, transparent 70%); pointer-events: none; }
.login-left-content { position: relative; z-index: 2; }
.login-big { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 300; color: var(--text); line-height: 1.05; margin-bottom: 2rem; }
.login-big em { color: var(--gold); font-style: italic; }
.login-desc { font-family: 'Outfit', sans-serif; font-size: 0.90rem; color: var(--text-muted); line-height: 1.85; max-width: 360px; margin-bottom: 2.5rem; }
.login-right { display: flex; align-items: center; justify-content: center; padding: calc(var(--header-h) + 3rem) 3rem 4rem; background: var(--bg); }
.login-box { width: 100%; max-width: 420px; }
.login-role-tag { display: inline-flex; align-items: center; gap: 0.6rem; background: rgba(184,142,72,0.08); border: 1px solid rgba(184,142,72,0.25); font-family: 'Outfit', sans-serif; font-size: 0.67rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); padding: 0.42rem 1rem; margin-bottom: 1.5rem; }
.login-title { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: var(--text); margin-bottom: 0.5rem; }
.login-sub { font-family: 'Outfit', sans-serif; font-size: 0.86rem; color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.7; }

/* FORMS */
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-family: 'Outfit', sans-serif; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.6rem; }
.form-input { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--text); font-family: 'Outfit', sans-serif; font-size: 0.90rem; padding: 0.9rem 1.2rem; outline: none; transition: border-color 0.25s, background 0.25s; appearance: none; }
.form-input:focus { border-color: var(--gold); background: rgba(184,142,72,0.04); }
.form-input::placeholder { color: rgba(158,155,147,0.35); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-submit { width: 100%; margin-top: 0.5rem; font-size: 0.84rem; padding: 1rem; }
.form-footer { margin-top: 2rem; text-align: center; font-family: 'Outfit', sans-serif; font-size: 0.82rem; color: var(--text-muted); }
.form-footer a { color: var(--gold); text-decoration: none; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-14px); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(184,142,72,0); } 50% { box-shadow: 0 0 0 6px rgba(184,142,72,0.18); } }
@keyframes slideIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes spin { to { transform: rotate(360deg); } }

.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.75s cubic-bezier(.4,0,.2,1), transform 0.75s cubic-bezier(.4,0,.2,1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* DIVIDER */
.divider-line { width: 50px; height: 1px; background: var(--gold); margin: 2rem 0; }

/* RESPONSIVE */
@media (max-width: 900px) { .section { padding: 4.5rem 5vw; } .footer-inner { gap: 3rem; } .footer-links { gap: 2.5rem; } }
@media (max-width: 768px) { .login-split { grid-template-columns: 1fr; } .login-left { display: none; } .login-right { padding-top: calc(var(--header-h) + 2.5rem); padding-left: 1.5rem; padding-right: 1.5rem; } .steps-row { grid-template-columns: 1fr; } .step { border-right: none; border-bottom: 1px solid var(--border); } .step:last-child { border-bottom: none; } }
@media (max-width: 500px) { .header-top { padding: 0 1.2rem; } .section { padding: 3.5rem 1.2rem; } .page-hero { padding: calc(var(--header-h) + 3rem) 1.2rem 3rem; } .cta-band { padding: 4rem 1.2rem; } }


/* ===================================================================
   INDEX PAGE — SPECIFIC STYLES
   =================================================================== */

/* ——— HERO ——— */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 0 5vw;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 55% 75% at 80% 50%, rgba(184,142,72,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 35% 55% at 10% 85%, rgba(184,142,72,0.05) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(184,142,72,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,142,72,0.045) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  z-index: 1;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; width: 100%; max-width: 1400px;
}
.hero-eyebrow {
  font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 0.70rem;
  letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 2rem; display: flex; align-items: center; gap: 1rem;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7.5vw, 7rem); font-weight: 300;
  line-height: 1.0; color: var(--text); margin-bottom: 2.2rem;
  opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 1.05rem;
  line-height: 1.88; color: var(--text-muted); max-width: 490px; margin-bottom: 3rem;
  opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
}
.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
}
.hero-divisions {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 1.0s forwards;
  margin-top: 2.5rem;
}
.div-chip {
  font-family: 'Outfit', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim); background: rgba(184,142,72,0.06);
  border: 1px solid var(--border); padding: 0.35rem 0.85rem;
  text-decoration: none; transition: color 0.25s, border-color 0.25s;
}
.div-chip:hover { color: var(--gold); border-color: var(--gold); }

/* HERO RIGHT — FLOATING CARDS */
.hero-right { position: relative; height: 480px; }
.float-card {
  position: absolute; background: var(--card-bg); border: 1px solid var(--border);
  padding: 1.4rem 1.8rem; backdrop-filter: blur(20px);
  opacity: 0; animation: fadeUp 0.8s forwards;
}
.float-card:nth-child(1) { top: 5%;  right: 8%;  animation-name: fadeUp,float; animation-duration: 0.8s, 6s; animation-delay: 0.8s, 1.5s; animation-fill-mode: forwards, none; animation-iteration-count: 1, infinite; }
.float-card:nth-child(2) { top: 40%; right: 25%; animation-name: fadeUp,float; animation-duration: 0.8s, 8s; animation-delay: 1.0s, 1.8s; animation-fill-mode: forwards, none; animation-iteration-count: 1, infinite; }
.float-card:nth-child(3) { bottom: 8%; right: 6%; animation-name: fadeUp,float; animation-duration: 0.8s, 7s; animation-delay: 1.2s, 2.0s; animation-fill-mode: forwards, none; animation-iteration-count: 1, infinite; }
.float-card:nth-child(4) { top: 20%; left: 5%;   animation-name: fadeUp,float; animation-duration: 0.8s, 9s; animation-delay: 1.4s, 2.2s; animation-fill-mode: forwards, none; animation-iteration-count: 1, infinite; }
.fc-label { font-family: 'Outfit', sans-serif; font-size: 0.60rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.fc-value { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 600; color: var(--text); }
.fc-sub { font-family: 'Outfit', sans-serif; font-size: 0.74rem; color: var(--text-dim); margin-top: 0.2rem; }

/* BIG ZE GRAPHIC */
.hero-ze {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 18rem; font-weight: 300;
  color: rgba(184,142,72,0.04); letter-spacing: -0.08em; line-height: 1;
  pointer-events: none; user-select: none;
}

/* ——— INDEX STATS BAND OVERRIDE ——— */
.stats-band { grid-template-columns: repeat(5,1fr); }
@media(max-width:900px){ .stats-band { grid-template-columns: repeat(3,1fr); } }
@media(max-width:500px){ .stats-band { grid-template-columns: 1fr 1fr; } }

/* ——— INTRO ——— */
.intro-section { padding: 7rem 5vw; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.intro-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(184,142,72,0.08); border: 1px solid rgba(184,142,72,0.25);
  font-family: 'Outfit', sans-serif; font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  padding: 0.45rem 1rem; margin-bottom: 2rem;
}
.intro-visual {
  background: linear-gradient(135deg, rgba(184,142,72,0.10) 0%, rgba(184,142,72,0.02) 100%);
  border: 1px solid var(--border); height: 500px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.intro-visual-mark {
  font-family: 'Cormorant Garamond', serif; font-size: 9rem; font-weight: 300;
  color: rgba(184,142,72,0.10); letter-spacing: -0.05em;
}
.intro-visual-badge {
  position: absolute; bottom: 2.5rem; right: 2.5rem;
  background: var(--gold); color: var(--bg);
  font-family: 'Outfit', sans-serif; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 0.7rem 1.4rem;
}
.intro-visual-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(184,142,72,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(184,142,72,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.contact-row { display: flex; align-items: center; gap: 0.8rem; font-family: 'Outfit', sans-serif; font-size: 0.84rem; color: var(--text-muted); margin-top: 0.8rem; }
.contact-row a { color: var(--gold); text-decoration: none; transition: opacity 0.2s; }
.contact-row a:hover { opacity: 0.7; }
@media(max-width:768px){ .intro-section { grid-template-columns: 1fr; gap: 3rem; } .intro-visual { height: 280px; } }

/* ——— DIVISIONS GRID ——— */
.divisions-section { background: var(--bg2); padding: 7rem 5vw; }
.divs-header { text-align: center; margin-bottom: 5rem; }
.divs-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); }
.div-block {
  background: var(--bg2); padding: 2.8rem 2rem;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: background 0.3s; cursor: pointer;
}
.div-block::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.div-block:hover { background: rgba(184,142,72,0.05); }
.div-block:hover::after { transform: scaleX(1); }
.div-letter { font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; font-weight: 300; color: rgba(184,142,72,0.13); line-height: 1; margin-bottom: 0.5rem; }
.div-icon { font-size: 1.7rem; margin-bottom: 1rem; }
.div-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--text); margin-bottom: 0.8rem; line-height: 1.2; }
.div-desc { font-family: 'Outfit', sans-serif; font-size: 0.82rem; color: var(--text-muted); line-height: 1.72; margin-bottom: 1.5rem; flex: 1; }
.div-subs { list-style: none; margin-bottom: 1.5rem; }
.div-subs li { font-family: 'Outfit', sans-serif; font-size: 0.74rem; color: rgba(158,155,147,0.65); padding: 0.28rem 0; display: flex; align-items: center; gap: 0.5rem; }
.div-subs li::before { content: '—'; color: var(--gold); font-size: 0.55rem; }
.div-cta { font-family: 'Outfit', sans-serif; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: letter-spacing 0.3s; }
.div-block:hover .div-cta { letter-spacing: 0.25em; }
@media(max-width:1100px){ .divs-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:700px){ .divs-grid { grid-template-columns: 1fr; } }

/* ——— WHY ZEBRAFFE ——— */
.why-section { padding: 7rem 5vw; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
@media(max-width:768px){ .why-grid { grid-template-columns: 1fr; } }

/* ——— HIGHWAY MAP STRIP ——— */
.highway-strip {
  background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 4rem 5vw; overflow: hidden; position: relative;
}
.highway-label { font-family: 'Outfit', sans-serif; font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); text-align: center; margin-bottom: 2rem; }
.highway-road { position: relative; height: 60px; display: flex; align-items: center; }
.road-line-full { position: absolute; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), var(--gold), var(--gold), transparent); }
.road-dashes { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); height: 2px; background: repeating-linear-gradient(90deg, var(--bg3) 0, var(--bg3) 10px, rgba(184,142,72,0.4) 10px, rgba(184,142,72,0.4) 30px); }
.hubs-row { display: flex; justify-content: space-between; align-items: flex-start; position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); padding: 0 3%; }
.hub-pin { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; cursor: pointer; }
.hub-dot { width: 18px; height: 18px; background: var(--gold); border-radius: 50%; border: 3px solid var(--bg3); position: relative; transition: transform 0.25s; box-shadow: 0 0 0 4px rgba(184,142,72,0.2); }
.hub-pin:hover .hub-dot { transform: scale(1.4); }
.hub-name { font-family: 'Outfit', sans-serif; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; }
.km-label { font-family: 'Cormorant Garamond', serif; font-size: 0.75rem; color: rgba(184,142,72,0.5); font-style: italic; }
.highway-note { font-family: 'Outfit', sans-serif; font-size: 0.78rem; color: var(--text-dim); text-align: center; margin-top: 2.5rem; }

/* ——— INVESTMENT CTA ——— */
.invest-section {
  padding: 7rem 5vw; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  background: linear-gradient(135deg, rgba(184,142,72,0.06) 0%, transparent 60%);
  border-top: 1px solid var(--border);
}
.invest-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2.5rem 0; }
.i-metric { background: var(--card-bg); border: 1px solid var(--border); padding: 1.8rem 1.5rem; }
.i-metric-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--gold); line-height: 1; }
.i-metric-lbl { font-family: 'Outfit', sans-serif; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.4rem; }
@media(max-width:768px){ .invest-section { grid-template-columns: 1fr; gap: 3rem; } }


/* ===================================================================
   CONTACT PAGE — SPECIFIC STYLES
   =================================================================== */

.contact-wrap { display:grid; grid-template-columns:1fr 1.6fr; gap:5rem; padding:6rem 5vw; align-items:start; }
.contact-method { display:flex; align-items:flex-start; gap:1.2rem; padding:1.5rem 0; border-bottom:1px solid var(--border); }
.cm-icon { width:46px;height:46px;background:var(--gold-pale);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0; }
.cm-label { font-family:'Outfit',sans-serif;font-size:0.66rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--gold);margin-bottom:0.4rem; }
.cm-value { font-family:'Outfit',sans-serif;font-size:0.92rem;color:var(--text); }
.cm-value a { color:var(--text);text-decoration:none;transition:color 0.2s; }
.cm-value a:hover { color:var(--gold); }
.contact-form-box { background:var(--card-bg);border:1px solid var(--border);padding:3rem; }
.form-row { display:grid;grid-template-columns:1fr 1fr;gap:1.5rem; }
.success-msg { display:none;background:rgba(184,142,72,0.1);border:1px solid var(--gold);padding:1.5rem;text-align:center;font-family:'Outfit',sans-serif;font-size:0.9rem;color:var(--gold);margin-top:1.5rem; }
@media(max-width:768px) { .contact-wrap{grid-template-columns:1fr;gap:3rem;} .form-row{grid-template-columns:1fr;} }



/* ===================================================================
   INVESTOR LOGIN PAGE — SPECIFIC STYLES
   =================================================================== */

.auth-wrap { min-height:100vh; display:grid; grid-template-columns:1fr 1.15fr; }
.auth-left {
  background:linear-gradient(160deg,#0f0d08 0%,#1c1608 55%,#0b0a09 100%);
  border-right:1px solid var(--border);
  display:flex; flex-direction:column; justify-content:center;
  padding:4.5rem 4rem; position:relative; overflow:hidden;
}
.al-grid { position:absolute; inset:0; background-image:linear-gradient(rgba(184,142,72,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(184,142,72,.04) 1px,transparent 1px); background-size:58px 58px; }
.al-glow { position:absolute; top:18%; left:50%; transform:translateX(-50%); width:420px; height:420px; background:radial-gradient(circle,rgba(184,142,72,.13) 0%,transparent 70%); pointer-events:none; }
.al-inner { position:relative; z-index:2; }
.back-link { display:inline-flex; align-items:center; gap:.5rem; font-family:'Outfit',sans-serif; font-size:.74rem; color:var(--text-muted); text-decoration:none; margin-bottom:3rem; transition:color .2s; }
.back-link:hover { color:var(--gold); }
.al-headline { font-family:'Cormorant Garamond',serif; font-size:clamp(2.8rem,5vw,4.4rem); font-weight:300; color:var(--text); line-height:1.03; margin:1.8rem 0 1.1rem; }
.al-headline em { color:var(--gold); font-style:italic; }
.al-sub { font-family:'Outfit',sans-serif; font-size:.90rem; color:var(--text-muted); line-height:1.85; max-width:360px; margin-bottom:2.5rem; }
.al-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; margin-bottom:2.5rem; }
.al-m { background:rgba(184,142,72,.07); border:1px solid rgba(184,142,72,.18); padding:.95rem; text-align:center; }
.al-mn { font-family:'Cormorant Garamond',serif; font-size:1.75rem; font-weight:300; color:var(--gold); line-height:1; }
.al-ml { font-family:'Outfit',sans-serif; font-size:.58rem; letter-spacing:.14em; text-transform:uppercase; color:var(--text-dim); margin-top:.28rem; }
.al-steps { list-style:none; }
.al-steps li { font-family:'Outfit',sans-serif; font-size:.83rem; color:var(--text-muted); padding:.58rem 0; display:flex; align-items:center; gap:.85rem; border-bottom:1px solid rgba(184,142,72,.06); }
.al-steps li:last-child { border-bottom:none; }
.step-ico { width:27px; height:27px; background:rgba(184,142,72,.1); border:1px solid rgba(184,142,72,.24); display:flex; align-items:center; justify-content:center; font-family:'Outfit',sans-serif; font-size:.70rem; font-weight:600; color:var(--gold); flex-shrink:0; }
.auth-right { background:var(--bg); display:flex; align-items:center; justify-content:center; padding:4rem 2.5rem; }
.auth-box { width:100%; max-width:435px; }
.auth-tabs { display:flex; border:1px solid var(--border); margin-bottom:2rem; }
.auth-tab { flex:1; text-align:center; padding:.82rem; font-family:'Outfit',sans-serif; font-size:.76rem; font-weight:500; letter-spacing:.08em; text-transform:uppercase; cursor:pointer; color:var(--text-muted); background:transparent; border:none; border-bottom:2px solid transparent; transition:all .24s; }
.auth-tab.active { color:var(--gold); background:rgba(184,142,72,.06); border-bottom-color:var(--gold); }
.auth-panel { display:none; }
.auth-panel.active { display:block; animation:fd .32s ease; }
.form-title { font-family:'Cormorant Garamond',serif; font-size:1.75rem; font-weight:300; color:var(--text); margin-bottom:.28rem; }
.form-sub { font-family:'Outfit',sans-serif; font-size:.82rem; color:var(--text-muted); margin-bottom:1.7rem; }
.or-line { display:flex; align-items:center; gap:1rem; margin:1.15rem 0; font-family:'Outfit',sans-serif; font-size:.72rem; color:var(--text-dim); }
.or-line::before, .or-line::after { content:''; flex:1; height:1px; background:var(--border); }
.foot-link { text-align:center; font-family:'Outfit',sans-serif; font-size:.80rem; color:var(--text-muted); margin-top:1.4rem; }
.foot-link a { color:var(--gold); cursor:pointer; }
.big-btn { width:100%; background:var(--gold); color:var(--bg); border:none; font-family:'Outfit',sans-serif; font-size:.80rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; padding:.92rem; cursor:pointer; display:flex; align-items:center; justify-content:center; gap:.5rem; transition:background .24s, transform .18s; }
.big-btn:hover { background:var(--gold-lt); transform:translateY(-1px); }
@keyframes fd { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
@media(max-width:768px) { .auth-wrap{grid-template-columns:1fr} .auth-left{display:none} .auth-right{padding:2.5rem 1.4rem} }