/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --g:    #2b7a50;
  --gd:   #1a5c3a;
  --gl:   #4fa873;
  --g0:   #e8f5e2;
  --g00:  #f3faf0;
  --ink:  #0d1f10;
  --muted:#5a7060;
  --line: #d4e8cb;
  --white:#ffffff;
  --bg:   #f7fcf5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

body::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--gd) 0%, var(--g) 30%, var(--gl) 60%, var(--g) 80%, var(--gd) 100%);
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-link { display: flex; align-items: center; line-height: 0; }
.nav-logo { height: 100px; display: block; }

.nav-links { display: flex; align-items: center; gap: 32px; }

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--g); }

.nav-pill {
  font-size: 13px;
  font-weight: 700;
  color: var(--white) !important;
  background: var(--g);
  padding: 10px 22px;
  border-radius: 100px;
  transition: background 0.2s !important;
}
.nav-pill:hover { background: var(--gd) !important; }

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 72px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(79, 168, 115, 0.3) 0%, transparent 70%),
    radial-gradient(ellipse 90% 70% at 50% -10%, #1e6b44 0%, #0d2a1c 60%, #061410 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.012' fill-rule='evenodd'%3E%3Ccircle cx='60' cy='60' r='1'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-bg-logo {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 0;
}

.hero-inner { position: relative; z-index: 1; max-width: 760px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(125, 181, 106, 0.12);
  border: 1px solid rgba(125, 181, 106, 0.28);
  color: #95cc82;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 100px;
  margin-bottom: 40px;
}

.pulse {
  width: 7px; height: 7px;
  background: #95cc82;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  color: #fff;
  line-height: 1.06;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.hero h1 span {
  background: linear-gradient(135deg, #95cc82, #c8edb4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, #7db56a 0%, #4e9040 100%);
  color: #fff;
  padding: 17px 40px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(78, 144, 64, 0.45), 0 1px 0 rgba(255,255,255,0.15) inset;
  transition: all 0.25s;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(78, 144, 64, 0.55), 0 1px 0 rgba(255,255,255,0.15) inset; }

.btn-ghost {
  color: rgba(255, 255, 255, 0.72);
  padding: 17px 40px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.06);
  transition: all 0.25s;
  display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-1px); }

/* ── HERO STATS ── */
.hero-stats {
  display: flex;
  margin-top: 72px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
}

.hstat {
  flex: 1;
  padding: 22px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.hstat:last-child { border: none; }
.hstat-n { font-size: 22px; font-weight: 800; color: #fff; line-height: 1; }
.hstat-l { font-size: 11px; color: rgba(255, 255, 255, 0.32); margin-top: 6px; font-weight: 500; }

/* ── SECTION ── */
.section {
  padding: 40px 48px;
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
}

.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--g);
  border-radius: 2px;
  flex-shrink: 0;
}

.eyebrow-green { color: var(--g); }
.eyebrow-green::before { background: var(--g); }

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 52px;
}
.section-sub + .section-sub { margin-top: -32px; }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-top: 3px solid var(--line);
  border-radius: 20px;
  padding: 32px 24px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.step:hover {
  box-shadow: 0 12px 40px rgba(15, 51, 34, 0.09);
  transform: translateY(-4px);
  border-top-color: var(--g);
  border-color: rgba(43, 122, 80, 0.15);
}

.step-num {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--g), var(--gd));
  color: #fff;
  border-radius: 12px;
  font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(15, 51, 34, 0.22);
}

.step h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── CARDS ── */
.cards-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 48px 64px;
}

.card {
  border-radius: 28px;
  padding: 44px 40px;
  border: 1px solid var(--line);
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover { box-shadow: 0 24px 72px rgba(15, 51, 34, 0.1); transform: translateY(-3px); }

/* Investor card — dark */
.card-invest {
  background: linear-gradient(160deg, #163d27 0%, #0a1f13 100%);
  border-color: rgba(125, 181, 106, 0.15);
  color: #fff;
  box-shadow: 0 8px 48px rgba(10, 31, 19, 0.5), 0 0 0 1px rgba(125,181,106,0.08) inset;
}
.card-invest .eyebrow { color: #7db56a; }
.card-invest .eyebrow::before { background: #7db56a; }
.card-invest h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 800;
  color: #fff; margin-bottom: 10px; line-height: 1.2;
}
.card-invest .card-sub { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 28px; line-height: 1.65; }

.card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(125,181,106,0.18);
  color: #95cc82;
  border: 1px solid rgba(125,181,106,0.3);
  padding: 13px 24px; border-radius: 100px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: background 0.2s;
}
.card-cta:hover { background: rgba(125,181,106,0.28); }

/* Waitlist card — light */
.card-waitlist {
  background: var(--white);
  border-color: var(--line);
}

.wl-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 800;
  color: var(--ink); margin-bottom: 10px; line-height: 1.2;
}
.wl-card-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.65; }

/* ── INVESTOR FORM (dark card) ── */
.inv-form { display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
.inv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.inv-field { display: flex; flex-direction: column; gap: 5px; }
.inv-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.inv-input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 11px 14px;
  color: #fff; font-size: 14px; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color 0.2s; width: 100%;
}
.inv-input::placeholder { color: rgba(255,255,255,0.2); }
.inv-input:focus { border-color: rgba(125,181,106,0.5); }
.inv-select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.inv-select option { background: #0f3322; color: #fff; }
.inv-textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
.inv-divider {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin: 4px 0 2px;
}
.inv-divider::before, .inv-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.08); }
.inv-optional { color: rgba(255,255,255,0.2); text-transform: none; letter-spacing: 0; font-weight: 400; }
.inv-submit {
  background: linear-gradient(135deg, #7db56a, #5a9e4a);
  color: #fff; border: none; border-radius: 100px;
  padding: 14px 28px; font-size: 14px; font-weight: 700;
  font-family: 'Inter', sans-serif; cursor: pointer;
  transition: all 0.2s; align-self: flex-start;
}
.inv-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(90,158,74,0.4); }
.inv-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.inv-error { font-size: 13px; color: #f08080; }
.inv-success { text-align: center; padding: 24px 0; }
.inv-success p { font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.8); }

/* ── WAITLIST FORM (light card) ── */
.wl-form { display: flex; flex-direction: column; gap: 16px; }
.wl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wl-field { display: flex; flex-direction: column; gap: 6px; }

.wl-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--ink);
}

.req { color: var(--g); }
.opt { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }

.wl-input {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--ink); font-size: 14px; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.wl-input::placeholder { color: #b0c8a8; }
.wl-input:focus {
  border-color: var(--g);
  box-shadow: 0 0 0 3px rgba(43,122,80,0.1);
}

.wl-select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a7060' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  background-color: var(--bg);
  padding-right: 36px;
}
.wl-select option { background: var(--white); color: var(--ink); }

.wl-textarea { resize: vertical; min-height: 80px; line-height: 1.5; }

/* ── CHIPS (multi-select) ── */
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  padding: 8px 16px;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  background: var(--white);
  color: var(--muted);
  font-size: 13px; font-weight: 500;
  cursor: pointer; font-family: 'Inter', sans-serif;
  transition: all 0.15s; user-select: none;
  line-height: 1.4;
}
.chip:hover { border-color: var(--g); color: var(--g); background: var(--g00); }
.chip.selected {
  background: var(--g0);
  border-color: var(--g);
  color: var(--g);
  font-weight: 600;
}

.field-hint { font-size: 12px; color: #e05050; margin-top: 2px; }

.wl-submit {
  background: linear-gradient(135deg, var(--g), var(--gd));
  color: #fff; border: none; border-radius: 100px;
  padding: 14px 32px; font-size: 15px; font-weight: 700;
  font-family: 'Inter', sans-serif; cursor: pointer;
  transition: all 0.2s; align-self: flex-start;
  box-shadow: 0 4px 16px rgba(43,122,80,0.3);
  margin-top: 4px;
}
.wl-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(43,122,80,0.4); }
.wl-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.wl-error { font-size: 13px; color: #e05050; }

.wl-success { text-align: center; padding: 40px 16px; }
.wl-success-icon { font-size: 48px; margin-bottom: 16px; }
.wl-success-title { font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.wl-success-sub { font-size: 15px; color: var(--muted); }

/* ── ASSET CARDS ── */
.asset-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.asset-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-top: 3px solid var(--line);
  border-radius: 20px;
  padding: 28px 16px 24px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.asset-card:hover {
  box-shadow: 0 12px 40px rgba(15, 51, 34, 0.09);
  transform: translateY(-4px);
  border-top-color: var(--g);
  border-color: rgba(43, 122, 80, 0.15);
}

.asset-icon { font-size: 36px; margin-bottom: 12px; line-height: 1; }
.asset-card h3 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.asset-price { font-size: 22px; font-weight: 800; color: var(--g); margin-bottom: 6px; letter-spacing: -0.5px; }
.asset-card p { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 720px; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
  background: var(--bg);
}

.faq-item summary {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--g);
  font-weight: 800;
}
.faq-item[open] summary::after { content: '−'; }

.faq-item p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-top: 12px; }

/* ── FOOTER ── */
footer {
  background: var(--gd);
  padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap; gap: 20px;
}
.f-logo { height: 32px; filter: brightness(0) invert(1); opacity: 0.7; }
.f-center { text-align: center; flex: 1; }
.f-tagline { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.55); font-style: italic; }
.f-right { text-align: right; }
.f-right p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.8; }
.f-right a { color: rgba(255,255,255,0.5); text-decoration: none; font-weight: 500; }
.f-right a:hover { color: rgba(255,255,255,0.8); }

.f-social { display: flex; align-items: center; gap: 12px; }
.f-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
}
.f-social a svg { width: 18px; height: 18px; }
.f-social a:hover {
  color: #95cc82;
  background: rgba(125, 181, 106, 0.15);
  border-color: rgba(125, 181, 106, 0.3);
  transform: translateY(-2px) scale(1.06);
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .asset-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  nav { padding: 0 20px; }
  .nav-links span { display: none; }
  .section { padding: 48px 20px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .asset-cards { grid-template-columns: 1fr 1fr; }
  .cards-wrap { grid-template-columns: 1fr; padding: 0 20px 48px; }
  .hero-stats { display: none; }
  .inv-row, .wl-row { grid-template-columns: 1fr; }
  footer { padding: 32px 20px; flex-direction: column; text-align: center; }
  .f-center, .f-right { text-align: center; }
  .f-social { justify-content: center; }
}

@media (max-width: 420px) {
  .steps { grid-template-columns: 1fr; }
  .asset-cards { grid-template-columns: 1fr 1fr; }
  .card { padding: 32px 24px; }
}
