/* ═══════════════════════════════════════════════
   kudos — styles.css
   Everything except the iPhone phone component
═══════════════════════════════════════════════ */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: #fff;
  color: #1d1d1f;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── NAV ── */
nav {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #1d1d1f;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: #1d1d1f;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover { color: #6EE87A; }

/* ── HERO ── */
.hero {
  padding: 72px 0 0;
  text-align: center;
}

.hero h1 {
  font-size: clamp(40px, 8vw, 56px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -2.5px;
  color: #1d1d1f;
}

.hero h1 strong { font-weight: 700; }

.hero-p {
  font-size: 17px;
  font-weight: 300;
  color: #555;
  margin: 14px auto 0;
  max-width: 420px;
  line-height: 1.5;
  letter-spacing: -0.2px;
}

/* Small supporting label directly above the CTA pill so the pair reads as
   one instruction: "Text hi to [number]". */
.hero-cta-label {
  margin: 48px 0 20px;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: #1d1d1f;
}

.hero-cta-label strong { font-weight: 700; }

/* Clean tappable pill. Not a banner — it should feel like a button. */
.hero-num {
  display: inline-block;
  margin: 0 auto 36px;
  padding: 12px 56px;
  background: #6EE87A;
  color: #1d1d1f;
  border-radius: 980px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(18px, 3.5vw, 22px);
  font-weight: 700;
  letter-spacing: -0.4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.05s;
}

.hero-num:hover { background: #5ED96A; }
.hero-num:active { transform: translateY(1px); }

.hero-trial {
  font-size: 14px;
  color: #555;
  font-weight: 400;
  margin: 0 auto;
  max-width: 420px;
  line-height: 1.5;
}

.hero-legal {
  font-size: 11px;
  color: #888;
  line-height: 1.55;
  max-width: 420px;
  margin: 20px auto 0;
}

.hero-legal a {
  color: #555;
  text-decoration: underline;
}

/* ── PHONE SECTION (layout only — phone.css handles the component) ── */
.phone-section {
  padding: 72px 0 100px;
  text-align: center;
  background: #ffffff;
}

.phone-section h2 {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -1.5px;
  margin-bottom: 6px;
  line-height: 1.15;
}

.phone-section h2 strong { font-weight: 700; }

.phone-sub {
  font-size: 17px;
  color: #555;
  font-weight: 300;
  margin-bottom: 48px;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 0 0 100px;
  text-align: center;
}

.how h2 {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -1.2px;
  margin-bottom: 40px;
}

.how h2 strong { font-weight: 700; }

.how-items { display: flex; flex-direction: column; gap: 32px; text-align: left; }

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

.how-num {
  font-size: 36px;
  font-weight: 200;
  color: #1d1d1f;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
  letter-spacing: -2px;
}

.how-item h3 { font-size: 16px; font-weight: 600; letter-spacing: -0.3px; margin-bottom: 3px; }
.how-item p { font-size: 14px; color: #555; line-height: 1.5; }

/* ── BOTTOM CTA ── */
.bot { text-align: center; padding: 0 0 56px; }

.bot h2 {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -1.5px;
  margin-bottom: 32px;
}

.bot p { font-size: 16px; color: #555; font-weight: 300; margin-bottom: 28px; }

.bot-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #6EE87A;
  color: #1d1d1f;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-decoration: none;
  transition: background 0.2s;
}

.bot-btn:hover { background: #5ED96A; }

/* ── FOOTER ── */
footer {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 28px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0f0f0;
}

footer .fl { font-size: 16px; font-weight: 700; color: #1d1d1f; letter-spacing: -0.5px; }
.flinks { display: flex; gap: 20px; }
.flinks a { font-size: 13px; color: #777; text-decoration: none; }
.flinks a:hover { color: #1d1d1f; }
.fc { text-align: center; font-size: 12px; color: #999; padding: 8px 0 40px; }

/* ── LEGAL PAGES ── */
.legal { display: none; padding: 40px 0 80px; }
.legal.active { display: block; }
.main.hidden { display: none; }
.bk { display: inline-block; font-size: 14px; color: #6EE87A; text-decoration: none; font-weight: 500; margin-bottom: 28px; }
.legal h2 { font-size: 28px; font-weight: 700; letter-spacing: -1px; margin-bottom: 6px; }
.legal .dt { font-size: 12px; color: #999; margin-bottom: 28px; }
.legal h3 { font-size: 16px; font-weight: 600; margin-top: 28px; margin-bottom: 6px; }
.legal p { font-size: 14px; color: #555; margin-bottom: 12px; line-height: 1.65; }

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
  .hero h1 { font-size: 38px; line-height: 1.22; text-wrap: pretty; }
  .hero-p { font-size: 16px; }
  .hero-cta-label { margin-top: 36px; font-size: 28px; letter-spacing: -1.2px; }
  .hero-num { margin-bottom: 28px; padding: 12px 44px; font-size: 19px; }
  footer { flex-direction: column; gap: 14px; text-align: center; }
  .phone-section { padding: 80px 0 64px; }
  .hero { padding: 64px 0 0; }
}
