/* =========================================
   RESET
========================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  background: #050505;
  color: #f5f5f5;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}


/* =========================================
   VARIABLES
========================================= */

:root {
  --background: #050505;
  --surface: #101010;
  --surface-light: #171717;
  --border: #292929;
  --text: #f5f5f5;
  --muted: #8c8c8c;
  --muted-light: #b5b5b5;
  --accent: #d7ff3f;
  --max-width: 1180px;
}


/* =========================================
   HEADER
========================================= */

.header {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.logo::after {
  content: ".";
  color: var(--accent);
}


/* =========================================
   HERO
========================================= */

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 130px 30px 100px;
}

.hero-content {
  max-width: 900px;
}

.eyebrow,
.small-label,
.final-eyebrow {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--muted);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(215, 255, 63, 0.55);
}

.hero h1 {
  max-width: 900px;

  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.96;
  letter-spacing: -5px;
  font-weight: 750;
}

.hero h1 span {
  color: var(--accent);
}

.hero-description {
  max-width: 560px;
  margin-top: 35px;

  color: var(--muted-light);
  font-size: 19px;
  line-height: 1.6;
}


/* =========================================
   PHOTO CAROUSEL
========================================= */

.photo-section {
  width: 100%;
  padding-bottom: 120px;
}

.carousel-wrapper {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}

.carousel {
  display: flex;
  gap: 18px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  padding: 0 30px;

  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 72%;
  height: 550px;

  overflow: hidden;
  border-radius: 20px;

  scroll-snap-align: center;

  background: var(--surface);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.5s ease;
}

.carousel-item:hover img {
  transform: scale(1.025);
}

.carousel-button {
  position: absolute;
  z-index: 5;

  top: 50%;
  transform: translateY(-50%);

  width: 48px;
  height: 48px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;

  background: rgba(5, 5, 5, 0.75);
  color: white;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  backdrop-filter: blur(10px);

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.carousel-button:hover {
  background: var(--accent);
  color: #050505;
  transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
  left: 48px;
}

.carousel-next {
  right: 48px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;

  margin-top: 22px;
}

.carousel-dot {
  width: 6px;
  height: 6px;

  border: 0;
  border-radius: 50%;

  background: #3b3b3b;
  cursor: pointer;

  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.carousel-dot.active {
  width: 22px;
  border-radius: 10px;
  background: var(--accent);
}


/* =========================================
   GENERIC SECTIONS
========================================= */

.content-section,
.challenges-section,
.community-find-section,
.daily-section,
.waitlist-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.content-section {
  padding-top: 50px;
  padding-bottom: 150px;

  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 50px;
}

.section-number {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-content {
  max-width: 800px;
}

.section-content p {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -1.8px;
  margin-bottom: 25px;
}

.section-content p:last-child {
  color: var(--muted);
}


/* =========================================
   STATEMENT
========================================= */

.statement-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 130px 30px;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.statement {
  color: #505050;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.1;
  letter-spacing: -3px;
  font-weight: 700;
}

.statement span {
  color: #f1f1f1;
}

.statement-highlight {
  margin-top: 15px;
  color: #f1f1f1;
}

.statement-highlight span {
  color: var(--accent);
}


/* =========================================
   CHALLENGES
========================================= */

.challenges-section {
  padding-top: 150px;
  padding-bottom: 150px;
}

.section-heading {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.section-heading h2 {
  margin-top: 15px;

  font-size: clamp(42px, 6vw, 70px);
  line-height: 1;
  letter-spacing: -3px;
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.challenge-card {
  min-height: 260px;

  padding: 25px;

  border: 1px solid var(--border);
  border-radius: 18px;

  background: var(--surface);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.challenge-card:hover {
  transform: translateY(-5px);
  border-color: #555;
}

.challenge-card.featured {
  background: var(--accent);
  color: #050505;
  border-color: var(--accent);
}

.challenge-number {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.5;
}

.challenge-card strong {
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -3px;
  line-height: 1;
}

.challenge-label {
  font-size: 12px;
  color: var(--muted);
}

.featured .challenge-label {
  color: #303900;
}


/* =========================================
   DAILY GOAL
========================================= */

.daily-section {
  padding-bottom: 160px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;

  align-items: center;
}

.daily-card {
  padding: 30px;

  border: 1px solid var(--border);
  border-radius: 22px;

  background: var(--surface);
}

.daily-card-top,
.daily-footer {
  display: flex;
  justify-content: space-between;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
}

.daily-main {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin: 60px 0 50px;
}

.daily-label {
  color: var(--muted);
  font-size: 13px;
}

.daily-main h3 {
  font-size: 100px;
  line-height: 0.9;
  letter-spacing: -7px;
  margin: 10px 0;
}

.daily-unit {
  color: var(--muted-light);
  font-size: 13px;
}

.progress-ring {
  width: 130px;
  height: 130px;

  border-radius: 50%;

  background:
    conic-gradient(var(--accent) 0 68%,
      #292929 68% 100%);

  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-ring-inner {
  width: 104px;
  height: 104px;

  border-radius: 50%;
  background: var(--surface);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.progress-ring-inner strong {
  font-size: 24px;
}

.progress-ring-inner span {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.progress-bar {
  height: 5px;

  border-radius: 10px;
  background: #292929;

  overflow: hidden;
}

.progress-value {
  width: 68%;
  height: 100%;
  background: var(--accent);
}

.daily-footer {
  margin-top: 14px;
  font-size: 10px;
}

.daily-copy {
  max-width: 420px;
}

.daily-copy p {
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -1px;
  margin-bottom: 25px;
}

.daily-copy p:last-child {
  color: var(--muted);
}


/* =========================================
   FIND PEOPLE
========================================= */

.community-find-section {
  padding-top: 150px;
  padding-bottom: 160px;

  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 50px;

  border-top: 1px solid var(--border);
}

.find-content {
  max-width: 850px;
}

.find-content h2 {
  margin-top: 18px;

  font-size: clamp(55px, 8vw, 100px);
  line-height: 0.95;
  letter-spacing: -5px;
}

.find-content h2 span {
  color: var(--accent);
}

.find-description {
  max-width: 550px;

  margin-top: 35px;

  color: var(--muted-light);
  font-size: 19px;
  line-height: 1.6;
}

.location-card {
  margin-top: 60px;
  max-width: 650px;

  padding: 20px;

  display: flex;
  align-items: center;
  gap: 16px;

  border: 1px solid var(--border);
  border-radius: 15px;

  background: var(--surface);
}

.location-icon {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--accent);
  color: #050505;

  font-size: 25px;
}

.location-card strong {
  display: block;
  font-size: 14px;
}

.location-card span {
  display: block;
  margin-top: 2px;

  font-size: 12px;
  color: var(--muted);
}

.location-pulse {
  width: 9px;
  height: 9px;

  margin-left: auto;

  border-radius: 50%;
  background: var(--accent);

  box-shadow:
    0 0 0 5px rgba(215, 255, 63, 0.08),
    0 0 20px rgba(215, 255, 63, 0.5);
}


/* =========================================
   FINAL STATEMENT
========================================= */

.final-section {
  padding: 170px 30px;

  text-align: center;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.final-section h2 {
  margin-top: 25px;

  font-size: clamp(45px, 8vw, 100px);
  line-height: 0.98;
  letter-spacing: -5px;
}

.final-section h2 span {
  color: var(--accent);
}


/* =========================================
   WAITLIST
========================================= */

.waitlist-section {
  padding-top: 140px;
  padding-bottom: 140px;
}

.waitlist-card {
  padding: 60px;

  border-radius: 25px;

  background: var(--accent);
  color: #050505;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;

  align-items: center;
}

.waitlist-content {
  max-width: 450px;
}

.waitlist-content .small-label {
  color: #3c4700;
}

.waitlist-content h2 {
  margin-top: 20px;

  font-size: clamp(45px, 6vw, 70px);
  line-height: 0.95;
  letter-spacing: -4px;
}

.waitlist-content>p:last-child {
  max-width: 400px;

  margin-top: 25px;

  color: #354000;
  font-size: 16px;
}

.tally-container {
  /* width: 100%; */
  width: 400px;
}

.tally-container iframe {
  display: block;
  width: 100%;
  min-height: 200px;
}


/* =========================================
   FOOTER
========================================= */

.footer {
  max-width: var(--max-width);
  margin: 0 auto;

  padding: 40px 30px 30px;

  border-top: 1px solid var(--border);
}

.footer-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.7px;
}

.footer-logo::after {
  content: ".";
  color: var(--accent);
}

.footer-right {
  margin-top: 30px;

  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 13px;
}

.footer-right span {
  color: var(--muted);
}

.footer-right a {
  transition: color 0.2s ease;
}

.footer-right a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 70px;

  display: flex;
  justify-content: space-between;

  color: #555;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .hero {
    padding-top: 100px;
  }

  .carousel-item {
    flex-basis: 82%;
    height: 480px;
  }

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

  .daily-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .waitlist-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 45px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .header {
    padding: 22px 20px;
  }

  .logo {
    font-size: 18px;
  }


  /* Hero */

  .hero {
    padding: 85px 20px 75px;
  }

  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.3px;
    margin-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 70px);
    letter-spacing: -3.5px;
    line-height: 0.96;
  }

  .hero-description {
    margin-top: 25px;
    font-size: 16px;
  }


  /* Carousel */

  .photo-section {
    padding-bottom: 85px;
  }

  .carousel {
    padding: 0 20px;
    gap: 10px;
  }

  .carousel-item {
    flex: 0 0 88%;
    height: 390px;
    border-radius: 15px;
  }

  .carousel-button {
    display: none;
  }

  .carousel-dots {
    margin-top: 16px;
  }


  /* Content */

  .content-section {
    padding: 30px 20px 100px;

    display: block;
  }

  .content-section .section-number {
    margin-bottom: 35px;
  }

  .section-content p {
    font-size: 29px;
    letter-spacing: -1.2px;
  }


  /* Statement */

  .statement-section {
    padding: 95px 20px;
  }

  .statement {
    font-size: 36px;
    letter-spacing: -1.8px;
  }


  /* Challenges */

  .challenges-section {
    padding: 100px 20px;
  }

  .section-heading {
    display: block;
    margin-bottom: 40px;
  }

  .section-heading .section-number {
    margin-bottom: 35px;
  }

  .section-heading h2 {
    font-size: 45px;
    letter-spacing: -2.5px;
  }

  .challenge-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .challenge-card {
    min-height: 190px;
    padding: 18px;
    border-radius: 14px;
  }

  .challenge-card strong {
    font-size: 38px;
    letter-spacing: -2px;
  }

  .challenge-label {
    font-size: 10px;
  }


  /* Daily */

  .daily-section {
    padding: 0 20px 110px;
    gap: 35px;
  }

  .daily-card {
    padding: 20px;
    border-radius: 17px;
  }

  .daily-main {
    margin: 45px 0 40px;
  }

  .daily-main h3 {
    font-size: 75px;
  }

  .progress-ring {
    width: 95px;
    height: 95px;
  }

  .progress-ring-inner {
    width: 75px;
    height: 75px;
  }

  .progress-ring-inner strong {
    font-size: 18px;
  }

  .daily-copy p {
    font-size: 21px;
  }


  /* Find */

  .community-find-section {
    padding: 100px 20px 110px;

    display: block;
  }

  .community-find-section .section-number {
    margin-bottom: 35px;
  }

  .find-content h2 {
    font-size: 58px;
    letter-spacing: -3px;
  }

  .find-description {
    font-size: 16px;
  }

  .location-card {
    margin-top: 40px;
    padding: 15px;
  }

  .location-card strong {
    font-size: 12px;
  }

  .location-card span {
    font-size: 10px;
  }


  /* Final */

  .final-section {
    padding: 110px 20px;
  }

  .final-section h2 {
    font-size: 48px;
    letter-spacing: -2.5px;
  }


  /* Waitlist */

  .waitlist-section {
    padding: 80px 20px;
  }

  .waitlist-card {
    padding: 30px 20px;
    border-radius: 20px;
    gap: 30px;
  }

  .waitlist-content h2 {
    font-size: 48px;
    letter-spacing: -2.5px;
  }

  .tally-container {
    width: 100%;

  }


  /* Footer */

  .footer {
    padding: 35px 20px 25px;
  }

  .footer-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .footer-bottom {
    margin-top: 50px;

    flex-direction: column;
    gap: 8px;
  }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }

}