@font-face {
  font-family: 'Nohemi';
  src: url('../assets/fonts/Nohemi.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: 'Orienta';
  src: url('../assets/fonts/Orienta.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

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

:root {
  --color-bg: #000000;
  --color-white: #FFFFFF;
  --color-primary: #8A4821;
  --color-logo-bg: #191919;
  --font-heading: 'Nohemi', sans-serif;
  --font-body: 'Orienta', sans-serif;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ==================== BUTTONS ==================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease, background-position 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 20px rgba(138, 72, 33, 0.4);
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background-image: linear-gradient(to top, #C4622D 50%, var(--color-primary) 50%);
  background-size: 100% 200%;
  background-position: top;
  color: var(--color-white);
  border: 0.5px solid var(--color-white);
  border-radius: 100px;
}

.btn--primary:hover {
  background-position: bottom;
}


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

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(11, 11, 13, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: background-color 0.3s ease;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  animation: headerSlideDown 3s cubic-bezier(0.22, 1, 0.36, 1) 0s both;
}

.header__cta {
  animation: headerSlideDown 3s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

@keyframes headerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header__logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-logo-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.header__logo-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.header__logo:hover .header__logo-icon img {
  transform: rotate(360deg);
}

.header__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
}

.header__cta {
  font-size: 14px;
  padding: 10px 20px;
}

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

.hero {
  position: relative;
  text-align: center;
  padding: 60px 24px 48px;
  overflow: hidden;
}

.hero__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__dot {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  animation: dot-float var(--duration) ease-in-out infinite alternate;
  animation-delay: var(--delay);
}

@keyframes dot-float {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(var(--dx), var(--dy));
  }
}

/* TODO: Replace glow gradient with actual background image from design */
.hero__glow {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.15;
  color: var(--color-white);
  max-width: 360px;
}

.hero__sticker {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin: 0 -2px;
}

.hero__description {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: #A8A8AA;
  max-width: 320px;
  animation: heroDescSlideIn 2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

@keyframes heroDescSlideIn {
  from {
    opacity: 0;
    transform: translateY(-254px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__title--typing::after {
  content: '|';
  display: inline-block;
  color: var(--color-primary);
  margin-left: 2px;
  animation: cursorBlink 0.7s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero__cta {
  font-size: 16px;
  padding: 14px 36px;
  animation: heroCTAPop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 1.8s both;
}

@keyframes heroCTAPop {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.hero__avatars {
  display: flex;
}

.hero__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-white);
  object-fit: cover;
}

.hero__avatar:not(:first-child) {
  margin-left: -10px;
}

.hero__count {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-white);
}

/* ==================== MARQUEE ==================== */

.marquee {
  background-color: #8A482117;
  border-top: 1px dashed rgba(255, 255, 255, 0.25);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  animation: marquee-scroll 15s linear infinite;
  transition: animation-duration 0.3s ease;
}

.marquee:hover .marquee__track {
  animation-duration: 8s;
}

.marquee__text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
  text-transform: none;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==================== FIND YOUR PLACE ==================== */

.places {
  background-color: var(--color-white);
  padding: 48px 24px;
}

.places__inner {
  text-align: center;
}

.places__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: #111111;
}

.places__description {
  font-family: var(--font-body);
  font-size: 14px;
  color: #111111;
  line-height: 1.6;
  margin-top: 12px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.places__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.places__card {
  position: relative;
  background-color: #0F0E14;
  border: 1.48px solid var(--card-accent);
  border-radius: 16px;
  padding: 32px 20px 24px;
  text-align: left;
  width: 100%;
  max-width: 340px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.places__card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border-color: var(--card-accent);
}

.places__card--1 {
  transform: rotate(-1.5deg);
}

.places__card--2 {
  transform: rotate(1deg);
}

.places__card--3 {
  transform: rotate(-1deg);
}

/* Places card directional reveal — keyframe-based so layout position stays intact for IntersectionObserver */
.places__card--1.reveal--left,
.places__card--3.reveal--left {
  opacity: 0;
  transform: rotate(-1.5deg);
}

.places__card--3.reveal--left {
  transform: rotate(-1deg);
}

.places__card--2.reveal--right {
  opacity: 0;
  transform: rotate(1deg);
}

.places__card--1.reveal--left.is-visible {
  animation: slideFromLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.places__card--2.reveal--right.is-visible {
  animation: slideFromRight 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.places__card--3.reveal--left.is-visible {
  animation: slideFromLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes slideFromLeft {
  from { opacity: 0; transform: translateX(-80px) rotate(-1.5deg); }
  to   { opacity: 1; transform: translateX(0) rotate(-1.5deg); }
}

@keyframes slideFromRight {
  from { opacity: 0; transform: translateX(80px) rotate(1deg); }
  to   { opacity: 1; transform: translateX(0) rotate(1deg); }
}

.places__card-number {
  position: absolute;
  top: -12px;
  left: -12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  color: var(--card-accent);
  background-color: #0F0E14;
  border: 2px solid var(--card-accent);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.places__card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--card-accent);
  margin-top: 4px;
}

.places__card-description {
  font-family: var(--font-body);
  font-size: 13px;
  color: #A8A8AA;
  line-height: 1.5;
  margin-top: 8px;
}

/* ==================== FEATURES ==================== */

.features {
  position: relative;
  padding: 48px 24px;
  text-align: center;
  overflow: visible;
}

.features__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.features__inner {
  position: relative;
  z-index: 1;
}

.features__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-white);
}

.features__description {
  font-family: var(--font-body);
  font-size: 14px;
  color: #A8A8AA;
  line-height: 1.6;
  margin-top: 12px;
}

.features__slider {
  display: contents;
}

/* Mobile-only directional reveal for feature cards */
@media (max-width: 1023px) {
  .features__card--reveal-left {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .features__card--reveal-right {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .features__card--reveal-left.is-visible {
    animation: featureSlideFromLeft 2.4s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .features__card--reveal-right.is-visible {
    animation: featureSlideFromRight 2.4s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  @keyframes featureSlideFromLeft {
    from { opacity: 0; transform: translateX(-80px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  @keyframes featureSlideFromRight {
    from { opacity: 0; transform: translateX(80px); }
    to   { opacity: 1; transform: translateX(0); }
  }
}

.features__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  margin-top: 40px;
  padding: 0 16px 80px 8px;
}


.features__card {
  position: relative;
  width: 217px;
  min-height: 321px;
  border-radius: 20px;
  background: var(--card-color);
  outline: 4.85px dashed rgba(255, 255, 255, 0.41);
  /* outline-offset: 3px; */
  padding: 28px 20px 20px;
  overflow: visible;
}

.features__card::before {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  height: 50%;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  pointer-events: none;
  z-index: 1;
}

.features__card--1 {
  transform: rotate(-3deg);
}

.features__card--2 {
  transform: rotate(2deg);
}

.features__card--3 {
  transform: rotate(-2deg);
}

.features__card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-white);
  text-align: center;
  line-height: 1.25;
}

.features__card-image {
  position: absolute;
  bottom: 8px;
  right: -65px;
  width: 145%;
  border-radius: 12px;
  pointer-events: none;
}

.features__card-image {
  transform: rotate(6deg);
}

/* ==================== HOW IT WORKS ==================== */

.how {
  background-color: var(--color-white);
  position: relative;
  /* top padding makes room for the divider that floats above the section boundary */
  padding-top: 4vw;
}

.how__divider {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  /* center the image on the features/how boundary */
  transform: translateY(-50%);
  z-index: 5;
}

.how__inner {
  padding: 32px 20px 48px;
  text-align: center;
}

.how__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: #111111;
}

.how__subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  color: #555555;
  margin-top: 6px;
}

.how__steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.how__step {
  position: relative;
  border-radius: 16px 16px 16px 60px;
  border: 2.23px solid #111111;
  padding: 28px 28px 36px;
  min-height: 130px;
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how__step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.how__step--light {
  background-color: #FFFFFF;
}

.how__step--orange {
  background-color: #D46A2C;
}

.how__step--gold {
  background-color: #C3A432;
}

.how__step-watermark {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2.23px solid #0000001A;
  pointer-events: none;
}

.how__step-watermark--left {
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
}

.how__step-watermark--right {
  right: -40px;
  top: -30px;
}

.how__step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: #111111;
}

.how__step--orange .how__step-title,
.how__step--gold .how__step-title {
  color: var(--color-white);
}

.how__step-description {
  font-family: var(--font-body);
  font-size: 13px;
  color: #333333;
  line-height: 1.55;
  margin-top: 8px;
}

.how__step--orange .how__step-description,
.how__step--gold .how__step-description {
  color: rgba(255, 255, 255, 0.88);
}

/* ==================== VENDOR / GROW BUSINESS ==================== */

.vendor {
  position: relative;
  background: linear-gradient(131.42deg, #111111 0%, #331604 100%);
  overflow: hidden;
  padding: 48px 24px 0;
  text-align: center;
}

.vendor__circle {
  position: absolute;
  border-radius: 50%;
  border: 15.88px solid #FFFFFF1A;
  pointer-events: none;
}

.vendor__circle--tl {
  width: 300px;
  height: 300px;
  top: -120px;
  left: -100px;
}

.vendor__circle--br {
  width: 260px;
  height: 260px;
  bottom: -160px;
  right: -80px;
}

.vendor__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.vendor__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 24px;
  color: var(--color-white);
  line-height: 1.2;
}

.vendor__description {
  font-family: var(--font-body);
  font-size: 14px;
  color: #A8A8AA;
  line-height: 1.6;
  max-width: 300px;
}

.btn--vendor {
  font-size: 15px;
  padding: 14px 25px;
  background-color: #8A4821;
}

.vendor__phone {
  margin-top: 12px;
  width: 75%;
  max-width: 260px;
}

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

/* ==================== BUILT FOR EVERYONE ==================== */

.built {
  padding: 28px 14px 0 14px;
  text-align: center;
}

.built__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 26px;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.built__subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  color: #A8A8AA;
}

.built__stage {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 360px;
  margin: 0 auto;
}

.built__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.built__card-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  z-index: 2;
  pointer-events: none;
}

.built__bubble {
  position: absolute;
  z-index: 3;
}

.built__bubble--organizer {
  top: 90px;
  right: 30px;
}

.built__bubble--planner {
  bottom: 120px;
  right: 30px;
}

.built__bubble--friends {
  top: 160px;
  left: -30px;
}

.built__bubble--vendors {
  bottom: 60px;
  left: 10px;
}

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

.waitlist {
  position: relative;
  padding: 0 16px 32px;
}

.waitlist__badge {
  position: absolute;
  top: -28px;
  right: 28px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #8A4821;
  border: 1.64px solid #0B0B0D;
  box-shadow: 2.46px 2.46px 0px 0px #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
}

.waitlist__badge span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  color: var(--color-white);
  line-height: 1.3;
  transform: rotate(10deg);
}

.waitlist__inner {
  background-color: var(--color-white);
  border: 1.34px dashed #0B0B0D;
  border-radius: 20px;
  box-shadow: 6px 6px 0px 0px #8A4821;
  padding: 28px 20px 24px;
}

.waitlist__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  margin-left: -30px;
}

.waitlist__join-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: #111111;
  background: var(--color-white);
  border: 1.25px solid #0B0B0D;
  box-shadow: 2.5px 2.5px 0px 0px #111111;
  border-radius: 100px;
  padding: 10px 8px;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
}

.waitlist__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: #111111;
  line-height: 1.1;
}

.waitlist__coming {
  font-family: var(--font-body);
  font-size: 13px;
  color: #A8A8AA;
  margin-bottom: 16px;
}

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

.waitlist__store-icons,
.waitlist__social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.waitlist__store-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.92px solid #8A4821;
  box-shadow: 2.38px 2.38px 0px 0px #8A4821;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.waitlist__store-icon:hover {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 3px 3px 0px 0px #8A4821;
}

.waitlist__join-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.waitlist__join-btn:hover {
  transform: scale(1.05);
  box-shadow: 3px 3px 0px 0px #111111;
}

.waitlist__join-btn:active {
  transform: scale(0.96);
  box-shadow: 1px 1px 0px 0px #111111;
}

/* ==================== MODAL ==================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal-frame {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-overlay.is-open .modal-frame {
  transform: translateY(0) scale(1);
}

.modal {
  background: #0B0B0D;
  border: 4px solid #8A4821;
  box-shadow: 7.55px 7.55px 0px 0px #8A4821;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px 24px 28px;
  position: relative;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #FEFDFE;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  z-index: 1;
}

.modal__close:hover {
  opacity: 1;
}

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.modal__header-text {
  flex: 1;
}

.modal__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-white);
  margin-bottom: 10px;
}

.modal__title-line {
  width: 60px;
  height: 3px;
  background: #D46A2C;
  border-radius: 2px;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.modal__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal__label {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-white);
}

.modal__required {
  color: #E53535;
}

.modal__input {
  background: #161618;
  border: 0.5px solid #B4B3B4;
  border-radius: 12px;
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-white);
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.modal__input::placeholder {
  color: #B4B3B4;
}

.modal__input:focus {
  border-color: rgba(212, 106, 44, 0.6);
}

.modal__input.is-invalid,
.modal__select.is-invalid {
  border-color: #E53535;
}

.modal__field-error {
  font-family: var(--font-body);
  font-size: 12px;
  color: #E53535;
  margin-top: 4px;
  display: none;
}

.modal__field-error.is-visible {
  display: block;
}

.modal__field--vendor {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}

.modal__field--vendor.is-visible {
  max-height: 120px;
  opacity: 1;
  margin-top: 0;
}

.modal__select-wrap {
  position: relative;
}

.modal__select {
  appearance: none;
  -webkit-appearance: none;
  background: #161618;
  border: 0.5px solid #B4B3B4;
  border-radius: 12px;
  padding: 16px 48px 16px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #B4B3B4;
  outline: none;
  width: 100%;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.modal__select:focus {
  border-color: rgba(212, 106, 44, 0.6);
}

.modal__select.has-value {
  color: var(--color-white);
}

.modal__select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.modal__submit {
  font-size: 16px;
  padding: 16px;
  width: 100%;
  margin-top: 8px;
  border-radius: 100px;
}

.modal__error {
  font-size: 13px;
  color: #ef4444;
  margin: 4px 0 0;
}

/* Success state */
.modal__success-state[hidden] {
  display: none;
}

.modal__success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 0 8px;
  position: relative;
}

.modal__success-tag {
  position: absolute;
  top: 15px;
  right: 0;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-white);
  transform: rotate(15deg);
  z-index: 10;
}

.modal__success-tag[hidden] {
  display: none;
}

.modal__success-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  color: var(--color-white);
  margin-bottom: 8px;
  margin-top: 16px;
}

.modal__success-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
}

.modal__success-icon {
  border: 8px solid #FFFFFF;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  box-shadow: 0px 0px 40px 0px #904419d4;
  position: relative;
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.modal__success-icon::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both, dashSpin 6s linear infinite;
}

@keyframes dashSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes successPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.modal__return {
  font-size: 16px;
  padding: 16px 40px;
  border-radius: 100px;
}

/* ==================== ANIMATIONS ==================== */

.waitlist__badge {
  animation: badge-wobble 3s ease-in-out infinite;
}

@keyframes badge-wobble {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  75% { transform: rotate(-5deg); }
}

.built__lines line {
  animation: dash-flow 4s linear infinite;
}

@keyframes dash-flow {
  to { stroke-dashoffset: -40; }
}

.built__bubble {
  transition: transform 0.3s ease;
}

.built__bubble:hover {
  transform: scale(1.1);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--left {
  opacity: 0;
  transform: translateX(-360px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--right {
  opacity: 0;
  transform: translateX(360px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--scale {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal--top {
  opacity: 0;
  transform: translateY(-60px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--fade {
  opacity: 0;
  transition: opacity 0.9s ease;
}

.reveal.is-visible,
.reveal--scale.is-visible,
.reveal--up.is-visible,
.reveal--top.is-visible,
.reveal--fade.is-visible {
  opacity: 1;
  transform: none;
}

/* left/right — only apply to non-places-card elements */
.reveal--left.is-visible:not(.places__card),
.reveal--right.is-visible:not(.places__card) {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }
.reveal-delay-4 { transition-delay: 0.5s; }

/* ==================== ACCENT SPANS ==================== */

.hero__title-accent {
  color: #D46A2C;
}

/* ==================== DESKTOP (1024px+) ==================== */

@media (min-width: 1024px) {

  /* Header */
  .header {
    border: 1px solid #2a2a2a;
  }

  .header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 48px;
  }

  .header__logo-text {
    font-size: 20px;
  }

  .header__cta {
    font-size: 15px;
    padding: 12px 28px;
  }

  /* Hero */
  .hero {
    padding: 100px 24px 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero__glow {
    width: 700px;
    height: 500px;
    top: -200px;
  }

  .hero__content {
    max-width: 900px;
    gap: 32px;
  }

  .hero__title {
    font-size: 72px;
    max-width: 860px;
    line-height: 1.05;
  }

  .hero__description {
    font-size: 18px;
    max-width: 520px;
  }

  .hero__cta {
    font-size: 18px;
    padding: 16px 64px;
    min-width: 320px;
  }

  .hero__avatar {
    width: 48px;
    height: 48px;
  }

  .hero__count {
    font-size: 16px;
  }

  /* Marquee */
  .marquee__text {
    font-size: 56px;
  }

  /* Find Your Place */
  .places {
    padding: 80px 48px;
  }

  .places__inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  .places__title {
    font-size: 36px;
  }

  .places__description {
    font-size: 16px;
    max-width: 600px;
  }

  .places__cards {
    gap: 24px;
    margin-top: 48px;
  }

  .places__card {
    max-width: 700px;
    padding: 40px 36px 32px;
    border: 2px solid var(--card-accent);
  }

  .places__card-title {
    font-size: 28px;
  }

  .places__card-description {
    font-size: 15px;
  }

  /* Features */
  .features {
    padding: 80px 48px;
  }

  .features__inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  .features__title {
    font-size: 36px;
  }

  .features__description {
    font-size: 16px;
  }

  .features__cards {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 60px 48px 140px;
    margin-top: 0;
    overflow: hidden;
  }

  .features__slider {
    display: flex;
    gap: 90px;
    /* width: max-content; */
    animation: featureSlide 18s linear infinite;
    will-change: transform;
  }

  @keyframes featureSlide {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  .features__card {
    width: 26vw;
    min-height: 520px;
    flex-shrink: 0;
  }

  .features__card--1 { transform: rotate(-2deg); }
  .features__card--2 { transform: rotate(1.5deg); }
  .features__card--3 { transform: rotate(-1.5deg); }

  .features__card-title {
    font-size: 28px;
  }

  .features__card-image {
    width: 115%;
    right: -75px;
    bottom: 0;
  }

  /* Vendor / Grow Business */
  .vendor {
    padding: 80px 48px 0;
  }

  .vendor__circle--tl {
    width: 420px;
    height: 420px;
    top: -160px;
    left: -140px;
  }

  .vendor__circle--br {
    width: 400px;
    height: 400px;
    bottom: -220px;
    right: -120px;
  }

  .vendor__inner {
    max-width: 800px;
    margin: 0 auto;
  }

  .vendor__title {
    font-size: 40px;
  }

  .vendor__description {
    font-size: 16px;
    max-width: 600px;
  }

  .btn--vendor {
    font-size: 18px;
    padding: 20px 80px;
    border-radius: 100px;
  }

  .vendor__phone {
    width: 50%;
    max-width: 420px;
    margin-top: 48px;
  }

  /* How It Works */
  .how__divider {
    width: 100%;
    min-width: 100%;
  }

  .how__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 48px 64px;
  }

  .how__title {
    font-size: 28px;
  }

  .how__steps {
    gap: 24px;
    margin-top: 40px;
  }

  .how__step {
    padding: 36px 40px 44px;
    min-height: 160px;
  }

  .how__step-title {
    font-size: 20px;
  }

  .how__step-description {
    font-size: 15px;
    margin-top: 12px;
  }

  /* Built For Everyone */
  .built {
    padding: 80px 48px 100px;
  }

  .built__title {
    font-size: 64px;
    font-weight: 700;
  }

  .built__subtitle {
    font-size: 16px;
    margin-bottom: 80px;
  }

  .built__stage {
    max-width: 900px;
    height: 520px;
  }

  .built__card-img {
    width: 55%;
  }

  .built__bubble--organizer {
    top: 130px;
    right: 260px;
  }

  .built__bubble--planner {
    bottom: 180px;
    right: 240px;
  }

  .built__bubble--friends {
    top: 160px;
    left: 180px;
  }

  .built__bubble--vendors {
    bottom: 120px;
    left: 210px;
  }

  /* Waitlist / Footer */
  .waitlist {
    padding: 0 80px 80px;
  }

  .waitlist__badge {
    width: 100px;
    height: 100px;
    top: -40px;
    right: 80px;
  }

  .waitlist__badge span {
    font-size: 13px;
  }

  .waitlist__inner {
    padding: 48px 48px 40px;
  }

  .waitlist__top {
    margin-left: -60px;
    margin-bottom: 32px;
    gap: 20px;
  }

  .waitlist__join-btn {
    font-size: 18px;
    padding: 16px 28px;
  }

  .waitlist__title {
    font-size: 52px;
  }

  .waitlist__coming {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .waitlist__store-icon {
    width: 56px;
    height: 56px;
  }

  .waitlist__store-icon svg {
    width: 28px;
    height: 28px;
  }

}
