@charset "UTF-8";
/* ============================================
       TOKENS — identical to site
    ============================================ */
:root {
  --forest: #192d1f;
  --forest-dark: #0d1a12;
  --forest-mid: #244030;
  --sage: #587a5a;
  --sage-mid: #3e5c40;
  --sage-light: #89ab8a;
  --sage-pale: #c8ddca;
  --cream: #f3ede3;
  --cream-light: #faf7f2;
  --earth: #c8a762;
  --earth-dark: #9d8048;
  --white: #fdfaf5;
  --text: #192d1f;
  --text-muted: #5e6e5d;
  --radius: 22px;
  --radius-lg: 36px;
  --radius-sm: 12px;
  --shadow: 0 10px 40px rgba(25, 45, 31, 0.12);
  --shadow-lg: 0 24px 80px rgba(25, 45, 31, 0.22);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "DM Sans", "Helvetica Neue", sans-serif;
}

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

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--forest-dark);
  color: var(--white);
  line-height: 1.75;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ============================================
       BACKGROUND ATMOSPHERE
    ============================================ */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Deep forest gradient */
.bg-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 15% 20%, rgba(36, 64, 48, 0.85) 0%, transparent 60%), radial-gradient(ellipse 60% 70% at 85% 75%, rgba(13, 26, 18, 0.9) 0%, transparent 55%), radial-gradient(ellipse 100% 80% at 50% 100%, rgba(9, 18, 12, 0.95) 0%, transparent 60%), linear-gradient(168deg, #0d1a12 0%, #192d1f 35%, #1a3020 65%, #0a1208 100%);
}

/* Floating organic shapes — leaf/neural suggestion */
.orb {
  position: absolute;
  border-radius: 40% 60% 55% 45%/50% 42% 58% 50%;
  filter: blur(1px);
  animation: orbFloat ease-in-out infinite;
  pointer-events: none;
}

.orb-1 {
  width: 540px;
  height: 540px;
  top: -120px;
  right: -100px;
  background: radial-gradient(ellipse, rgba(58, 122, 70, 0.18) 0%, transparent 68%);
  animation-duration: 14s;
  border-radius: 42% 58% 48% 52%/38% 55% 45% 62%;
}

.orb-2 {
  width: 380px;
  height: 380px;
  bottom: 5%;
  left: -80px;
  background: radial-gradient(ellipse, rgba(40, 96, 52, 0.14) 0%, transparent 65%);
  animation-duration: 10s;
  animation-direction: reverse;
  border-radius: 55% 45% 62% 38%/48% 55% 45% 52%;
}

.orb-3 {
  width: 280px;
  height: 280px;
  top: 40%;
  right: 8%;
  background: radial-gradient(ellipse, rgba(88, 122, 90, 0.1) 0%, transparent 65%);
  animation-duration: 18s;
  border-radius: 60% 40% 50% 50%/52% 48% 62% 38%;
}

.orb-4 {
  width: 200px;
  height: 200px;
  top: 15%;
  left: 25%;
  background: radial-gradient(ellipse, rgba(200, 167, 98, 0.06) 0%, transparent 65%);
  animation-duration: 22s;
  animation-direction: reverse;
}

@keyframes orbFloat {
  0%, 100% {
    transform: scale(1) rotate(0deg) translate(0, 0);
  }
  33% {
    transform: scale(1.06) rotate(3deg) translate(12px, -18px);
  }
  66% {
    transform: scale(0.96) rotate(-2deg) translate(-8px, 10px);
  }
}
/* Subtle grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* Thin horizontal rule of light at very top */
.top-rule {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(200, 167, 98, 0.6) 30%, rgba(88, 122, 90, 0.5) 70%, transparent);
  z-index: 200;
}

/* ============================================
       LAYOUT
    ============================================ */
.page {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

/* ============================================
       HEADER
    ============================================ */
header {
  padding: 32px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.88);
}

.logo-icon {
  width: 28px;
  height: 40px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.header-right {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
}

/* ============================================
       MAIN CONTENT
    ============================================ */
main {
  display: flex;
  align-items: center;
  padding: 40px 52px 60px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ============================================
       LEFT COLUMN — HERO TEXT
    ============================================ */
.coming-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(200, 167, 98, 0.35);
  background: rgba(200, 167, 98, 0.07);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}

.coming-label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--earth);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(46px, 5.8vw, 82px);
  font-weight: 400;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.22s forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--sage-light);
}

.hero-headline .earth-word {
  color: var(--earth);
  font-style: normal;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.32s forwards;
}

.hero-divider-line {
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: rgba(88, 122, 90, 0.5);
}

.hero-divider-leaf {
  font-size: 16px;
}

.hero-desc {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.78;
  max-width: 580px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}

.hero-desc strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

/* Pillars row */
.pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pillar-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: rgba(88, 122, 90, 0.15);
  border: 1px solid rgba(88, 122, 90, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-top: 2px;
}

.pillar-text h4 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2px;
}

.pillar-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.55;
}

.stat-strip {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--earth);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.45;
  max-width: 120px;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  align-self: stretch;
}

/* ============================================
       RIGHT COLUMN — SIGN UP CARD
    ============================================ */
.signup-col {
  opacity: 0;
  animation: fadeUp 1s ease 0.55s forwards;
}

.signup-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

/* Subtle inner glow at top */
.signup-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200, 167, 98, 0.5), transparent);
}

.card-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-eyebrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--sage-light);
}

.card-headline {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.card-headline em {
  font-style: italic;
  color: var(--sage-light);
}

.card-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 16px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.form-input:focus {
  border-color: rgba(88, 122, 90, 0.6);
  background: rgba(255, 255, 255, 0.09);
}

.form-select {
  width: 100%;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-sans);
  font-size: 16px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  appearance: none;
  cursor: pointer;
}

.form-select option {
  background: #192d1f;
  color: #fff;
}

.form-select:focus {
  border-color: rgba(88, 122, 90, 0.6);
  background: rgba(255, 255, 255, 0.09);
}

.form-btn {
  width: 100%;
  padding: 17px 28px;
  background: var(--earth);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  letter-spacing: 0.3px;
  margin-top: 4px;
}

.form-btn:hover {
  background: var(--earth-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200, 167, 98, 0.38);
}

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

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 24px 0;
}

.form-success.show {
  display: block;
}

.form.submitted {
  display: none;
}

.success-icon {
  font-size: 44px;
  margin-bottom: 14px;
}

.form-success h4 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: #fff;
  margin-bottom: 10px;
}

.form-success p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.58);
}

/* Error state */
.form-error {
  display: none;
  background: rgba(180, 60, 60, 0.12);
  border: 1px solid rgba(180, 60, 60, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 16px;
}

.form-error.show {
  display: block;
}

.form-error p {
  font-size: 15px;
  color: rgba(255, 180, 180, 0.9);
}

/* Loading state on button */
.form-btn.loading {
  opacity: 0.7;
  pointer-events: none;
  cursor: not-allowed;
}

.form-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.32);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* Card bottom strip */
.card-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  gap: 16px;
}

.card-promise {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
}

.promise-icon {
  font-size: 18px;
  min-width: 22px;
}

.promise-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.45;
}

.promise-text strong {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
}

/* ============================================
       FOOTER
    ============================================ */
footer {
  text-align: center;
  padding: 28px 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

footer p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.28);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
       DISCLAIMER
    ============================================ */
.disclaimer-band {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 52px;
  text-align: center;
}

.disclaimer-band p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 860px;
  margin: 0 auto;
}

/* ============================================
       ANIMATIONS
    ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ============================================
       RESPONSIVE
    ============================================ */
@media (max-width: 960px) {
  header {
    padding: 24px 28px;
  }

  main {
    padding: 32px 28px 48px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-desc {
    max-width: 100%;
  }

  footer,
.disclaimer-band {
    padding-left: 28px;
    padding-right: 28px;
  }
}