/* ============================================================
   ChoreDay landing page — styles
   Design tokens mirror the in-app mockups so the page and the
   product feel like the same brand:
     - Warm off-white background (#F7F4EE)
     - Charcoal text (#1B1B1B)
     - Muted amber accent (#B8722B) — deliberately NOT alarm-red
     - Inter typeface
     - Soft, rounded surfaces with generous whitespace
============================================================ */

:root {
  --bg:           #F7F4EE;
  --bg-2:         #EFEAE0;
  --surface:      #FFFFFF;
  --surface-2:    #FAF7F1;
  --text:         #1B1B1B;
  --text-2:       #5B5B5B;
  --text-3:       #8E8A82;
  --accent:       #B8722B;
  --accent-hover: #9E5F22;
  --accent-soft:  #E8DBC7;
  --track:        #ECE7DD;
  --hairline:     #E5E0D4;
  --hairline-2:   #D9D3C5;
  --shadow-card:  0 8px 28px rgba(27, 27, 27, 0.06);
  --shadow-hero:  0 40px 80px rgba(27, 27, 27, 0.10);
  --radius-sm:    12px;
  --radius-md:    18px;
  --radius-lg:    28px;
  --radius-xl:    40px;
  --maxw:         1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
legend { display: block; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont,
               'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-feature-settings: 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }

/* ----- Container ----- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   Nav bar
============================================================ */
.nav {
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: saturate(140%) blur(8px);
  background-color: rgba(247, 244, 238, 0.85);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.nav-cta {
  background: var(--text);
  color: var(--bg);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}
.nav-cta:hover {
  background: #000;
  color: var(--bg);
  text-decoration: none;
  transform: translateY(-1px);
}

/* ============================================================
   Hero
============================================================ */
.hero {
  padding: 80px 0 64px;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(34px, 6.2vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  font-weight: 700;
  margin-bottom: 24px;
  word-wrap: break-word;
  hyphens: auto;
}
.hero h1 .accent { color: var(--accent); }
.hero .sub {
  font-size: 19px;
  color: var(--text-2);
  margin-bottom: 16px;
  max-width: 560px;
}
.hero .price-line {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero .price-line strong {
  background: linear-gradient(180deg, transparent 62%, var(--accent-soft) 62%);
  padding: 0 4px;
  font-weight: 600;
}
.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 18px 32px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 17px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 18px rgba(184, 114, 43, 0.25);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(184, 114, 43, 0.30);
}
.btn-primary .arrow { transition: transform 0.15s ease; }
.btn-primary:hover .arrow { transform: translateX(3px); }
.cta-meta {
  font-size: 14px;
  color: var(--text-3);
}

.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}
.hero-phone::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at center,
    rgba(184, 114, 43, 0.22) 0%,
    rgba(184, 114, 43, 0.10) 35%,
    rgba(184, 114, 43, 0.00) 70%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}
.phone-stack {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.phone-stack .phone {
  display: block;
  filter: drop-shadow(0 28px 50px rgba(27, 27, 27, 0.20));
}
.phone-stack .phone-back {
  position: absolute;
  width: 230px;
  left: -120px;
  top: 80px;
  transform: rotate(-7deg);
  z-index: 0;
  opacity: 0.97;
  filter: drop-shadow(0 16px 28px rgba(27, 27, 27, 0.16));
}
.phone-stack .phone-front {
  position: relative;
  width: 340px;
  transform: rotate(2.5deg);
  z-index: 1;
}

/* ============================================================
   Trust band
============================================================ */
.trust {
  padding: 28px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--bg-2);
}
.trust .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  justify-content: center;
  align-items: center;
}
.trust-item {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

/* ============================================================
   Features
============================================================ */
.features {
  padding: 96px 0;
}
.features .section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  max-width: 720px;
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(27, 27, 27, 0.08);
  border-color: var(--hairline-2);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-image {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: -8px -8px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.feature-image img {
  max-height: 100%;
  max-width: 80%;
  width: auto;
  border-radius: 14px;
  filter: drop-shadow(0 12px 24px rgba(27, 27, 27, 0.12));
}
.feature h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.feature p {
  color: var(--text-2);
  font-size: 15.5px;
}

/* ============================================================
   How-it-works (3-step strip)
============================================================ */
.how {
  padding: 64px 0 96px;
  background: var(--bg-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.how-step {
  background: var(--surface);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline);
}
.how-step .step-num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}
.how-step h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.how-step p {
  font-size: 14.5px;
  color: var(--text-2);
}

/* ============================================================
   Form
============================================================ */
.notify {
  padding: 96px 0;
}
.notify-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 56px 56px 48px;
  box-shadow: var(--shadow-hero);
  border: 1px solid var(--hairline);
}
.notify-head {
  text-align: center;
  margin-bottom: 40px;
}
.notify-head h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.notify-head p {
  color: var(--text-2);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto;
}

.field { margin-bottom: 32px; }
.field label.field-label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 6px;
}
.field .field-help {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 12px;
}

.input-text {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-family: inherit;
  background: var(--surface-2);
  color: var(--text);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.input-text:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(184, 114, 43, 0.12);
}
textarea.input-text {
  min-height: 84px;
  resize: vertical;
  line-height: 1.45;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.radio {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.radio:hover { border-color: var(--accent); }
.radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--hairline-2);
  border-radius: 999px;
  margin: 0;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.15s ease;
}
.radio input[type="radio"]:checked { border-color: var(--accent); }
.radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: var(--accent);
}
.radio:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.radio .radio-label {
  font-size: 15.5px;
  color: var(--text);
  font-weight: 500;
}

.submit-row {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}
.btn-submit {
  width: 100%;
  padding: 20px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn-submit:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-submit:disabled { background: var(--text-3); cursor: not-allowed; transform: none; }
.submit-meta {
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
}

/* honeypot — hidden from humans */
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* ============================================================
   Comparison table
============================================================ */
.compare {
  padding: 96px 0;
  background: var(--bg);
}
.compare .section-head { margin-bottom: 48px; }
.section-sub {
  font-size: 17px;
  color: var(--text-2);
  margin-top: 16px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.compare-wrap {
  max-width: 920px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
}
.compare-table th,
.compare-table td {
  text-align: left;
  padding: 20px 22px;
  border-bottom: 1px solid var(--hairline);
  vertical-align: top;
  line-height: 1.4;
}
.compare-table thead th {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  border-bottom: 2px solid var(--hairline-2);
  padding-top: 24px;
  padding-bottom: 18px;
  background: var(--surface-2);
}
.compare-table thead th .label-sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-3);
  margin-top: 2px;
  letter-spacing: 0;
  text-transform: none;
}
.compare-table thead th.choreday-col {
  color: var(--accent);
  background: var(--accent-soft);
}
.compare-table tbody td {
  color: var(--text-2);
}
.compare-table tbody td.choreday-col {
  background: rgba(232, 219, 199, 0.30);
  color: var(--text);
  font-weight: 600;
}
.compare-table tbody td:first-child {
  color: var(--text);
  font-weight: 500;
  background: var(--surface-2);
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-foot {
  text-align: center;
  color: var(--text-3);
  font-size: 13.5px;
  margin-top: 22px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   Anti-features
============================================================ */
.anti {
  padding: 96px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.anti .section-head { margin-bottom: 48px; }
.anti-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
}
.anti-grid li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16.5px;
  color: var(--text);
  line-height: 1.45;
  padding: 18px 20px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline);
  transition: border-color 0.18s ease;
}
.anti-grid li:hover { border-color: var(--accent); }
.anti-grid .x-mark {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 1px;
}
.anti-grid .label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.anti-grid .label strong {
  font-weight: 600;
  color: var(--text);
}
.anti-grid .label .sub {
  font-size: 13.5px;
  color: var(--text-2);
  font-weight: 400;
  line-height: 1.4;
}

/* ============================================================
   FAQ (each item is a small card)
============================================================ */
.faq {
  padding: 64px 0 96px;
  background: var(--bg);
  border-top: 1px solid var(--hairline);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline);
  padding: 24px 26px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.faq-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.faq-item h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.faq-item p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ============================================================
   Footer
============================================================ */
footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--hairline);
  background: var(--bg);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-about {
  max-width: 520px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.footer-links {
  font-size: 14px;
  color: var(--text-2);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}
.footer-links a { color: var(--text-2); }
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-3);
  text-align: center;
  width: 100%;
}

/* ============================================================
   Privacy / Thanks pages
============================================================ */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 32px 96px;
}
.legal h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.legal .updated {
  color: var(--text-3);
  font-size: 14px;
  margin-bottom: 32px;
}
.legal h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 12px;
}
.legal p, .legal li {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.65;
}
.legal ul, .legal ol { padding-left: 24px; margin-bottom: 16px; }
.legal a { color: var(--accent); }
.legal .back-link {
  display: inline-block;
  margin-top: 32px;
  color: var(--text-2);
  font-size: 14px;
}

.thanks {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 120px 32px;
}
.thanks .icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
}
.thanks h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.thanks p {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 16px;
  line-height: 1.6;
}
.thanks .back-link {
  display: inline-block;
  margin-top: 24px;
  font-weight: 600;
  color: var(--accent);
}

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 960px) {
  .hero { padding: 56px 0 32px; }
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }
  .hero .sub, .hero .price-line { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .hero-phone img { max-width: 320px; }

  .feature-grid { grid-template-columns: 1fr; gap: 24px; }
  .how-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .anti-grid { grid-template-columns: 1fr; max-width: 520px; }

  .hero-phone { min-height: 460px; }
  .phone-stack .phone-front { width: 280px; }
  .phone-stack .phone-back { width: 190px; left: -90px; top: 60px; }

  .compare { padding: 64px 0; }
  .compare-table { font-size: 14px; }
  .compare-table th, .compare-table td { padding: 14px 12px; }

  .notify-card { padding: 40px 28px 32px; border-radius: var(--radius-lg); }
  .notify-head h2 { font-size: 28px; }

  footer .container { flex-direction: column; align-items: flex-start; }
  .footer-links { text-align: left; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .nav { padding: 18px 0; }
  .nav-cta { padding: 10px 16px; font-size: 14px; }
  .hero { padding: 40px 0 24px; }
  .hero h1 { font-size: 30px; line-height: 1.12; }
  .hero .sub { font-size: 17px; }
  .hero .price-line { font-size: 16px; }
  .hero-phone { min-height: 380px; }
  .phone-stack .phone-front { width: 220px; }
  .phone-stack .phone-back { width: 150px; left: -65px; top: 50px; }
  .features { padding: 64px 0; }
  .notify { padding: 64px 0; }
  .btn-primary { padding: 16px 24px; font-size: 16px; width: 100%; justify-content: center; }
  .cta-meta { text-align: center; width: 100%; font-size: 13px; }
  .section-title { font-size: 26px; }
  .notify-card { padding: 32px 20px 28px; }
  .notify-head h2 { font-size: 24px; }
}
