/* =========================================================
   Founder1X — Founder Collaboration Network
   Shared stylesheet
   ========================================================= */

:root {
  --navy-900: #0a0f1e;
  --navy-800: #0d1428;
  --navy-700: #131c36;
  --navy-600: #1b2647;
  --orange: #f97316;
  --orange-dark: #ea6a0c;
  --orange-light: #fb923c;
  --blue: #3b82f6;
  --green: #22c55e;
  --purple: #8b5cf6;
  --teal: #14b8a6;
  --pink: #ec4899;
  --ink: #0f172a;
  --slate: #475569;
  --slate-light: #64748b;
  --muted: #94a3b8;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, .08);
  --shadow: 0 10px 30px rgba(15, 23, 42, .10);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, .18);
  --container: 1180px;
  --header-h: 72px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
.text-orange { color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: 1.5px solid transparent; transition: .18s ease;
  white-space: nowrap; font-family: inherit;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(249,115,22,.35); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline-dark { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline-dark:hover { border-color: var(--orange); color: var(--orange); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 15, 30, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo b, .logo .logo-name { font-size: 24px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.logo .logo-name span { color: var(--orange); }
.logo small { font-size: 10px; color: var(--muted); letter-spacing: .06em; margin-top: 3px; text-transform: none; }

.main-nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.main-nav > a, .nav-dropdown-toggle {
  color: #cbd5e1; font-size: 15px; font-weight: 500; padding: 8px 14px; border-radius: 8px;
  background: none; border: none; cursor: pointer; font-family: inherit; display: inline-flex; align-items: center; gap: 5px;
  transition: color .15s;
}
.main-nav > a:hover, .nav-dropdown-toggle:hover { color: #fff; }
.main-nav > a.active { color: var(--orange); position: relative; }
.main-nav > a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 0; height: 2px; background: var(--orange); border-radius: 2px;
}
.nav-dropdown { position: relative; }
.nav-dropdown-toggle svg { width: 14px; height: 14px; transition: transform .2s; }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 240px;
  background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: .18s ease; border: 1px solid var(--line);
}
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 8px; color: var(--ink); font-size: 14px;
}
.nav-dropdown-menu a:hover { background: var(--bg-soft); color: var(--orange); }
.nav-dropdown-menu a .di {
  width: 34px; height: 34px; border-radius: 8px; display: grid; place-items: center; background: #fff5ec; color: var(--orange); flex: none;
}
.nav-dropdown-menu a .di svg { width: 18px; height: 18px; }
.nav-dropdown-menu a strong { display: block; font-weight: 600; }
.nav-dropdown-menu a small { color: var(--slate-light); font-size: 12px; }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,.14); background: transparent;
  color: #cbd5e1; display: grid; place-items: center; cursor: pointer; transition: .15s;
}
.icon-btn:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.icon-btn svg { width: 18px; height: 18px; }
.header-actions .btn-outline { padding: 9px 18px; }
.header-actions .btn-primary { padding: 9px 18px; }
.menu-toggle { display: none; }

/* Search bar */
.search-bar {
  max-height: 0; overflow: hidden; background: var(--navy-800); border-bottom: 1px solid rgba(255,255,255,.06);
  transition: max-height .3s ease;
}
.search-bar.open { max-height: 90px; }
.search-bar form { display: flex; gap: 10px; padding: 16px 0; }
.search-bar input {
  flex: 1; padding: 12px 16px; border-radius: 10px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05); color: #fff; font-size: 15px; font-family: inherit;
}
.search-bar input::placeholder { color: var(--muted); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 78% 30%, rgba(59,130,246,.25), transparent 60%),
    radial-gradient(700px 500px at 10% 10%, rgba(249,115,22,.10), transparent 55%),
    linear-gradient(160deg, #0a0f1e 0%, #0d1730 55%, #0a1226 100%);
  color: #fff; padding: 70px 0 130px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 999px;
  background: rgba(59,130,246,.15); border: 1px solid rgba(96,165,250,.35); color: #bfdbfe;
  font-size: 13px; font-weight: 600; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(38px, 5.2vw, 62px); font-weight: 800; margin-bottom: 20px; }
.hero p.lead { font-size: 17px; color: #cbd5e1; max-width: 520px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }

.hero-stats { display: flex; gap: 8px; flex-wrap: wrap; }
.hero-stat { display: flex; align-items: center; gap: 12px; padding-right: 22px; }
.hero-stat + .hero-stat { border-left: 1px solid rgba(255,255,255,.12); padding-left: 22px; }
.hero-stat .si {
  width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #93c5fd; flex: none;
}
.hero-stat .si svg { width: 20px; height: 20px; }
.hero-stat b { font-size: 20px; display: block; line-height: 1.1; }
.hero-stat span { font-size: 13px; color: var(--muted); }

/* Hero visual */
.hero-visual { position: relative; min-height: 420px; }
.globe {
  position: absolute; inset: 0; margin: auto; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(59,130,246,.55), rgba(29,78,216,.25) 55%, transparent 72%);
  left: 50%; top: 50%; transform: translate(-50%, -50%);
}
.hero-people {
  position: relative; z-index: 2; width: 100%; height: 420px;
  display: grid; place-items: center;
}
.hero-people .people-ph {
  width: 340px; height: 380px; border-radius: 20px; overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1); display: grid; place-items: center; text-align: center; color: var(--muted);
}
.float-card {
  position: absolute; z-index: 3; background: #fff; color: var(--ink); border-radius: 12px; padding: 12px 14px;
  box-shadow: var(--shadow-lg); display: flex; gap: 10px; align-items: flex-start; width: 190px; animation: floaty 5s ease-in-out infinite;
}
.float-card .fc-ic { width: 34px; height: 34px; border-radius: 8px; display: grid; place-items: center; flex: none; }
.float-card strong { font-size: 13px; display: block; }
.float-card small { font-size: 11px; color: var(--slate-light); line-height: 1.35; }
.fc-connect { top: 20px; left: -10px; } .fc-connect .fc-ic { background: #e0edff; color: var(--blue); }
.fc-collab { top: 30px; right: -10px; animation-delay: .6s; } .fc-collab .fc-ic { background: #e0edff; color: var(--blue); }
.fc-grow { bottom: 60px; left: -20px; animation-delay: 1.2s; } .fc-grow .fc-ic { background: #dcfce7; color: var(--green); }
.fc-succeed { bottom: 40px; right: -20px; animation-delay: 1.8s; } .fc-succeed .fc-ic { background: #fef3c7; color: #f59e0b; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Curve into next section */
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; }
.hero-wave svg { width: 100%; height: 70px; display: block; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section.soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.eyebrow { color: var(--blue); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section-head p { color: var(--slate); font-size: 17px; }

/* Platform cards */
.feature-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 18px; text-align: center;
  transition: .2s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature-ic { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; margin: 0 auto 16px; color: #fff; }
.feature-ic svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 13.5px; color: var(--slate); margin-bottom: 14px; }
.feature-card .learn { font-weight: 600; font-size: 13.5px; display: inline-flex; gap: 5px; align-items: center; }
.learn svg { width: 14px; height: 14px; }
.bg-blue { background: var(--blue); } .bg-orange { background: var(--orange); } .bg-green { background: var(--green); }
.bg-purple { background: var(--purple); } .bg-teal { background: var(--teal); } .bg-pink { background: var(--pink); }
.c-blue { color: var(--blue); } .c-orange { color: var(--orange); } .c-green { color: var(--green); }
.c-purple { color: var(--purple); } .c-teal { color: var(--teal); } .c-pink { color: var(--pink); }

/* Trust bar */
.trust-bar { background: linear-gradient(120deg, #0d1428, #131c36); color: #fff; border-radius: 18px; padding: 28px 30px; margin-top: -40px; position: relative; z-index: 5; }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 22px; align-items: center; }
.trust-item { display: flex; gap: 12px; align-items: flex-start; }
.trust-item .ti { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.06); flex: none; }
.trust-item .ti svg { width: 20px; height: 20px; }
.trust-item strong { font-size: 14px; display: block; }
.trust-item small { font-size: 12px; color: var(--muted); }
.trust-cta { text-align: right; }
.trust-cta p { font-size: 13px; color: var(--muted); margin-bottom: 8px; }

/* Generic cards / grids used across pages */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: .2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.card .card-ic { width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; color: #fff; margin-bottom: 16px; }
.card .card-ic svg { width: 24px; height: 24px; }
.card h3 { font-size: 19px; }
.card p { color: var(--slate); font-size: 15px; margin: 0; }
.pill { display: inline-block; background: #fff5ec; color: var(--orange); font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }

/* Page hero (inner pages) */
.page-hero {
  background:
    radial-gradient(700px 380px at 80% 20%, rgba(59,130,246,.22), transparent 60%),
    linear-gradient(160deg, #0a0f1e, #0d1730);
  color: #fff; padding: 64px 0; text-align: center;
}
.page-hero .badge { margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(32px, 4.4vw, 50px); }
.page-hero p { color: #cbd5e1; font-size: 18px; max-width: 620px; margin: 0 auto; }
.breadcrumb { color: var(--muted); font-size: 13px; margin-bottom: 18px; }
.breadcrumb a:hover { color: #fff; }

/* Stats strip */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats-strip .stat b { font-size: 40px; color: var(--orange); display: block; letter-spacing: -.02em; }
.stats-strip .stat span { color: var(--slate); font-weight: 500; }

/* Testimonials */
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.testi p { font-size: 15px; color: var(--ink); font-style: italic; }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testi .who .av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--purple)); color: #fff; display: grid; place-items: center; font-weight: 700; }
.testi .who b { display: block; font-size: 14px; }
.testi .who span { font-size: 13px; color: var(--slate-light); }
.stars { color: #f59e0b; margin-bottom: 12px; letter-spacing: 2px; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--orange), #fb923c);
  color: #fff; border-radius: 22px; padding: 54px; text-align: center;
}
.cta-band h2 { font-size: clamp(26px, 3.4vw, 38px); color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 18px; max-width: 560px; margin: 0 auto 26px; }
.cta-band .btn-ghost { background: #fff; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 32px 28px; display: flex; flex-direction: column; position: relative; }
.price-card.featured { border: 2px solid var(--orange); box-shadow: var(--shadow-lg); transform: scale(1.03); }
.price-card .tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 999px; }
.price-card h3 { font-size: 20px; }
.price-card .price { font-size: 44px; font-weight: 800; letter-spacing: -.03em; margin: 12px 0 2px; }
.price-card .price small { font-size: 15px; font-weight: 500; color: var(--slate-light); }
.price-card .desc { color: var(--slate); font-size: 14px; margin-bottom: 20px; }
.price-features { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.price-features li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; font-size: 14.5px; color: var(--slate); border-top: 1px solid var(--bg-soft); }
.price-features li svg { width: 18px; height: 18px; color: var(--green); flex: none; margin-top: 2px; }
.price-features li.off { color: var(--muted); } .price-features li.off svg { color: var(--muted); }

/* Events */
.event-item { display: grid; grid-template-columns: 90px 1fr auto; gap: 22px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; transition: .2s; }
.event-item:hover { box-shadow: var(--shadow); }
.event-date { text-align: center; background: var(--navy-800); color: #fff; border-radius: 12px; padding: 12px 0; }
.event-date b { font-size: 26px; display: block; line-height: 1; }
.event-date span { font-size: 12px; text-transform: uppercase; color: var(--orange); letter-spacing: .08em; }
.event-meta { color: var(--slate-light); font-size: 13px; display: flex; gap: 16px; flex-wrap: wrap; margin-top: 6px; }
.event-meta span { display: inline-flex; gap: 5px; align-items: center; }
.event-meta svg { width: 14px; height: 14px; }
.tag-chip { display: inline-block; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px; background: #eff6ff; color: var(--blue); }

/* Resources */
.resource-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .2s; }
.resource-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.resource-thumb { height: 150px; display: grid; place-items: center; color: #fff; }
.resource-body { padding: 20px; }
.resource-body h3 { font-size: 17px; }
.resource-body p { font-size: 14px; color: var(--slate); }

/* Forms / Auth */
.auth-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - var(--header-h)); }
.auth-side {
  background:
    radial-gradient(600px 400px at 70% 20%, rgba(59,130,246,.25), transparent 60%),
    linear-gradient(160deg, #0a0f1e, #0d1730);
  color: #fff; padding: 60px; display: flex; flex-direction: column; justify-content: center;
}
.auth-side h2 { font-size: 34px; color: #fff; }
.auth-side ul { list-style: none; padding: 0; margin: 24px 0 0; }
.auth-side li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; color: #cbd5e1; }
.auth-side li svg { width: 22px; height: 22px; color: var(--orange); flex: none; }
.auth-form-wrap { display: grid; place-items: center; padding: 50px 40px; }
.auth-form { width: 100%; max-width: 420px; }
.auth-form h1 { font-size: 28px; }
.auth-form .sub { color: var(--slate); margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font-size: 15px; font-family: inherit; color: var(--ink); transition: .15s; background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,.15); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 13px; color: var(--slate-light); text-align: center; margin-top: 18px; }
.form-note a { color: var(--orange); font-weight: 600; }
.checkbox-row { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--slate); margin-bottom: 18px; }
.checkbox-row input { width: auto; }
.form-success { display: none; background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; padding: 14px 16px; border-radius: 10px; font-size: 14px; margin-bottom: 18px; }
.form-success.show { display: block; }
.divider-or { text-align: center; color: var(--muted); font-size: 13px; margin: 20px 0; position: relative; }
.divider-or::before, .divider-or::after { content: ""; position: absolute; top: 50%; width: 40%; height: 1px; background: var(--line); }
.divider-or::before { left: 0; } .divider-or::after { right: 0; }

/* Contact / general two-col */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split .media { border-radius: 18px; min-height: 340px; background: linear-gradient(150deg, #0d1730, #1b2647); display: grid; place-items: center; color: var(--muted); border: 1px solid var(--line); }
.check-list { list-style: none; padding: 0; margin: 20px 0 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: var(--slate); }
.check-list li svg { width: 22px; height: 22px; color: var(--green); flex: none; }

/* Logos */
.logo-strip { display: flex; flex-wrap: wrap; gap: 40px; justify-content: center; align-items: center; opacity: .8; }
.logo-strip span { font-size: 22px; font-weight: 800; color: var(--slate-light); letter-spacing: -.02em; }

/* ---------- Promoter ---------- */
.promoter { text-align: center; border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; padding-top: 30px; }
.promoter > span { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 14px; }
.promoter-brand { display: inline-flex; align-items: center; gap: 12px; transition: .15s; }
.promoter-brand:hover { transform: translateY(-2px); }
.promoter-brand img { width: 42px; height: 42px; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(37,99,235,.4)); }
.promoter-brand b { font-size: 24px; color: #fff; font-weight: 800; letter-spacing: -.02em; }
.promoter-brand b span { color: #2f6bff; }

/* Promoter band (in-page) */
.promoter-band { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 18px; padding: 30px 40px; display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; text-align: center; }
.promoter-band img { width: 74px; height: 74px; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(37,99,235,.28)); }
.promoter-band .pb-text { text-align: left; }
.promoter-band .pb-text .eyebrow { margin-bottom: 4px; }
.promoter-band .pb-text b { font-size: 22px; font-weight: 800; }
.promoter-band .pb-text b span { color: #2f6bff; }
.promoter-band .pb-text p { margin: 4px 0 0; color: var(--slate); font-size: 14.5px; }
.logo-strip .promoter-logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-strip .promoter-logo img { width: 40px; height: 40px; object-fit: contain; }
.logo-strip .promoter-logo span { color: var(--ink); }
.logo-strip .promoter-logo span span { color: #2f6bff; }
@media (max-width: 560px) { .promoter-band { flex-direction: column; } .promoter-band .pb-text { text-align: center; } }

/* ---------- Footer ---------- */
.site-footer { background: #0a0f1e; color: #cbd5e1; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand .logo-name { font-size: 24px; font-weight: 800; color: #fff; }
.footer-brand .logo-name span { color: var(--orange); }
.footer-brand p { color: var(--muted); font-size: 14px; margin: 14px 0 18px; max-width: 280px; }
.social { display: flex; gap: 10px; }
.social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #cbd5e1; transition: .15s; }
.social a:hover { background: var(--orange); color: #fff; }
.social svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--muted); font-size: 14px; padding: 6px 0; transition: .15s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 13px; }
.footer-bottom a:hover { color: #fff; }
.footer-address { font-style: normal; margin-top: 16px; }
.footer-address .addr-line { display: flex; gap: 8px; color: var(--muted); font-size: 13.5px; align-items: flex-start; line-height: 1.5; }
.footer-address .addr-line svg { width: 16px; height: 16px; color: var(--orange); flex: none; margin-top: 3px; }
.footer-address .addr-line:hover { color: #cbd5e1; }
.footer-address .map-link { margin-top: 10px; color: var(--orange); font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 5px; }
.footer-address .map-link:hover { color: var(--orange-light); }
.footer-address--center { text-align: center; margin: 18px auto 0; }
.footer-address--center .addr-line { justify-content: center; }

/* Contact address card + map */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; max-width: 960px; margin: 0 auto; }
.address-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.address-card .a-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
.address-card .a-row svg { width: 22px; height: 22px; color: var(--orange); flex: none; margin-top: 2px; }
.address-card .a-row b { display: block; font-size: 15px; margin-bottom: 2px; }
.address-card .a-row span { color: var(--slate); font-size: 14.5px; line-height: 1.5; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 300px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Back to top */
.to-top { position: fixed; right: 24px; bottom: 24px; width: 46px; height: 46px; border-radius: 12px; background: var(--orange); color: #fff; display: grid; place-items: center; border: none; cursor: pointer; opacity: 0; pointer-events: none; transition: .25s; box-shadow: var(--shadow); z-index: 90; }
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-cta { grid-column: span 2; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .menu-toggle {
    display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,.14); background: transparent; color: #fff; cursor: pointer;
  }
  .menu-toggle svg { width: 22px; height: 22px; }
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; background: var(--navy-900);
    flex-direction: column; align-items: stretch; gap: 2px; padding: 20px; margin: 0;
    transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; z-index: 99;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > a, .nav-dropdown-toggle { padding: 14px; font-size: 16px; width: 100%; justify-content: space-between; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; max-height: 0; overflow: hidden; padding: 0; transition: max-height .25s; background: rgba(255,255,255,.03); border: none; margin: 4px 0; }
  .nav-dropdown.open .nav-dropdown-menu { max-height: 400px; padding: 6px; }
  .nav-dropdown-menu a { color: #cbd5e1; } .nav-dropdown-menu a strong { color: #fff; }
  .nav-dropdown-menu a:hover { background: rgba(255,255,255,.05); }
  .header-actions .btn-outline, .header-actions .btn-primary { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 360px; order: -1; }
  .split, .auth-wrap { grid-template-columns: 1fr; }
  .auth-side { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .stats-strip, .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .feature-grid, .grid-2, .grid-3, .grid-4, .stats-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stat { padding-right: 12px; } .hero-stat + .hero-stat { padding-left: 12px; }
  .event-item { grid-template-columns: 70px 1fr; }
  .event-item .btn { grid-column: span 2; }
  .cta-band { padding: 36px 24px; }
  .trust-inner { grid-template-columns: 1fr; } .trust-cta { grid-column: 1; }
  .field-row { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
}
