/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Outfit', sans-serif; background: #000; color: #fff; overflow-x: hidden; }

/* Navigation */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  position: sticky; top: 0; z-index: 100;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(12px);
}
nav .logo { font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; gap: 0.5rem; }
nav .logo img { width: 28px; height: 28px; border-radius: 6px; }
nav .nav-links { display: flex; gap: 2rem; align-items: center; }
nav .nav-links a { color: #fff; text-decoration: none; font-size: 0.85rem; transition: color 0.15s; }
nav .nav-links a:hover { color: #fff; }
nav .cta-btn {
  background: #3b8bff; color: #fff !important; border: none; padding: 0.55rem 1.3rem;
  border-radius: 6px; font-size: 0.82rem; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: background 0.15s;
}
nav .cta-btn:hover { background: #5aa0ff; color: #fff !important; }

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 0 4rem;
  text-align: center;
  overflow: hidden;
}
.hero-top {
  max-width: 580px;
  margin-bottom: 2rem;
  padding: 0 2rem;
}
.hero-top h1 {
  font-weight: 800;
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 0.6rem;
}
.hero-subtitle {
  font-size: 0.92rem;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.hero-platforms {
  font-size: 0.75rem;
  color: #bbb;
  margin-top: 0.7rem;
}
.hero-cta {
  max-width: 560px;
  margin: 0 auto;
  min-height: 50px;
}

/* Intake Form */
.intake-step { transition: opacity 0.3s ease, transform 0.3s ease; }
.intake-step.hidden { display: none; }
.intake-step.leaving { opacity: 0; transform: translateY(-8px); pointer-events: none; }
.intake-step.entering { opacity: 0; transform: translateY(8px); }
#step-1 { max-width: 380px; margin: 0 auto; }
.intake-row {
  display: flex;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #333;
}
.intake-row input {
  flex: 1;
  padding: 0.75rem 1.1rem;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.85rem;
  font-family: inherit;
}
.intake-row input::placeholder { color: #666; }
.intake-row button {
  padding: 0.75rem 1.4rem;
  background: #3b8bff;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: background 0.15s;
}
.intake-row button:hover { background: #5aa0ff; }
.error-msg {
  font-size: 0.75rem;
  color: #e74c3c;
  margin-top: 0.4rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.error-msg.visible { opacity: 1; }
.intake-card {
  border: 1px solid #333;
  border-radius: 10px;
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  text-align: left;
}
.intake-label {
  font-size: 0.82rem;
  margin-bottom: 0.8rem;
  opacity: 0.8;
}
.intake-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.intake-radio, .intake-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #333;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: border-color 0.15s, background 0.15s;
}
.intake-radio:has(:checked), .intake-check:has(:checked) {
  border-color: #3b8bff;
  background: rgba(59,139,255,0.1);
}
.intake-radio input, .intake-check input { display: none; }
.intake-card button {
  width: 100%;
  padding: 0.7rem;
  background: #3b8bff;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s;
  font-family: inherit;
}
.intake-card button:hover { background: #5aa0ff; }
.intake-card button:disabled { opacity: 0.4; cursor: default; }

/* Carousel */
.carousel-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.carousel-tab {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  color: #888;
  cursor: pointer;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.carousel-tab.active {
  color: #fff;
  font-weight: 600;
  border-bottom-color: #fff;
}
.carousel-tab:hover { color: #fff; }

/* Theme Toggle */
.theme-toggle {
  position: absolute;
  top: -32px;
  right: 2rem;
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid #444;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s;
}
.theme-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.theme-toggle-thumb.light {
  transform: translateX(20px);
  background: #fef3c7;
}
.toggle-icon {
  width: 11px;
  height: 11px;
  color: #3b8bff;
}

/* Carousel Display */
.carousel-display {
  position: relative;
  width: 100%;
  max-width: 1100px;
  padding: 0 2rem;
}
.carousel-desktop-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: opacity 0.6s ease;
  display: block;
}
.carousel-desktop-img.carousel-next {
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  width: calc(100% - 4rem);
  opacity: 0;
  pointer-events: none;
}
.carousel-mobile-wrap {
  position: absolute;
  right: 0;
  bottom: -1.5rem;
  width: 320px;
  z-index: 2;
}
.carousel-phone-frame {
  width: 100%;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.carousel-mobile-img {
  position: absolute;
  top: 2.1%;
  left: 4.1%;
  width: 91.8%;
  height: 95.8%;
  object-fit: cover;
  object-position: top;
  border-radius: 13% / 6.3%;
  z-index: 1;
  transition: opacity 0.6s ease;
}
.carousel-mobile-img.carousel-next {
  opacity: 0;
  pointer-events: none;
}

/* Manifesto Section */
.manifesto {
  background: #fff;
  color: #111;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 3rem;
}
.manifesto-inner {
  max-width: 620px;
  width: 100%;
}
.manifesto-rule {
  width: 40px;
  height: 3px;
  background: #ccc;
  margin: 0 auto 2.5rem;
}
.manifesto h2 {
  font-weight: 800;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 4rem;
  line-height: 1.4;
}
.manifesto-body {
  max-width: 520px;
  margin: 0 auto;
}
.manifesto p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 1.8rem;
  font-weight: 400;
}

/* Feature Sections */
.feature-section {
  padding: 5rem 3rem;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.feature-dark {
  background: #000;
  color: #fff;
  clip-path: polygon(0 0, 100% 4vw, 100% 100%, 0 calc(100% - 4vw));
  padding-top: calc(4vw + 5rem);
  padding-bottom: calc(4vw + 5rem);
}
.feature-light {
  background: #fff;
  color: #111;
  clip-path: polygon(0 4vw, 100% 0, 100% calc(100% - 4vw), 0 100%);
  padding-top: calc(4vw + 5rem);
  padding-bottom: calc(4vw + 5rem);
}
.feature-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.feature-grid-reverse {
  grid-template-columns: 0.8fr 1.4fr;
}
.feature-img-wrap { position: relative; overflow: hidden; }
.feature-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.feature-light .feature-img {
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.feature-text h3 {
  font-weight: 800;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
}
.feature-sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 1.2rem;
}
.feature-text p {
  font-size: 0.92rem;
  line-height: 1.8;
  opacity: 0.75;
  max-width: 400px;
}

/* Meet the Team */
.meet-team {
  background: #fff;
  padding: 5rem 3rem;
  text-align: center;
}
.meet-team h2 {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 3rem;
}
.team-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  justify-items: center;
}
.team-member { text-align: center; }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}
.team-name {
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 0.2rem;
}
.team-role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3b8bff;
  margin-bottom: 0.8rem;
}
.team-bio {
  font-size: 0.82rem;
  line-height: 1.7;
  color: #666;
  max-width: 250px;
  margin: 0 auto;
}

/* Final CTA */
.final-cta {
  background: #fff;
  padding: 3rem;
  padding-bottom: 0;
  text-align: center;
}
.activity-img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.activity-wrap {
  margin: 2.5rem auto 0;
  max-width: 1080px;
  position: relative;
  background: url('assets/activity_bg.png') center center / 100% 100% no-repeat;
}
.final-cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #3b8bff;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: background 0.15s, box-shadow 0.15s;
}
.final-cta-btn:hover {
  background: #5aa0ff;
  box-shadow: 0 4px 20px rgba(59,139,255,0.3);
}

/* Footer */
footer {
  background: #fff;
  border-top: 1px solid #e8e8e8;
  padding: 2.5rem 3rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-left { font-size: 0.78rem; color: #999; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8rem; color: #666; text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: #111; }

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 2rem 0 0; }
  .hero-top h1 { font-size: 1.7rem; }
  .hero-top { padding: 0 1.2rem; }
  .hero-cta { max-width: 100%; }
  .carousel-tabs { gap: 0.8rem; flex-wrap: wrap; padding: 0 1rem; }
  .carousel-tab { font-size: 0.75rem; }
  .carousel-display { padding: 0 1rem 3rem; display: flex; justify-content: center; }
  .carousel-desktop-img { display: none; }
  .theme-toggle { display: none; }
  .carousel-mobile-wrap {
    position: relative;
    right: auto;
    bottom: auto;
    width: 240px;
    margin: 0 auto;
  }
  .nav-forum-link { display: none; }

  .feature-grid, .feature-grid-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .feature-dark, .feature-light {
    clip-path: none;
    padding: 3rem 1.5rem;
  }

  .team-grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}
