:root {
  --brand-orange: #F25C1F;
  --brand-orange-dark: #C44A18;
  --brand-black: #0A0A0A;
  --brand-white: #FFFFFF;
  --neutral-900: #1A1A1A;
  --neutral-700: #4A4A4A;
  --neutral-500: #6B7280;
  --neutral-300: #D1D5DB;
  --neutral-200: #E5E7EB;
  --neutral-100: #F5F5F5;
  --neutral-50:  #FAFAFA;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--neutral-900);
  background: var(--brand-white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-orange); text-decoration: none; }
a:hover { color: var(--brand-orange-dark); }

h1, h2, h3, h4 { color: var(--brand-black); letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 .5em; font-weight: 700; }
.display { font-weight: 800; font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.02; letter-spacing: -0.035em; text-transform: uppercase; }
.lead { font-size: 1.25rem; color: var(--neutral-700); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 1.25rem; }

.brand-mark { font-weight: 800; font-size: 1.75rem; letter-spacing: -0.03em; text-transform: uppercase; color: var(--brand-white); display: inline-flex; align-items: center; text-decoration: none; line-height: 1; }
.brand-mark .bang { color: var(--brand-orange); margin-right: 2px; }
.brand-mark.dark { color: var(--brand-black); }

.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.5rem; font-weight: 600; font-size: 1rem; border-radius: 6px; border: 2px solid transparent; cursor: pointer; transition: all .15s ease; text-decoration: none; line-height: 1.2; }
.btn-primary { background: var(--brand-orange); color: var(--brand-white); border-color: var(--brand-orange); }
.btn-primary:hover { background: var(--brand-orange-dark); border-color: var(--brand-orange-dark); color: var(--brand-white); }
.btn-outline { background: transparent; color: var(--brand-white); border-color: var(--brand-white); }
.btn-outline:hover { background: var(--brand-white); color: var(--brand-black); }
.btn-outline-dark { background: transparent; color: var(--brand-black); border-color: var(--brand-black); }
.btn-outline-dark:hover { background: var(--brand-black); color: var(--brand-white); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; }

/* Nav */
.lp-nav { background: var(--brand-black); color: var(--brand-white); position: sticky; top: 0; z-index: 100; }
.lp-nav .container { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; padding-bottom: 1rem; }
.lp-nav-actions { display: flex; gap: .65rem; }
.lp-nav-actions .btn { padding: .55rem 1.15rem; font-size: .9rem; }

/* Hero */
.hero { background: var(--brand-black); color: var(--brand-white); padding: 5rem 0 6rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%; background: radial-gradient(circle, rgba(242,92,31,0.18) 0%, transparent 60%); pointer-events: none; }
.hero h1 { color: var(--brand-white); position: relative; }
.hero .lead { color: var(--neutral-300); max-width: 640px; }
.hero .cta-row { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; position: relative; }
.hero small { color: var(--neutral-500); display: block; margin-top: 1.5rem; }

/* Sections */
section { padding: 5rem 0; }
section.dark { background: var(--brand-black); color: var(--brand-white); }
section.dark h2, section.dark h3 { color: var(--brand-white); }
section.grey { background: var(--neutral-50); }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin: 0 0 .5em; }
.section-title p { color: var(--neutral-700); font-size: 1.15rem; margin: 0; }

/* Three pillars */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.pillar { text-align: center; }
.pillar-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--brand-orange); color: var(--brand-white); display: inline-flex; align-items: center; justify-content: center; font-size: 1.75rem; margin-bottom: 1rem; }
.pillar h3 { font-size: 1.5rem; }
.pillar p { color: var(--neutral-700); }

/* Cards / strips */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.lp-card { background: var(--brand-white); border: 1px solid var(--neutral-200); border-radius: 12px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: box-shadow .15s ease, transform .15s ease; text-decoration: none; color: inherit; display: block; }
.lp-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.1); transform: translateY(-2px); color: inherit; }
.lp-card .cover { aspect-ratio: 16/9; background: var(--neutral-200); overflow: hidden; }
.lp-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.lp-card .body { padding: 1rem 1.15rem 1.25rem; }
.lp-card .category { display: inline-block; padding: .15rem .55rem; background: var(--neutral-100); color: var(--neutral-700); border-radius: 999px; font-size: .75rem; font-weight: 600; margin-bottom: .35rem; }
.lp-card h3 { font-size: 1.05rem; margin: 0 0 .25rem; }
.lp-card .meta { color: var(--neutral-500); font-size: .85rem; margin-top: .35rem; }

.member-card { background: var(--brand-white); border: 1px solid var(--neutral-200); border-radius: 12px; padding: 1.25rem; text-align: center; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: box-shadow .15s ease, transform .15s ease; text-decoration: none; color: inherit; display: block; }
.member-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.1); transform: translateY(-2px); color: inherit; }
.member-card .avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--brand-orange); color: var(--brand-white); margin: 0 auto .75rem; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.5rem; overflow: hidden; }
.member-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.member-card strong { display: block; font-size: 1rem; color: var(--brand-black); }
.member-card .biz { color: var(--neutral-700); font-size: .9rem; }
.member-card .tag { display: inline-block; margin-top: .5rem; padding: .15rem .55rem; background: var(--brand-orange); color: var(--brand-white); border-radius: 999px; font-size: .75rem; font-weight: 600; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.step { text-align: center; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--brand-orange); color: var(--brand-white); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.5rem; margin-bottom: 1rem; }

/* FAQ */
.faq details { background: var(--brand-white); border: 1px solid var(--neutral-200); border-radius: 8px; padding: 1rem 1.25rem; margin-bottom: .75rem; }
.faq details[open] { background: var(--neutral-50); }
.faq summary { font-weight: 700; font-size: 1.05rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::after { content: '+'; font-weight: 400; font-size: 1.5rem; color: var(--brand-orange); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: .75rem 0 0; color: var(--neutral-700); }

/* Final CTA */
.final-cta { text-align: center; padding: 5rem 0; }
.final-cta h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1.5rem; }

/* Footer */
.lp-footer { background: var(--brand-black); color: var(--neutral-400); padding: 3rem 0 2rem; }
.lp-footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.lp-footer h4 { color: var(--brand-white); font-size: 1rem; }
.lp-footer a { color: var(--neutral-300); display: block; padding: .25rem 0; }
.lp-footer a:hover { color: var(--brand-white); }
.lp-footer-bottom { border-top: 1px solid #222; padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .85rem; }
@media (max-width: 768px) {
  .lp-footer-cols { grid-template-columns: 1fr; }
}

/* Cookie banner */
.cookie-banner { position: fixed; bottom: 1rem; left: 1rem; right: 1rem; max-width: 480px; margin: 0 auto; background: var(--brand-black); color: var(--brand-white); padding: 1rem 1.25rem; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.25); z-index: 1000; display: none; gap: 1rem; align-items: center; flex-wrap: wrap; }
.cookie-banner.show { display: flex; }
.cookie-banner .btn { padding: .5rem 1rem; font-size: .85rem; }
.cookie-banner span { flex: 1; font-size: .9rem; }

/* Static legal pages */
.legal-page { padding: 4rem 0; max-width: 760px; margin: 0 auto; }
.legal-page h1 { font-size: 2.5rem; }
.legal-page h2 { font-size: 1.5rem; margin-top: 2rem; }

@media (max-width: 600px) {
  section { padding: 3.5rem 0; }
  body { font-size: 16px; }
}
