:root {
  --bg: #f5f0ea;
  --panel: #fbf8f4;
  --panel-2: #f3ede5;
  --border: #e5d7c8;
  --text: #483729;
  --muted: #65584d;
  --sage: #97a076;
  --sage-dark: #7f8961;
  --sage-light: #dfe5d1;
  --shadow: 0 14px 45px rgba(92, 68, 45, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.85), transparent 32%),
    linear-gradient(180deg, #f3eee8 0%, #f7f2ec 100%);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.page-shell {
  width: min(1240px, calc(100% - 30px));
  margin: 18px auto;
  background: rgba(251, 248, 244, 0.92);
  border: 1px solid rgba(229, 215, 200, 0.85);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 34px;
  background: rgba(251, 248, 244, 0.98);
  border-bottom: 1px solid var(--border);
}

.brand {
  font-family: 'Allura', cursive;
  font-size: 3.2rem;
  line-height: 1;
}

.site-nav {
  display: flex;
  gap: 38px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
}

.site-nav a {
  position: relative;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--sage);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: .2s ease;
  border: 1px solid transparent;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: var(--sage);
  color: #fff;
}
.button-primary:hover { background: var(--sage-dark); }
.button-secondary {
  border-color: #8d7e6d;
  color: var(--text);
  background: rgba(255,255,255,0.35);
}

.header-cta { min-width: 162px; }

.hero {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: stretch;
  min-height: 640px;
  background: linear-gradient(90deg, #fbf8f4 0%, #f8f2eb 51%, #f1e9df 100%);
}

.hero-copy {
  padding: 78px 48px 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  letter-spacing: .08em;
  color: #667051;
  background: #f1efe7;
  border: 1px solid #e8e1d5;
}
.leaf { font-size: 1rem; }

.hero h1,
.section-heading h2,
.quote-banner h3,
.signup-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(3.6rem, 5vw, 5.5rem);
  line-height: 0.95;
  margin: 26px 0 18px;
  max-width: 620px;
}

.hero-text {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 570px;
  color: var(--muted);
  margin: 0 0 22px;
}

.price-note {
  margin: 0 0 28px;
  padding: 14px 18px;
  border-radius: 16px;
  background: #f4eee7;
  border: 1px solid #eadccd;
  color: var(--muted);
  max-width: 560px;
}
.price-note span { color: var(--text); font-weight: 700; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.trust-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  padding-right: 20px;
  border-right: 1px solid #e8dfd4;
}
.trust-item:last-child { border-right: none; }
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #cad1bb;
  color: #7f8961;
  background: #fbfaf7;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 640px;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 -120px;
  width: 240px;
  background: linear-gradient(90deg, #fbf8f4 0%, rgba(251,248,244,0.85) 35%, rgba(251,248,244,0) 100%);
  z-index: 2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section {
  padding: 44px 40px 10px;
  background: #fcfaf7;
}
.compact-section { padding-top: 20px; }

.section-heading {
  text-align: center;
  margin-bottom: 28px;
}
.section-heading.small-gap { margin-bottom: 18px; }
.section-heading h2 {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.03;
  margin: 0;
}
.section-divider,
.mini-divider {
  color: #c3b39d;
  margin-top: 8px;
  letter-spacing: .25em;
}

.card-grid {
  display: grid;
  gap: 20px;
}
.four-up { grid-template-columns: repeat(4, 1fr); }
.three-up { grid-template-columns: repeat(3, 1fr); }

.info-card,
.benefit-card {
  background: linear-gradient(180deg, #fffdfa 0%, #f8f4ee 100%);
  border: 1px solid #eadfd2;
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(82, 63, 46, 0.05);
}

.info-card {
  text-align: center;
  padding: 28px 20px 26px;
}
.card-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #a0a785;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.55rem;
}
.info-card h3,
.benefit-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.85rem;
  margin: 0 0 8px;
}
.info-card p,
.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
}

.benefit-grid { margin-bottom: 18px; }
.benefit-card {
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.benefit-icon {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #f1ecdf;
  color: #7f8961;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
}

.quote-banner {
  margin: 24px 40px 22px;
  padding: 26px 34px;
  background: linear-gradient(90deg, #f6eee4 0%, #faf4ec 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: center;
}
.quote-banner h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0;
}
.quote-banner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin: 4px 0 0;
}
.quote-decor {
  font-size: 2.2rem;
  color: #d1bea7;
}

.signup-panel {
  margin: 0 20px 22px;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.02fr 1.7fr 0.86fr;
  background: linear-gradient(180deg, #f8f1e8 0%, #f7f2ec 100%);
  border: 1px solid var(--border);
}

.signup-art {
  min-height: 270px;
  position: relative;
}
.left-art {
  background: linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.15)),
              linear-gradient(135deg, #f2e5d8 0%, #f7f1ea 100%);
}
.left-art::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 18px;
  width: 110px;
  height: 80px;
  border-radius: 18px;
  background: #f7f0e8;
  box-shadow: 0 12px 30px rgba(90, 68, 48, 0.08);
}
.desk-stack {
  position: absolute;
  left: 34px;
  bottom: 34px;
  width: 148px;
  height: 28px;
  border-radius: 6px;
  background: #ece4d6;
  box-shadow: 0 -12px 0 0 #f6efe7;
}
.notepad {
  position: absolute;
  left: 150px;
  top: 42px;
  width: 120px;
  height: 165px;
  background: #fffdf8;
  border-radius: 10px;
  border: 1px solid #e7dacb;
  box-shadow: 0 16px 34px rgba(83, 63, 46, 0.1);
  transform: rotate(12deg);
}
.notepad::before {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  top: 26px;
  height: 1px;
  background: #eee3d6;
  box-shadow: 0 16px 0 #eee3d6, 0 32px 0 #eee3d6, 0 48px 0 #eee3d6, 0 64px 0 #eee3d6;
}
.notepad span {
  position: absolute;
  top: 12px;
  left: 18px;
  font-family: 'Allura', cursive;
  font-size: 1.45rem;
  color: #8b7b67;
}

.signup-content {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.signup-content h2 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  margin: 0 0 8px;
}
.signup-content p {
  margin: 0 auto 10px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.6;
  max-width: 620px;
}
.launch-reminder {
  display: inline-block;
  margin: 0 auto 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  border: 1px solid #e5d8ca;
  color: var(--muted);
}
.signup-form {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.signup-form input {
  width: min(420px, 100%);
  padding: 16px 20px;
  border-radius: 999px;
  border: 1px solid #e6d8c9;
  background: #fff;
  font-size: 1rem;
  outline: none;
}
.signup-form input:focus {
  border-color: #a5ad89;
  box-shadow: 0 0 0 4px rgba(151, 160, 118, 0.15);
}
.tiny-note {
  font-size: 0.95rem !important;
  margin-bottom: 0 !important;
}

.right-art {
  background: linear-gradient(180deg, #f8f0e7 0%, #f7f2ec 100%);
}
.plant-pot {
  position: absolute;
  right: 46px;
  bottom: 34px;
  width: 92px;
  height: 80px;
  background: linear-gradient(180deg, #d8c3ac 0%, #b8916a 100%);
  border-radius: 0 0 18px 18px;
}
.plant-pot::before,
.plant-pot::after {
  content: '';
  position: absolute;
  bottom: 65px;
  width: 90px;
  height: 140px;
  background: transparent;
  border-radius: 50% 50% 0 0;
  box-shadow:
    14px -24px 0 -32px #7c9a59,
    -4px -28px 0 -32px #8aa365,
    34px -54px 0 -32px #6f9150,
    52px -18px 0 -32px #8ca769,
    18px -78px 0 -32px #7f9e5a,
    -20px -60px 0 -32px #8fa96b;
}
.plant-pot::after {
  width: 2px;
  height: 110px;
  background: #95836e;
  left: 44px;
  bottom: 78px;
  box-shadow: -18px -18px 0 0 #95836e, 18px -12px 0 0 #95836e;
}

.site-footer {
  background: #8d9870;
  color: #f8f5f0;
  display: flex;
  justify-content: center;
  gap: 70px;
  padding: 18px 24px;
  font-weight: 500;
}
.site-footer a:hover { text-decoration: underline; }

@media (max-width: 1120px) {
  .site-nav { gap: 24px; font-size: 1.55rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-image-wrap { min-height: 480px; order: -1; }
  .hero-image-wrap::before { display: none; }
  .hero-copy { padding-top: 44px; }
  .four-up { grid-template-columns: repeat(2, 1fr); }
  .signup-panel { grid-template-columns: 1fr; }
  .left-art, .right-art { min-height: 180px; }
  .right-art { order: 3; }
}

@media (max-width: 820px) {
  .site-header {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
  .brand { font-size: 2.8rem; }
  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    font-size: 1.4rem;
  }
  .hero-copy { padding: 34px 22px 30px; }
  .section { padding: 34px 18px 8px; }
  .quote-banner { margin: 20px 18px; padding: 18px; flex-direction: column; }
  .signup-panel { margin: 0 10px 16px; }
  .four-up, .three-up { grid-template-columns: 1fr; }
  .site-footer {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

/* Download page */
.download-shell {
  min-height: calc(100vh - 36px);
}
.download-hero {
  padding: 70px 34px 34px;
  background:
    radial-gradient(circle at 15% 18%, rgba(255,255,255,.9), transparent 24%),
    linear-gradient(135deg, #fbf8f4 0%, #f4ece2 100%);
}
.download-card {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 30px;
  background: rgba(255,253,250,.78);
  border: 1px solid #eadfd2;
  box-shadow: 0 18px 50px rgba(82, 63, 46, 0.08);
  text-align: center;
}
.download-card .eyebrow {
  margin: 0 auto;
}
.download-card h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: .98;
  margin: 24px auto 14px;
  max-width: 760px;
}
.download-card > p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 26px;
}
.download-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  text-align: left;
  padding: 22px;
  border-radius: 24px;
  background: #f6f0e8;
  border: 1px solid #e4d7c7;
  margin: 0 auto 20px;
}
.download-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.15rem;
  margin: 0 0 4px;
}
.download-box p {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.download-button {
  flex: 0 0 auto;
}
.download-note {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(151,160,118,.12);
  border: 1px solid rgba(151,160,118,.28);
  color: var(--muted);
  line-height: 1.55;
  text-align: left;
}
.download-note code {
  background: rgba(255,255,255,.7);
  padding: 2px 6px;
  border-radius: 6px;
  color: var(--text);
}
.download-next-steps {
  padding-bottom: 22px;
}
.download-quote a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 720px) {
  .download-hero {
    padding: 36px 16px 24px;
  }
  .download-box {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .download-button {
    width: 100%;
  }
}
