/* Have — gethave.app */
:root {
  --bg: #FAF9F6;
  --ink: #14201A;
  --ink-soft: #4A5A50;
  --deep: #0F5132;
  --deep-2: #0B4128;
  --brand: #0AAD0A;
  --brand-soft: #E3F6E3;
  --card: #FFFFFF;
  --line: #E7E4DC;
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--deep); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em;
  color: var(--ink); text-decoration: none;
}
.logo img { width: 32px; height: 32px; border-radius: 8px; display: block; }
.nav { display: flex; gap: 24px; align-items: center; }
.nav a {
  color: var(--ink-soft); text-decoration: none; font-weight: 600; font-size: 0.95rem;
}
.nav a:hover { color: var(--deep); }
.nav .btn { color: #fff; }
@media (max-width: 560px) { .nav a:not(.btn) { display: none; } }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 1rem;
  transition: background 0.15s ease;
}
.btn:hover { background: #089508; }
.btn.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* Hero */
.hero {
  background: var(--deep);
  color: #fff;
  padding: 88px 0 96px;
  border-radius: 0 0 32px 32px;
}
.hero .wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
@media (max-width: 820px) { .hero .wrap { grid-template-columns: 1fr; } }
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: #7BE87B; }
.hero p.lede {
  font-size: 1.2rem; color: rgba(255, 255, 255, 0.85);
  max-width: 34em; margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* Phone mockup drawn with CSS */
.phone {
  width: 280px; margin: 0 auto;
  background: #0B4128;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-radius: 40px;
  padding: 18px 14px 22px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}
.phone .notch {
  width: 90px; height: 8px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.2); margin: 0 auto 16px;
}
.phone .p-card {
  background: #fff; color: var(--ink);
  border-radius: 14px; padding: 12px 14px; margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 600;
}
.phone .p-card .dot {
  width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
  background: var(--brand-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.phone .p-card small { display: block; color: var(--ink-soft); font-weight: 500; }
.phone .p-cta {
  background: var(--brand); color: #fff; text-align: center;
  border-radius: 12px; padding: 11px; font-weight: 700; font-size: 0.9rem;
  margin-top: 14px;
}

/* Sections */
section { padding: 80px 0; }
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head .eyebrow {
  color: var(--brand); font-weight: 800; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em; line-height: 1.15; font-weight: 800;
  margin-bottom: 12px;
}
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.step .num {
  width: 44px; height: 44px; border-radius: 14px;
  background: var(--deep); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; margin-bottom: 18px;
}
.step h3 { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.98rem; }

/* Feature grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }
.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.feature .icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--brand-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
}
.feature h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.01em; }
.feature p { color: var(--ink-soft); font-size: 0.95rem; }

/* Kroger banners strip */
.banners { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 56px 0; }
.banners h2 { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 6px; }
.banners .sub { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 24px; max-width: 46em; }
.banner-list { display: flex; flex-wrap: wrap; gap: 10px; }
.banner-list span {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 700; font-size: 0.9rem; color: var(--ink-soft);
}
.banners .fine { margin-top: 20px; font-size: 0.8rem; color: var(--ink-soft); max-width: 52em; }

/* Download */
.download { text-align: center; }
.download .dl-card {
  background: var(--deep); color: #fff;
  border-radius: 28px; padding: 72px 32px;
}
.download h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px;
}
.download p { color: rgba(255, 255, 255, 0.8); margin-bottom: 32px; }
.store-badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  background: #fff; color: var(--ink);
  border-radius: 14px; padding: 10px 22px;
  text-decoration: none; text-align: left;
  min-width: 180px;
  opacity: 0.95;
}
.store-badge small { font-size: 0.7rem; color: var(--ink-soft); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.store-badge strong { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em; }
.store-badge .soon {
  font-size: 0.7rem; font-weight: 800; color: var(--brand);
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 56px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.site-footer .foot-top {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.site-footer nav { display: flex; gap: 20px; flex-wrap: wrap; }
.site-footer nav a { color: var(--ink-soft); text-decoration: none; font-weight: 600; }
.site-footer nav a:hover { color: var(--deep); }
.site-footer .disclaimer {
  font-size: 0.82rem; max-width: 60em; margin-bottom: 12px;
}

/* Legal / content pages */
.page-hero {
  background: var(--deep); color: #fff;
  padding: 56px 0; border-radius: 0 0 28px 28px;
}
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; }
.page-hero p { color: rgba(255, 255, 255, 0.75); margin-top: 8px; }
.prose { max-width: 760px; padding: 56px 0 80px; }
.prose h2 { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.01em; margin: 40px 0 12px; }
.prose h3 { font-size: 1.1rem; font-weight: 800; margin: 28px 0 8px; }
.prose p, .prose li { color: #33413A; }
.prose p { margin-bottom: 14px; }
.prose ul { margin: 0 0 14px 1.3em; }
.prose li { margin-bottom: 6px; }
.prose .callout {
  background: var(--brand-soft);
  border: 1px solid #C4E9C4;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.95rem;
}

/* FAQ */
.faq { max-width: 760px; padding: 56px 0 40px; }
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-bottom: 12px;
}
.faq summary {
  font-weight: 800; cursor: pointer; font-size: 1.02rem;
  letter-spacing: -0.01em; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand); font-size: 1.3rem; font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-soft); margin-top: 10px; font-size: 0.96rem; }

.contact-card {
  max-width: 760px; margin: 0 auto 80px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
}
.contact-card h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.contact-card p { color: var(--ink-soft); }
