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

:root {
  --navy: #0D1B2A;
  --white: #F7F5F2;
  --charcoal: #333333;
  --gold: #C9A96E;
  --gold-light: #dfc08a;
  --t: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--charcoal); line-height: 1.7; cursor: none; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', 'Playfair Display', serif; color: var(--navy); line-height: 1.2; }
a { text-decoration: none; color: inherit; cursor: none; }
img { max-width: 100%; display: block; }

/* CUSTOM CURSOR */
#cursor-dot {
  position: fixed; top: 0; left: 0; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%; pointer-events: none;
  z-index: 9999; transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
#cursor-ring {
  position: fixed; top: 0; left: 0; width: 32px; height: 32px;
  border: 1px solid rgba(201,169,110,0.6); border-radius: 50%; pointer-events: none;
  z-index: 9998; transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.2s, height 0.2s, border-color 0.2s;
}
body:has(a:hover) #cursor-dot,
body:has(button:hover) #cursor-dot { width: 12px; height: 12px; background: var(--gold-light); }
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring { width: 48px; height: 48px; border-color: var(--gold); }

/* GRID TEXTURE OVERLAY */
.grid-texture {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(13,27,42,0.97); backdrop-filter: blur(8px);
  padding: 1.2rem 5%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-family: 'Cormorant Garamond', serif; color: var(--white); font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a { color: rgba(247,245,242,0.75); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; transition: color var(--t); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { border: 1px solid var(--gold) !important; color: var(--gold) !important; padding: 0.45rem 1.3rem; border-radius: 2px; }
.nav-cta:hover { background: var(--gold); color: var(--navy) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; background: none; border: none; padding: 0; }
.hamburger span { width: 24px; height: 1.5px; background: var(--white); display: block; transition: var(--t); }

/* BUTTONS */
.btn { display: inline-block; font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.9rem 2.2rem; border-radius: 2px; border: none; cursor: none; transition: all var(--t); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(247,245,242,0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: #162436; transform: translateY(-1px); }

/* SECTIONS */
section { padding: 6rem 5%; }
.label { font-family: 'Inter', sans-serif; font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; display: block; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
.section-sub { color: #666; font-size: 1rem; font-weight: 300; max-width: 560px; }
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* HERO */
.hero {
  min-height: 100vh; background: linear-gradient(135deg, #0D1B2A 0%, #162436 55%, #1a2d42 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 5% 6rem; position: relative; overflow: hidden;
}

/* Radial glow */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(201,169,110,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(201,169,110,0.05) 0%, transparent 45%);
}

/* Orbital rings */
.orbital-rings {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.12);
  animation: orbit-spin linear infinite;
}
.ring:nth-child(1) { width: 500px; height: 500px; animation-duration: 30s; border-style: dashed; }
.ring:nth-child(2) { width: 750px; height: 750px; animation-duration: 50s; animation-direction: reverse; }
.ring:nth-child(3) { width: 1050px; height: 1050px; animation-duration: 80s; border-style: dashed; }
@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-inner { position: relative; z-index: 1; }
.hero h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 4.2rem); max-width: 820px; margin: 1rem auto 1.5rem; font-weight: 600; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p { color: rgba(247,245,242,0.7); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2.8rem; font-weight: 300; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; height: 70px; background: var(--white); clip-path: ellipse(55% 100% at 50% 100%); }

/* CREDIBILITY */
.credibility { background: var(--navy); padding: 3.5rem 5%; }
.cred-inner { display: flex; justify-content: center; align-items: center; gap: 4rem; flex-wrap: wrap; }
.cred-stat h3 { color: var(--gold); font-size: 2.4rem; font-weight: 700; font-family: 'Cormorant Garamond', serif; }
.cred-stat p { color: rgba(247,245,242,0.55); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.3rem; }
.cred-div { width: 1px; height: 48px; background: rgba(201,169,110,0.25); }

/* PILLARS */
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 3.5rem; }
.pillar { background: var(--navy); padding: 3rem 2.5rem; position: relative; overflow: hidden; transition: transform var(--t); }
.pillar:hover { transform: translateY(-4px); }
.pillar::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--gold); }
.pillar-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; color: rgba(201,169,110,0.12); line-height: 1; margin-bottom: 1rem; }
.pillar h3 { color: var(--white); font-size: 1.35rem; margin-bottom: 0.8rem; }
.pillar p { color: rgba(247,245,242,0.6); font-size: 0.9rem; font-weight: 300; }

/* WHO */
.who { background: #f0ede8; }
.who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.who-card { background: var(--white); border: 1px solid rgba(201,169,110,0.2); padding: 2rem 1.8rem; border-radius: 2px; transition: all var(--t); }
.who-card:hover { border-color: var(--gold); box-shadow: 0 8px 30px rgba(13,27,42,0.08); }
.who-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.who-card h4 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--navy); }
.who-card p { font-size: 0.85rem; color: #666; font-weight: 300; }

/* EXPERIENCES */
.experiences { background: var(--navy); position: relative; overflow: hidden; }
.experiences::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.06) 0%, transparent 65%);
}
.experiences .section-title { color: var(--white); }
.experiences .section-sub { color: rgba(247,245,242,0.6); }
.exp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 1.5rem; margin-top: 3.5rem; }
.exp-card { border: 1px solid rgba(201,169,110,0.2); padding: 2.5rem 2rem; text-align: center; transition: all var(--t); position: relative; overflow: hidden; }
.exp-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform var(--t); }
.exp-card:hover::after { transform: scaleX(1); }
.exp-card:hover { background: rgba(201,169,110,0.04); }
.exp-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.exp-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.5rem; }
.exp-card p { color: rgba(247,245,242,0.5); font-size: 0.83rem; font-weight: 300; }

/* BENEFITS */
.benefits-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3rem; }
.benefits-list { list-style: none; }
.benefits-list li { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid rgba(201,169,110,0.12); }
.benefits-list li:last-child { border-bottom: none; }
.b-icon { width: 36px; height: 36px; background: rgba(201,169,110,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.9rem; }
.b-text h4 { font-size: 0.95rem; margin-bottom: 0.25rem; color: var(--navy); }
.b-text p { font-size: 0.83rem; color: #777; font-weight: 300; }
.benefits-panel { background: var(--navy); padding: 3.5rem; position: relative; }
.benefits-panel::before { content: ''; position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px; border: 1px solid rgba(201,169,110,0.25); pointer-events: none; }
.panel-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--white); font-style: italic; line-height: 1.5; margin-bottom: 2rem; }
.panel-quote span { color: var(--gold); }
.panel-sub { color: rgba(247,245,242,0.55); font-size: 0.85rem; margin-bottom: 1.5rem; }

/* PARTNERS */
.partners { background: #f0ede8; }
.partner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.partner-card { background: var(--white); padding: 2.5rem 2rem; border-top: 3px solid var(--gold); transition: all var(--t); }
.partner-card:hover { box-shadow: 0 12px 40px rgba(13,27,42,0.1); transform: translateY(-3px); }
.partner-card h4 { font-size: 1.1rem; margin-bottom: 0.7rem; color: var(--navy); }
.partner-card p { font-size: 0.86rem; color: #666; font-weight: 300; line-height: 1.6; }

/* FOUNDER */
.founder { background: var(--navy); position: relative; overflow: hidden; }
.founder::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.07) 0%, transparent 50%);
}
.founder-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: center; }
.founder-img-wrap { position: relative; }
.founder-img {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, #162436, #1e3550);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; border: 1px solid rgba(201,169,110,0.2);
  overflow: hidden;
}
.founder-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.founder-img-wrap::after { content: ''; position: absolute; bottom: -12px; right: -12px; width: 100%; height: 100%; border: 1px solid rgba(201,169,110,0.25); pointer-events: none; }
.founder .section-title { color: var(--white); }
.founder-bio { color: rgba(247,245,242,0.68); font-size: 0.93rem; font-weight: 300; margin-top: 1.5rem; line-height: 1.85; }
.founder-sig { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(201,169,110,0.2); }
.founder-sig h4 { color: var(--white); font-size: 1.1rem; }
.founder-sig p { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.1em; margin-top: 0.3rem; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3.5rem; }
.testimonial { background: var(--navy); padding: 2.5rem; position: relative; }
.testimonial::before { content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: rgba(201,169,110,0.18); position: absolute; top: 0.5rem; left: 1.5rem; line-height: 1; }
.t-text { color: rgba(247,245,242,0.78); font-size: 0.9rem; font-style: italic; line-height: 1.75; margin-bottom: 1.5rem; padding-top: 1.5rem; }
.t-author h5 { color: var(--white); font-size: 0.88rem; }
.t-author p { color: var(--gold); font-size: 0.76rem; margin-top: 0.2rem; }

/* JOIN CTA */
.join-cta { background: linear-gradient(135deg, #0D1B2A 0%, #162436 100%); text-align: center; padding: 7rem 5%; position: relative; overflow: hidden; }
.join-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.06) 0%, transparent 70%); }
.join-cta .section-title { color: var(--white); max-width: 600px; margin: 0 auto 1rem; }
.join-cta > p { color: rgba(247,245,242,0.58); max-width: 480px; margin: 0 auto 2.5rem; font-weight: 300; position: relative; }
.join-cta .hero-btns { position: relative; }

/* FOOTER */
footer { background: #080f17; padding: 4rem 5% 2rem; color: rgba(247,245,242,0.45); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(201,169,110,0.1); }
.footer-brand p { font-size: 0.83rem; line-height: 1.7; max-width: 250px; margin-top: 0.8rem; }
.footer-col h5 { color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { font-size: 0.83rem; transition: color var(--t); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; font-size: 0.76rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom a { transition: color var(--t); }
.footer-bottom a:hover { color: var(--gold); }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, #0D1B2A 0%, #162436 100%); padding: 10rem 5% 5rem; text-align: center; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 60%, rgba(201,169,110,0.08) 0%, transparent 60%);
}
.page-hero .grid-texture { z-index: 0; }
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); margin-top: 0.5rem; }
.page-hero p { color: rgba(247,245,242,0.62); max-width: 560px; margin: 1rem auto 0; font-weight: 300; }

/* FORMS */
.form-section { background: var(--white); }
.form-wrap { max-width: 680px; margin: 3rem auto 0; background: var(--navy); padding: 3.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.fg { display: flex; flex-direction: column; gap: 0.45rem; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(247,245,242,0.55); }
.fg input, .fg select, .fg textarea { background: rgba(247,245,242,0.04); border: 1px solid rgba(201,169,110,0.2); color: var(--white); padding: 0.85rem 1rem; font-family: 'Inter', sans-serif; font-size: 0.88rem; outline: none; transition: border-color var(--t); border-radius: 2px; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg select option { background: var(--navy); }
.fg textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 1.5rem; width: 100%; padding: 1rem; }

/* TABS */
.tab-nav { display: flex; gap: 0; margin-bottom: 0; max-width: 680px; margin: 3rem auto 0; }
.tab-btn {
  flex: 1; padding: 0.9rem 1rem; background: rgba(13,27,42,0.5);
  color: rgba(247,245,242,0.5); border: 1px solid rgba(201,169,110,0.15);
  font-family: 'Inter', sans-serif; font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; cursor: none; transition: all var(--t);
}
.tab-btn.active { background: var(--navy); color: var(--gold); border-color: var(--gold); border-bottom-color: var(--navy); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel .form-wrap { margin-top: 0; border-top: none; }

/* EVENTS */
.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 2rem; margin-top: 3rem; }
.event-card { background: var(--white); border: 1px solid rgba(201,169,110,0.15); overflow: hidden; transition: all var(--t); }
.event-card:hover { box-shadow: 0 12px 40px rgba(13,27,42,0.1); transform: translateY(-3px); }
.event-head { background: var(--navy); padding: 2rem; display: flex; justify-content: space-between; align-items: flex-start; }
.event-date .day { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--gold); line-height: 1; }
.event-date .month { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(247,245,242,0.45); }
.event-badge { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,169,110,0.35); padding: 0.3rem 0.8rem; }
.event-body { padding: 2rem; }
.event-body h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.event-loc { font-size: 0.8rem; color: #888; margin-bottom: 0.8rem; }
.event-body p { font-size: 0.86rem; color: #666; font-weight: 300; margin-bottom: 1.5rem; }
.events-loading { text-align: center; padding: 3rem; color: #888; font-size: 0.9rem; }

/* MEMBERSHIP TIERS */
.tiers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 2rem; margin-top: 3rem; }
.tier { background: var(--navy); padding: 3rem 2.5rem; position: relative; transition: transform var(--t); }
.tier:hover { transform: translateY(-4px); }
.tier.featured { border: 1px solid var(--gold); }
.tier.featured::before { content: 'Most Popular'; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 1rem; }
.tier-name { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; display: block; }
.tier h3 { color: var(--white); font-size: 1.6rem; margin: 0.5rem 0 1.5rem; }
.tier-features { list-style: none; margin-bottom: 2rem; }
.tier-features li { color: rgba(247,245,242,0.68); font-size: 0.86rem; padding: 0.6rem 0; border-bottom: 1px solid rgba(201,169,110,0.1); display: flex; align-items: center; gap: 0.7rem; }
.tier-features li::before { content: '✦'; color: var(--gold); font-size: 0.58rem; flex-shrink: 0; }

/* ABOUT */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-panel { background: var(--navy); padding: 4rem 3rem; text-align: center; }
.about-panel .big { font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: var(--gold); line-height: 1; }
.about-panel p { color: rgba(247,245,242,0.55); font-size: 0.83rem; margin-top: 0.5rem; }
.about-text p { color: #555; font-size: 0.95rem; font-weight: 300; line-height: 1.85; margin-bottom: 1.2rem; }

/* TOAST */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: var(--navy); border: 1px solid rgba(201,169,110,0.4);
  color: var(--white); padding: 1rem 1.5rem; font-size: 0.85rem;
  max-width: 320px; transform: translateY(120px); opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-color: rgba(42,110,74,0.6); }
.toast.error { border-color: rgba(192,57,43,0.6); }
.toast-title { font-weight: 600; margin-bottom: 0.25rem; color: var(--gold); }

/* RETAILER TICKER */
.ticker-section { background: #080f17; padding: 1.6rem 0; overflow: hidden; border-top: 1px solid rgba(201,169,110,0.12); border-bottom: 1px solid rgba(201,169,110,0.12); position: relative; }
.ticker-label { position: absolute; left: 0; top: 0; bottom: 0; z-index: 2; display: flex; align-items: center; padding: 0 1.5rem; background: #080f17; border-right: 1px solid rgba(201,169,110,0.18); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.ticker-mask { overflow: hidden; padding-left: 160px; }
.ticker-fade-left  { position: absolute; left: 160px; top: 0; bottom: 0; width: 80px; z-index: 1; background: linear-gradient(to right, #080f17, transparent); pointer-events: none; }
.ticker-fade-right { position: absolute; right: 0; top: 0; bottom: 0; width: 80px; z-index: 1; background: linear-gradient(to left, #080f17, transparent); pointer-events: none; }
.ticker-track { display: flex; align-items: center; width: max-content; animation: ticker-scroll 40s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex; align-items: center; padding: 0 2.8rem;
  white-space: nowrap; transition: opacity var(--t);
}
.ticker-item:hover { opacity: 1 !important; }
.ticker-item img {
  height: 22px; width: auto; max-width: 110px;
  filter: brightness(0) invert(1); opacity: 0.45;
  transition: opacity var(--t), filter var(--t);
  object-fit: contain;
}
.ticker-item:hover img { opacity: 0.85; filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(5deg); }
.ticker-item span {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(247,245,242,0.35); font-family: 'Inter', sans-serif;
  transition: color var(--t);
}
.ticker-item:hover span { color: var(--gold); }
.ticker-dot { color: rgba(201,169,110,0.25); font-size: 0.5rem; flex-shrink: 0; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.fade { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade.in { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .benefits-layout, .founder-layout, .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; gap: 2px; }
  .ring:nth-child(1) { width: 320px; height: 320px; }
  .ring:nth-child(2) { width: 480px; height: 480px; }
  .ring:nth-child(3) { width: 680px; height: 680px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--navy); padding: 2rem 5%; gap: 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .fg.full { grid-column: 1; }
  .form-wrap { padding: 2rem 1.5rem; }
  .cred-div { display: none; }
  .cred-inner { gap: 2rem; }
  section { padding: 4rem 5%; }
  .tab-nav { flex-direction: column; }
  .tab-btn.active { border-bottom-color: var(--gold); }
  #cursor-dot, #cursor-ring { display: none; }
  body, a, button, .btn, .hamburger { cursor: auto; }
}
