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

:root {
  --lime: #A8E63D;
  --lime-light: #C5F26A;
  --lime-dark: #3B6D11;
  --lime-dim: rgba(168, 230, 61, 0.10);
  --ink: #111111;
  --ink2: #1A1A1A;
  --muted: #6B6B6B;
  --soft: #A0A0A0;
  --white: #FFFFFF;
  --off: #F7FAF4;
  --border: rgba(0, 0, 0, 0.08);
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--ink2);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 62px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 26, 26, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
}

.logo-dot {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  animation: blink 2.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.35;
    transform: scale(0.65)
  }
}

.nav-back {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.nav-back:hover {
  color: var(--lime);
}

/* ══════════════════════════════
   SECTION 1 - HONEST INTRO
   ~100vh dark, editorial
══════════════════════════════ */
.intro-section {
  min-height: 100vh;
  padding: 130px 6vw 90px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* subtle grid texture */
.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.intro-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 230, 61, 0.08) 0%, transparent 65%);
  top: -100px;
  right: -200px;
  pointer-events: none;
  z-index: 0;
}

.intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 96px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* left - the honest text */
.intro-left {
  padding-top: 8px;
}

.intro-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border: 1px solid rgba(168, 230, 61, 0.3);
  border-radius: 100px;
  padding: 5px 14px 5px 8px;
  margin-bottom: 32px;
}

.tag-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
}

.intro-h {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 48px;
}

.intro-h em {
  font-style: italic;
  color: var(--lime);
}

/* honest cards - the real talk */
.honest-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.honest-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.honest-item.on {
  opacity: 1;
  transform: translateX(0);
}

.honest-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.honest-icon {
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.honest-text {}

.honest-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 5px;
  line-height: 1.35;
}

.honest-body {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.7;
  font-weight: 300;
}

.honest-body strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* right - the manifesto card */
.manifesto-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px 30px;
  position: sticky;
  top: 88px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s 0.3s ease, transform 0.7s 0.3s ease;
}

.manifesto-card.on {
  opacity: 1;
  transform: translateY(0);
}

.mf-eyebrow {
  font-size: 10px;
  font-weight: 500;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.mf-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.mf-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 22px;
}

.mf-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.mf-item:last-child {
  margin-bottom: 0;
}

.mf-check {
  width: 18px;
  height: 18px;
  background: var(--lime-dim);
  border: 1px solid rgba(168, 230, 61, 0.3);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 10px;
  color: var(--lime);
}

.mf-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  font-weight: 300;
}

.mf-label strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.mf-founder {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  gap: 12px;
}

.mf-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lime-dim);
  border: 1px solid rgba(168, 230, 61, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.mf-who {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
}

.mf-who strong {
  color: rgba(255, 255, 255, 0.6);
  display: block;
  font-weight: 400;
}

/* ══════════════════════════════
   SECTION 2 - BRAND FORM
   ~100vh white/off, clean
══════════════════════════════ */
.form-section {
  background: var(--off);
  color: var(--ink);
  padding: 100px 6vw 120px;
  position: relative;
  overflow: hidden;
}

.form-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 96px;
  align-items: start;
}

/* left - context */
.form-context {
  position: sticky;
  top: 88px;
}

.form-eyebrow {
  font-size: 11px;
  font-weight: 500;
  color: var(--lime-dark);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 18px;
}

.form-h {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.form-h em {
  font-style: italic;
}

.form-sub {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 32px;
}

.context-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.context-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(168, 230, 61, 0.1);
  border: 1px solid rgba(168, 230, 61, 0.22);
  border-radius: 100px;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--lime-dark);
  font-weight: 400;
}

.ctx-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
}

/* right - form */
.brand-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 4px 48px rgba(0, 0, 0, 0.05);
}

.form-row {
  margin-bottom: 22px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

label .req {
  color: var(--lime-dark);
  margin-left: 2px;
}

input[type=text],
input[type=email],
input[type=url],
select,
textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  background: var(--off);
  border: 1.5px solid rgba(0, 0, 0, 0.09);
  border-radius: 10px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--lime-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(168, 230, 61, 0.12);
}

textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}

.form-section-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 18px;
}

/* checkbox group */
.check-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}

.check-item:hover {
  background: var(--off);
  border-color: rgba(168, 230, 61, 0.35);
}

.check-item input[type=checkbox] {
  display: none;
}

.check-box {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.check-item input:checked~.check-box {
  background: var(--lime);
  border-color: var(--lime-dark);
}

.check-item input:checked~.check-box::after {
  content: '✓';
  font-size: 11px;
  color: var(--lime-dark);
  font-weight: 600;
}

.check-item input:checked~.check-label {
  color: var(--ink);
}

.check-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.4;
}

/* budget radio */
.budget-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.budget-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  transition: all 0.18s;
  user-select: none;
  text-align: center;
}

.budget-pill:hover {
  border-color: rgba(168, 230, 61, 0.4);
  background: var(--off);
}

.budget-pill input[type=radio] {
  display: none;
}

.budget-pill input:checked~.budget-label {
  color: var(--lime-dark);
}

.budget-pill:has(input:checked) {
  background: rgba(168, 230, 61, 0.09);
  border-color: var(--lime-dark);
}

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

/* honest checkbox */
.honest-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(168, 230, 61, 0.06);
  border: 1px solid rgba(168, 230, 61, 0.2);
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
  margin-top: 8px;
}

.honest-check input {
  display: none;
}

.hc-box {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid rgba(168, 230, 61, 0.4);
  background: var(--white);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.honest-check input:checked~.hc-box {
  background: var(--lime);
  border-color: var(--lime-dark);
}

.honest-check input:checked~.hc-box::after {
  content: '✓';
  font-size: 11px;
  color: var(--lime-dark);
  font-weight: 700;
}

.hc-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

.hc-text strong {
  color: var(--ink);
  font-weight: 500;
}

/* submit */
.submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn-submit {
  height: 52px;
  padding: 0 36px;
  border-radius: 100px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-submit:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.btn-submit:active {
  transform: translateY(0);
}

.submit-note {
  font-size: 12.5px;
  color: var(--soft);
  line-height: 1.55;
  max-width: 220px;
}

/* success state */
.form-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
}

.success-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.success-title {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 10px;
}

.success-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── FOOTER ── */
.join-section {
  background: var(--off);
  color: var(--ink);
  padding: 92px 6vw 104px;
}

.join-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 72px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 12%, rgba(168, 230, 61, 0.22), transparent 34%),
    var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.join-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--lime-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.join-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.join-title em {
  font-style: italic;
  color: var(--lime-dark);
}

.join-sub {
  max-width: 560px;
  margin: 0 auto 34px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
}

.btn-join {
  height: 54px;
  padding: 0 34px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--ink);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.btn-join:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

footer {
  background: var(--ink2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: -0.03em;
}

.footer-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .intro-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .manifesto-card {
    position: static;
  }

  .form-section-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-context {
    position: static;
  }
}

@media (max-width: 640px) {
  .intro-section {
    padding: 100px 5vw 72px;
  }

  .form-section {
    padding: 72px 5vw 80px;
  }

  .brand-form {
    padding: 28px 22px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .form-row-2>.form-row {
    margin-bottom: 22px;
  }

  .budget-grid {
    grid-template-columns: 1fr 1fr;
  }

  .submit-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .join-section {
    padding: 70px 5vw 82px;
  }

  .join-card {
    border-radius: 22px;
  }

  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}