:root {
  --bg: #050509;
  --surface: #0b0c10;
  --surface-soft: #111218;
  --text: #f9fafb;
  --muted: #9ca3af;
  --brand: #00ff7f;
  --brand-dark: #00d96a;
  --border: #1f2933;
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;   /* White clean fashion site */
  color: #111111;              /* Dark gray text */
  line-height: 1.6;
}

/* NAVBAR */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  background: rgba(5, 5, 9, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.8);
}

.nav__left {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav__logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #10b981);
  color: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.nav__brand {
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--text);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav__links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--brand);
  color: var(--brand);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.2rem;
  padding: 3.5rem 1.5rem 3.2rem;
  max-width: 1120px;
  margin: 0 auto;
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--brand);
  margin: 0 0 0.7rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
}

.hero__sub {
  margin-top: 0.9rem;
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero__note {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease,
    transform 0.08s ease, box-shadow 0.16s ease;
}

.btn--primary {
  background: var(--brand);
  color: #020617;
  box-shadow: 0 0 22px rgba(0, 255, 127, 0.4);
}

.btn--primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 0 26px rgba(0, 255, 127, 0.55);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-1px);
}

/* HERO IMAGES — CLEAN, FASHION BRAND STYLE */
.hero-image-row {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-photo {
  flex: 1;
  height: 320px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

/* SECTIONS */

.section {
  padding: 3rem 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.section__header h2 {
  margin: 0 0 0.4rem;
  font-size: 1.7rem;
  font-weight: 700;
}

.section__header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Cards */

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.card {
  background: linear-gradient(135deg, #111827, #020617);
  border-radius: 16px;
  padding: 1.3rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card__tag {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--brand);
  margin: 0;
}

.card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text);
}

.card__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.card__pill {
  margin-top: 0.5rem;
  align-self: flex-start;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.75rem;
  color: var(--muted);
}

/* Split section (WHY) */

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  background: radial-gradient(circle at top left, #111827 0, #020617 55%);
  border-radius: 24px;
  padding: 2.7rem 2rem;
  border: 1px solid rgba(15, 23, 42, 0.9);
}

.section__content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.list li {
  margin-bottom: 0.6rem;
  color: var(--muted);
  font-size: 0.93rem;
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.step {
  border-radius: 16px;
  padding: 1.3rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(145deg, #050816, #020617);
}

.step__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--brand);
  color: #020617;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  color: var(--text);
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Waitlist */

.section--waitlist {
  text-align: center;
  background: radial-gradient(circle at top, #111827 0, #020617 60%);
  border-radius: 24px;
  margin-bottom: 3rem;
  border: 1px solid rgba(15, 23, 42, 0.9);
}

.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.waitlist-form input {
  min-width: 240px;
  max-width: 360px;
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  background: #020617;
  color: var(--text);
}

.waitlist-form input::placeholder {
  color: #6b7280;
}

.waitlist-form input:focus {
  outline: none;
  border-color: var(--brand);
}

.waitlist-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Footer */

.footer {
  text-align: center;
  padding: 1.8rem 1rem 2.2rem;
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  margin-top: 1rem;
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero__image-grid {
    order: -1;
  }
  .section--split {
    grid-template-columns: 1fr;
    padding-inline: 1.4rem;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav__links a:not(.nav__cta) {
    display: none;
  }
  .nav {
    padding-inline: 1rem;
  }
  .hero {
    padding-inline: 1.1rem;
  }
  .section {
    padding-inline: 1.1rem;
  }
  .cards,
  .steps {
    grid-template-columns: 1fr;
  }
}
