:root{
  --bg: #f7f4ed;
  --card: rgba(255,255,255,.82);
  --card-solid: #ffffff;
  --ink: #182018;
  --muted: #51604f;
  --line: #dde5d8;
  --brand: #2f7d32;
  --brand-dark: #256328;
  --accent: #eff6ea;
  --shadow: 0 22px 60px rgba(24, 32, 24, 0.08);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

*{ box-sizing: border-box; }
html,body{ min-height:100%; }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at top left, rgba(176, 217, 173, 0.18), transparent 34%),
    linear-gradient(180deg, #fbf8f1 0%, #f5f1e8 100%);
}

button,
input{
  font: inherit;
}

.page-shell{
  min-height:100vh;
  padding: clamp(20px, 4vw, 44px);
  display:flex;
  align-items:center;
  justify-content:center;
}

.page-shell--narrow{
  align-items:flex-start;
}

.hero-card{
  width:min(1120px, 100%);
  display:grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 460px);
  gap: clamp(22px, 4vw, 44px);
  padding: clamp(24px, 4vw, 40px);
  border:1px solid rgba(255,255,255,.6);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card--stacked{
  grid-template-columns: 1fr;
  width:min(920px, 100%);
}

.hero-copy,
.form-panel{
  min-width:0;
}

.hero-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.hero-copy--full{
  max-width: 100%;
}

.brand-lockup{
  margin-bottom: 20px;
}

.brand-lockup.center{
  display:flex;
  justify-content:center;
}

.brand-lockup img{
  width: min(240px, 68vw);
  height:auto;
  display:block;
}

.eyebrow{
  margin:0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
}

.live-greeting{
  min-height: 2.9rem;
  margin-bottom: 10px;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.04em;
}

.caret{
  display:inline-block;
  width: 2px;
  height: .95em;
  margin-left: 4px;
  background: var(--brand);
  vertical-align: -0.08em;
  animation: blink 1s steps(1) infinite;
}

h1{
  margin:0 0 14px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.center{
  text-align:center;
}

.intro{
  max-width: 60ch;
  margin:0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}

.intro--narrow{
  margin-left:auto;
  margin-right:auto;
}

.assistant-note{
  display:flex;
  gap:12px;
  align-items:flex-start;
  margin: 24px 0 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(239, 246, 234, 0.95);
  border: 1px solid #dcead6;
}

.assistant-note p{
  margin:0;
  line-height:1.5;
  color: #315232;
}

.assistant-dot{
  width:12px;
  height:12px;
  margin-top:6px;
  border-radius:999px;
  background: var(--brand);
  box-shadow: 0 0 0 8px rgba(47,125,50,.12);
  flex: 0 0 auto;
}

.micro-highlights{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.micro-highlights span{
  display:inline-flex;
  align-items:center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  color: #334234;
  font-size: 14px;
}

.form-panel{
  padding: clamp(18px, 3vw, 24px);
  border-radius: 24px;
  background: var(--card-solid);
  border:1px solid rgba(221,229,216,.9);
}

.form-panel--wide{
  max-width: 100%;
}

.signup-form{
  display:grid;
  gap:16px;
}

.row{
  display:grid;
  gap:14px;
}

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

.signup-form label > span,
.starter-label{
  display:block;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: #304130;
}

input[type="text"],
input[type="email"]{
  width:100%;
  padding: 15px 16px;
  border-radius: 14px;
  border:1px solid var(--line);
  background:#fff;
  color: var(--ink);
  outline:none;
}

input[type="text"]:focus,
input[type="email"]:focus{
  border-color: rgba(47,125,50,.58);
  box-shadow: 0 0 0 4px rgba(47,125,50,.11);
}

.starter-choice{
  padding: 16px;
  border:1px solid var(--line);
  border-radius: 16px;
  background: #fafcf8;
}

.starter-pill,
.interest-card{
  position:relative;
  display:block;
  cursor:pointer;
}

.starter-pill{
  padding: 14px 16px 14px 46px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: #fff;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.starter-pill::before,
.interest-card::before{
  content:"";
  position:absolute;
  left:16px;
  top:18px;
  width:18px;
  height:18px;
  border-radius:999px;
  border:2px solid #b9c7b5;
  background:#fff;
}

.starter-pill.selected::after,
.interest-card.selected::after{
  content:"";
  position:absolute;
  left:21px;
  top:23px;
  width:10px;
  height:10px;
  border-radius:999px;
  background: var(--brand);
}

.starter-pill input,
.interest-card input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

button{
  width:100%;
  min-height: 54px;
  padding: 15px 18px;
  border:0;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: .01em;
  color:#fff;
  background: linear-gradient(180deg, #368e39 0%, #2f7d32 100%);
  cursor:pointer;
}

button:hover{
  background: linear-gradient(180deg, #2f7d32 0%, #256328 100%);
}

button:disabled{
  opacity:.88;
  cursor:default;
}

.trust,
.message,
.sub-actions,
.notice-box p{
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.trust{
  margin: -2px 0 0;
}

.message{
  min-height: 22px;
  margin:0;
}

.notice-box{
  max-width: 640px;
  margin: 24px auto 0;
  padding: 18px 20px;
  border-radius: 20px;
  background: #f6faf2;
  border-left: 6px solid var(--brand);
}

.notice-box strong{
  display:block;
  margin-bottom: 4px;
}

.notice-box p{
  margin:0;
}

.interest-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}

.interest-card{
  min-height: 156px;
  padding: 18px 18px 18px 48px;
  border:1px solid var(--line);
  border-radius: 18px;
  background:#fff;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.interest-card:hover,
.starter-pill:hover{
  transform: translateY(-1px);
  border-color: #c7d6c1;
  box-shadow: 0 10px 28px rgba(24,32,24,.06);
}

.interest-card.selected,
.starter-pill.selected{
  border-color: #b9d5b7;
  background: #f7fcf4;
}

.locked-card{
  background: #f5f9f2;
}

.interest-title{
  display:block;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 800;
  color: #213221;
}

.interest-copy{
  display:block;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.button-row{
  display:flex;
  gap:12px;
}

.button-row--centered{
  justify-content:center;
}

.button-row--centered button{
  width:min(340px, 100%);
}

.text-link{
  color: var(--brand);
  text-decoration:none;
  font-weight:700;
}

.text-link:hover{
  text-decoration:underline;
}

.sub-actions{
  margin-top: 4px;
}

.hp{
  position:absolute !important;
  left:-10000px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}

@keyframes blink{
  50%{ opacity:0; }
}

@media (max-width: 900px){
  .hero-card{
    grid-template-columns: 1fr;
  }

  .hero-copy{
    justify-content:flex-start;
  }

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

@media (max-width: 640px){
  .page-shell{
    padding: 14px;
  }

  .hero-card{
    padding: 18px;
    gap: 18px;
    border-radius: 22px;
  }

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

  .live-greeting{
    min-height: 2.3rem;
  }

  h1{
    font-size: 36px;
  }

  .intro{
    font-size: 16px;
  }

  .form-panel{
    padding: 16px;
    border-radius: 20px;
  }

  .interest-card{
    min-height: auto;
  }
}
