/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple: #7B51F5;
  --purple-dark: #5a35c4;
  --purple-light: rgba(123, 81, 245, 0.08);
  --blue: #1E6FDB;
  --blue-dark: #1552a8;
  --blue-light: rgba(30, 111, 219, 0.08);
  --black: #111111;
  --cream: #F0EDE8;
  --white: #FFFFFF;
  --charcoal: #1A1A2E;
  --muted: #6B7280;
  --border: #E5E0D8;

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

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --max-w: 1100px;
}

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; }
p { line-height: 1.7; }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(123, 81, 245, 0.35);
}
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--blue);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--blue);
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--blue); color: var(--white); }

/* === SECTION LAYOUT === */
.section { padding: var(--space-xl) var(--space-md); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.75rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.5rem;
  max-width: 640px;
}

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--space-md);
  max-width: var(--max-w);
  margin: 0 auto;
  background: rgba(240, 237, 232, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo img { height: 38px; width: auto; display: block; }
.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.03em;
}
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--purple); }

/* === HERO === */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-orb-purple {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(123,81,245,0.5) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero-orb-blue {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,111,219,0.4) 0%, transparent 70%);
  bottom: -100px; left: 5%;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-text { color: var(--white); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(123,81,245,0.15);
  border: 1px solid rgba(123,81,245,0.3);
  color: #b49af8;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.75rem;
}
.badge-dot {
  width: 6px; height: 6px;
  background: #b49af8;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 540px;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}
.hero-social-proof svg { color: rgba(255,255,255,0.3); flex-shrink: 0; }
.hero-visual { position: relative; }
.hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  display: block;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-image-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
  max-width: 220px;
}
.hero-image-badge-icon {
  width: 36px; height: 36px;
  background: var(--purple-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  flex-shrink: 0;
}

/* === STREET CHALLENGE === */
.street-challenge { background: var(--white); }
.street-challenge-intro { max-width: 700px; margin-bottom: 2.5rem; }
.street-challenge-desc {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}
.challenge-social-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}
.platform-link:hover { color: var(--charcoal); }
.platform-link svg { width: 20px; height: 20px; flex-shrink: 0; }

.ig-preview-card {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  color: var(--white);
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(220,39,67,0.15);
}
.ig-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ig-handle {
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 0.3rem;
}
.ig-desc {
  font-size: 0.8rem;
  opacity: 0.85;
  line-height: 1.4;
}

/* === PILLARS === */
.pillars { background: var(--cream); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.pillar-card:hover {
  box-shadow: 0 8px 40px rgba(123,81,245,0.1);
  border-color: var(--purple);
  transform: translateY(-3px);
}
.pillar-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.pillar-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* === MONETIZATION LADDER === */
.monetization { background: var(--white); }
.ladder {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-top: 2.5rem;
}
.ladder::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 5%; right: 5%;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  border-radius: 2px;
  z-index: 0;
}
.ladder-step {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
}
.ladder-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: var(--white);
  border: 3px solid;
  box-shadow: 0 0 0 6px var(--cream);
  font-size: 1.3rem;
}
.ladder-step:nth-child(1) .ladder-icon-wrap { border-color: var(--purple); }
.ladder-step:nth-child(2) .ladder-icon-wrap { border-color: #a87af5; }
.ladder-step:nth-child(3) .ladder-icon-wrap { border-color: var(--blue); }
.ladder-step:nth-child(4) .ladder-icon-wrap { border-color: #5aa3f5; }
.ladder-step:nth-child(5) .ladder-icon-wrap {
  border: none;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 4px 20px rgba(123,81,245,0.4);
}
.ladder-step-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.ladder-step-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}
.ladder-step-desc {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.ladder-step-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  padding: 0.3rem 0.85rem;
  border: 1.5px solid var(--purple);
  border-radius: var(--radius-pill);
  transition: background 0.15s, color 0.15s;
  display: inline-block;
}
.ladder-step-link:hover { background: var(--purple); color: var(--white); }

/* === ROUNDTABLE === */
.roundtable {
  background: var(--cream);
  text-align: center;
}
.roundtable-icon {
  width: 80px; height: 80px;
  background: var(--purple-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--purple);
}
.roundtable-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.roundtable-body {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* === TEAM OF FLOURISH === */
.team-flourish {
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.team-flourish::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.team-flourish .section-inner { position: relative; z-index: 1; }
.team-flourish-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.team-flourish-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--purple);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

/* === FOOTER === */
.site-footer {
  background: var(--black);
  padding: 3rem var(--space-md);
  text-align: center;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-logo { display: inline-block; margin-bottom: 1rem; }
.footer-logo img { height: 34px; width: auto; }
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.75rem;
  letter-spacing: 0.04em;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.footer-social-link:hover { background: var(--purple); color: var(--white); }
.footer-social-link svg { width: 18px; height: 18px; }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.75rem;
  margin-top: 1rem;
}

/* === HACKATHON PROMO === */
.hackathon-promo {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hackathon-promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hackathon-promo-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.hackathon-header {
  text-align: center;
  max-width: 700px;
}
.hackathon-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hackathon-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.hackathon-urgency-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.45rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(123,81,245,0.45);
}
.hackathon-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 960px;
}
.hackathon-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.hackathon-card-icon {
  font-size: 2rem;
  line-height: 1;
}
.hackathon-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.hackathon-card-copy {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.hackathon-card-cta {
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}
.hackathon-filmed-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  letter-spacing: 0.02em;
  margin: 0;
}
.hackathon-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin: 0.5rem 0 0;
  letter-spacing: 0.02em;
}
.hackathon-audience {
  text-align: center;
  margin-top: 0.5rem;
}
.hackathon-audience-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.75rem;
}
.hackathon-audience-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}
.hackathon-audience-list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 700px) {
  .hackathon-cards {
    grid-template-columns: 1fr;
  }
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-headline, .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-image-badge { bottom: -1rem; left: 1rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .ladder { flex-wrap: wrap; gap: 1.5rem; }
  .ladder::before { display: none; }
  .ladder-step { flex: 0 0 calc(33% - 1rem); }
  .nav-tagline { display: none; }
}
@media (max-width: 600px) {
  .ladder-step { flex: 0 0 calc(50% - 0.75rem); }
  .section { padding: var(--space-lg) var(--space-sm); }
  .hero { min-height: 75vh; }
  .ig-preview-card { flex-direction: column; text-align: center; padding: 1.5rem; gap: 1rem; }
}
@media (max-width: 400px) {
  .ladder-step { flex: 0 0 100%; }
}