/* =============================================
   UPSHIFT — Custom Theme
   ============================================= */

:root {
  --bg: #0d0d12;
  --bg-2: #13131a;
  --fg: #f0ede6;
  --fg-muted: #8a8a9a;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --accent-glow: rgba(245, 158, 11, 0.06);
  --border: rgba(240, 237, 230, 0.08);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(24px, 5vw, 64px);
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(13, 13, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.nav__tagline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── MANIFESTO ── */
.manifesto {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 15vh, 140px) clamp(24px, 5vw, 80px);
  overflow: hidden;
}
.manifesto__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.manifesto__eyebrow {
  font-size: clamp(12px, 1.5vw, 15px);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.manifesto__headline {
  font-family: var(--font-display);
  font-size: clamp(68px, 12vw, 140px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.manifesto__line { display: block; }
.manifesto__line--accent { color: var(--accent); }
.manifesto__sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.manifesto__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ── STATS ── */
.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(48px, 8vh, 80px) clamp(24px, 5vw, 80px);
}
.stats__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 180px;
}
.stats__number {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stats__label {
  font-size: 13px;
  font-weight: 400;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.stats__divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .stats__divider { display: none; }
  .stats__inner { gap: 32px; }
}

/* ── FEATURES ── */
.features {
  padding: clamp(80px, 12vh, 120px) clamp(24px, 5vw, 80px);
}
.features__inner { max-width: 1100px; margin: 0 auto; }
.features__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--fg);
  margin-bottom: 56px;
  letter-spacing: 0.02em;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media (max-width: 700px) {
  .features__grid { grid-template-columns: 1fr; }
}
.features__card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: clamp(28px, 4vw, 40px);
  position: relative;
  transition: background 0.2s;
}
.features__card:hover { background: #16161f; }
.features__card-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.features__card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.features__card-body {
  font-size: 14px;
  font-weight: 400;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── AUDIENCE ── */
.audience {
  padding: clamp(80px, 12vh, 120px) clamp(24px, 5vw, 80px);
  background: var(--bg-2);
}
.audience__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 800px) {
  .audience__inner { grid-template-columns: 1fr; gap: 48px; }
  .audience__visual { display: none; }
}
.audience__heading-main {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  color: var(--fg);
  display: block;
  letter-spacing: 0.02em;
  margin-bottom: 36px;
}
.audience__list { list-style: none; }
.audience__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 400;
  color: var(--fg);
}
.audience__marker { color: var(--accent); font-weight: 600; flex-shrink: 0; }
.audience__note {
  margin-top: 28px;
  font-size: 13px;
  font-style: italic;
  color: var(--fg-muted);
  line-height: 1.6;
}
.audience__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
}
.audience__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245, 158, 11, 0.15);
}
.audience__ring--1 { width: 260px; height: 260px; animation: spin 20s linear infinite; }
.audience__ring--2 { width: 180px; height: 180px; animation: spin 14s linear infinite reverse; }
.audience__ring--3 { width: 100px; height: 100px; animation: spin 9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.audience__core {
  position: absolute;
  width: 64px; height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.4);
}
.audience__core-text {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #0d0d12;
  text-align: center;
  line-height: 1.2;
}

/* ── FUNNEL ── */
.funnel {
  padding: clamp(80px, 12vh, 120px) clamp(24px, 5vw, 80px);
}
.funnel__inner { max-width: 900px; margin: 0 auto; }
.funnel__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--fg);
  margin-bottom: 56px;
  letter-spacing: 0.02em;
}
.funnel__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}
.funnel__step {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.funnel__step-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
}
.funnel__step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.funnel__step-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.funnel__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: var(--fg-muted);
  opacity: 0.4;
  flex-shrink: 0;
  padding-top: 24px;
}
@media (max-width: 700px) {
  .funnel__arrow { transform: rotate(90deg); padding: 12px 0; }
}
.funnel__bottom {
  margin-top: 48px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-align: center;
  font-style: italic;
}

/* ── CLOSING ── */
.closing {
  padding: clamp(80px, 12vh, 120px) clamp(24px, 5vw, 80px);
  background: var(--bg-2);
  text-align: center;
}
.closing__inner { max-width: 800px; margin: 0 auto; }
.closing__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 88px);
  color: var(--fg);
  line-height: 0.95;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}
.closing__body {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ── FOOTER ── */
.footer {
  padding: 32px clamp(24px, 5vw, 80px);
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.footer__tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-left: 12px;
}
.footer__left { display: flex; align-items: baseline; }
.footer__copy {
  font-size: 12px;
  color: var(--fg-muted);
}
