:root {
  --forest: #063f2c;
  --deep: #08261d;
  --leaf: #4e8f66;
  --mint: #dbeadf;
  --cream: #fbf8f1;
  --paper: #fffdf8;
  --ink: #17211d;
  --muted: #64736b;
  --line: #d9e6dd;
  --gold: #b4a46a;
  --fig: #8d5c78;
  --shadow: 0 24px 70px rgba(6, 63, 44, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(78,143,102,.13), transparent 28rem),
    linear-gradient(180deg, var(--cream), #f5f8f3 70%, var(--cream));
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 74px);
  background: rgba(251, 248, 241, .88);
  border-bottom: 1px solid rgba(217, 230, 221, .75);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.62rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
}

nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: .95rem;
  font-weight: 700;
  color: var(--muted);
}

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

nav a:hover { color: var(--forest); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: clamp(58px, 9vw, 118px) clamp(20px, 5vw, 74px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--leaf);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .78rem;
  font-weight: 800;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2, .fruit-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--forest);
  letter-spacing: -.045em;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 8vw, 7.1rem);
  line-height: .88;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.15rem);
  line-height: .94;
  margin-bottom: 18px;
}

h3 {
  color: var(--forest);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.primary {
  background: var(--forest);
  color: white;
  box-shadow: 0 14px 32px rgba(6, 63, 44, .2);
}

.secondary {
  color: var(--forest);
  background: rgba(255,255,255,.68);
  border: 1px solid var(--line);
}

.parent-line {
  color: var(--leaf);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-card {
  width: min(100%, 410px);
  background: linear-gradient(180deg, #fffdf8, #eef6ef);
  border: 1px solid rgba(217, 230, 221, .9);
  border-radius: 38px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.phone-top {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-bottom: 18px;
}

.phone-top span {
  width: 6px; height: 6px; border-radius: 50%; background: #b7c9bd;
}

.phone-header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.phone-header img {
  width: 64px; height: 64px; object-fit: contain; border-radius: 18px;
}

.phone-header strong {
  display: block;
  color: var(--forest);
  font-size: 1.28rem;
}

.phone-header p {
  margin: 0;
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.stats div {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  padding: 14px 8px;
  text-align: center;
}

.stats strong {
  display: block;
  color: var(--forest);
  font-size: 1.5rem;
}

.stats span {
  color: var(--muted);
  font-size: .82rem;
}

.activity {
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px;
}

.activity-title {
  color: var(--forest);
  font-weight: 800;
  margin-bottom: 8px;
}

.row {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.row:first-of-type { border-top: 0; }

.row strong { display: block; font-size: .93rem; color: var(--ink); }
.row small { color: var(--muted); }

.dot {
  width: 12px; height: 12px; border-radius: 50%; margin-top: 6px; flex: 0 0 auto;
}
.dot.fig { background: var(--fig); }
.dot.water { background: #4e93a7; }
.dot.harvest { background: var(--gold); }

.edition {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(56px, 8vw, 100px) clamp(20px, 5vw, 74px);
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.edition-image {
  min-height: 420px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(6,63,44,.75), rgba(78,143,102,.2)),
    url("https://images.unsplash.com/photo-1600703136783-bdb5ea365239?auto=format&fit=crop&w=1200&q=70");
  background-size: cover;
  background-position: center;
  padding: 24px;
  display: flex;
  align-items: end;
}

.fruit-card {
  width: 100%;
  padding: 24px;
  border-radius: 24px;
  background: rgba(251,248,241,.92);
  border: 1px solid rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
}

.badge {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(141,92,120,.12);
  color: var(--fig);
  font-weight: 800;
  font-size: .8rem;
  margin-bottom: 12px;
}

.fruit-card p, .edition-copy p, .future p, .waitlist p {
  color: var(--muted);
}

.features, .future, .waitlist {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 74px);
}

.features h2 {
  max-width: 980px;
}

.grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid article {
  background: rgba(255,253,248,.78);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
}

.grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.icon {
  display: inline-flex;
  width: 42px; height: 42px;
  border-radius: 14px;
  align-items: center; justify-content: center;
  margin-bottom: 16px;
  background: var(--mint);
  color: var(--forest);
  font-size: 1.25rem;
}

.future {
  text-align: center;
  background: linear-gradient(180deg, #f3f8f2, #fffdf8);
  border-block: 1px solid var(--line);
}

.future p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.edition-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.edition-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--forest);
  font-weight: 800;
}

.waitlist {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
}

.form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 26px;
  box-shadow: var(--shadow);
}

label {
  display: block;
  color: var(--forest);
  font-weight: 800;
  margin-bottom: 16px;
}

input, select, textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #cfded4;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fffdf8;
}

textarea { resize: vertical; }

button {
  width: 100%;
  border: 0;
  border-radius: 999px;
  min-height: 52px;
  background: var(--forest);
  color: white;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.form-note {
  margin: 14px 0 0;
  font-size: .83rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 5vw, 74px);
  color: var(--muted);
  background: var(--deep);
}

.footer strong {
  color: white;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
}

.footer p { margin: 4px 0 0; color: rgba(255,255,255,.72); }
.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.footer a { color: rgba(255,255,255,.85); text-decoration: none; }

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero, .edition, .waitlist {
    grid-template-columns: 1fr;
  }

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

  .edition-image {
    min-height: 340px;
  }
}

@media (max-width: 540px) {
  .brand span { font-size: 1.35rem; }
  nav { font-size: .82rem; gap: 10px; }
  h1 { font-size: clamp(3rem, 16vw, 4.2rem); }
  .button { width: 100%; }
  .footer { flex-direction: column; }
}


.tally-card {
  overflow: hidden;
}

.tally-card iframe {
  display: block;
  border: 0;
}
