/* =============================================
   HOPS TOPIC WORLD — Custom Landing Page CSS
   ============================================= */

:root {
  --bg: #0D0705;
  --bg-alt: #150C07;
  --bg-card: #1C1109;
  --accent: #D4920A;
  --accent-dark: #A37108;
  --accent-glow: rgba(212, 146, 10, 0.15);
  --text: #F5EFE0;
  --text-muted: #9C8E78;
  --text-dim: #5C4D3A;
  --border: rgba(212, 146, 10, 0.2);
  --section-num-color: rgba(212, 146, 10, 0.25);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --max-w: 1100px;
  --gutter: clamp(24px, 5vw, 64px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--gutter);
  background: linear-gradient(to bottom, rgba(13,7,5,0.95) 0%, rgba(13,7,5,0) 100%);
  backdrop-filter: blur(8px);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}
.nav__links {
  display: flex;
  gap: 28px;
}
.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--accent); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: clamp(100px, 12vh, 140px) var(--gutter) 80px;
  position: relative;
  overflow: hidden;
}
.hero__bg-text {
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 200px);
  font-weight: 900;
  color: var(--bg-alt);
  letter-spacing: -0.05em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 36px;
}
.hero__headline em {
  font-style: italic;
  color: var(--accent);
}
.hero__sub {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.hero__divider {
  width: 2px;
  height: 60px;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}
.hero__sub p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
}
.hero__visual {
  position: relative;
  z-index: 1;
  padding-left: 60px;
  display: flex;
  align-items: center;
}
.hop-illustration {
  width: clamp(160px, 20vw, 280px);
  animation: float 6s ease-in-out infinite;
}
.hop-svg { width: 100%; height: auto; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* ---- MANIFESTO ---- */
.manifesto {
  background: var(--bg-alt);
  padding: 120px var(--gutter);
  position: relative;
}
.manifesto__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  align-items: start;
}
.manifesto__number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--section-num-color);
  line-height: 1;
  padding-top: 8px;
}
.manifesto__text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 28px;
}
.manifesto__text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 620px;
}
blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin-top: 36px;
}
blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text) !important;
  line-height: 1.6;
}
blockquote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* ---- FOUNDERS ---- */
.founders {
  padding: 120px var(--gutter);
  background: var(--bg);
}
.founders__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.founders__header {
  margin-bottom: 64px;
}
.founders__number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--section-num-color);
  line-height: 1;
  margin-bottom: 24px;
}
.founders__header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.founders__sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}
.founders__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 32px;
  position: relative;
}
.founder-card__initial {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 20px;
}
.founder-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.founder-card > p {
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.founder-card__quote {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.founder-card__quote svg { flex-shrink: 0; margin-top: 2px; }
.founder-card__quote p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
}

/* ---- PROOF ---- */
.proof {
  padding: 120px var(--gutter);
  background: var(--bg-alt);
}
.proof__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.proof__number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--section-num-color);
  line-height: 1;
  margin-bottom: 32px;
}
.proof__header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.proof__header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.proof__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  margin-bottom: 56px;
  border: 1px solid var(--border);
}
.stat {
  background: var(--bg-card);
  padding: 36px 28px;
  text-align: center;
}
.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.5;
}
.proof__mentions {
  margin-bottom: 48px;
}
.proof__mentions-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.proof__logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.proof__logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.proof__logo-sep {
  color: var(--text-dim);
}
.proof__events {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.proof__event {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.proof__event-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}
.proof__event p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- OUTCOMES ---- */
.outcomes {
  padding: 120px var(--gutter);
  background: var(--bg);
}
.outcomes__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.outcomes__number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--section-num-color);
  line-height: 1;
  margin-bottom: 24px;
}
.outcomes__inner > h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 56px;
}
.outcomes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.outcome {
  background: var(--bg-card);
  padding: 44px 40px;
}
.outcome__icon {
  margin-bottom: 20px;
}
.outcome h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.outcome p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---- CLOSING ---- */
.closing {
  padding: 140px var(--gutter);
  background: var(--bg-alt);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.closing__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.closing__quote {
  margin-bottom: 48px;
}
.closing__text {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 12px;
}
.closing__sub {
  font-size: 1rem;
  color: var(--text-muted);
}
.closing__divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 48px;
}
.closing__mission h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 24px;
}
.closing__mission p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---- FOOTER ---- */
.footer {
  padding: 60px var(--gutter);
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.footer__tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.footer__links {
  display: flex;
  gap: 28px;
}
.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--accent); }
.footer__legal p {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }
  .hero__visual { display: none; }
  .hero__content { max-width: 100%; }

  .manifesto__inner {
    grid-template-columns: 1fr;
  }
  .manifesto__number { display: none; }

  .founders__grid {
    grid-template-columns: 1fr;
  }

  .proof__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .outcomes__grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .nav__links { display: none; }
  .proof__stats { grid-template-columns: 1fr; }
  .hero__headline { font-size: 44px; }
}