:root {
  --white: #ffffff;
  --cream: #faf6f0;
  --cream-deep: #f3ede4;
  --surface: #f7f4ef;
  --ink: #1a1a18;
  --muted: #5f5b56;
  --green: #2f5a2c;
  --green-deep: #243f22;
  --mustard: #e8b84a;
  --mustard-soft: rgba(232, 184, 74, 0.22);
  --border: rgba(26, 26, 24, 0.08);
  --shell: 1120px;
  --radius-pill: 999px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --font-display: "DM Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body: "DM Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --shadow-soft: 0 24px 60px rgba(26, 26, 24, 0.08);
  --blog-width: 52rem;

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

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

.shell {
  width: min(100% - 2rem, var(--shell));
  max-width: 100%;
  margin-inline: auto;
}

#main { overflow-x: hidden; }

.preview-banner {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 0.65rem 1rem;
  background: var(--green);
  color: #fff;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 0.5rem 1rem;
  background: var(--ink);
  color: #fff;
  z-index: 300;
}

.skip-link:focus { left: 1rem; top: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.5rem 0;
  background: transparent;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.5rem;
  padding: 0.35rem 0.35rem 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(26, 26, 24, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand img { border-radius: 10px; }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1rem;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

.nav__panel {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem 1rem;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}

.nav__panel.is-open { display: flex; }

.nav__panel a {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.nav__panel a:hover { color: var(--ink); }

.nav__cta {
  display: none;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  background: var(--green);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav__cta:hover { background: var(--green-deep); }

@media (min-width: 900px) {
  .site-header { top: 0; }

  .nav-toggle { display: none; }

  .nav__panel {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
    border: none;
    padding: 0;
    margin-left: auto;
    margin-right: 0.75rem;
    background: transparent;
    box-shadow: none;
  }

  .nav__cta { display: inline-flex; }
}

/* Hero */
.hero {
  position: relative;
  padding: 0.75rem 0 1.25rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 90% 15%, var(--mustard-soft), transparent 50%),
    linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

.hero__copy h1 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6.5vw, 3.5rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.035em;
  max-width: 14ch;
}

.hero__subhead {
  margin: 0 0 1.1rem;
  max-width: 28rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.55;
  color: var(--muted);
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-pill);
  background: var(--green);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn-pill:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
}

.hero__visual {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.hero-phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}

.hero-phone {
  flex: 0 0 auto;
  width: clamp(150px, 42vw, 200px);
  padding: 0.45rem;
  border-radius: 1.65rem;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(26, 26, 24, 0.1);
}

.hero-phone img {
  width: 100%;
  border-radius: 1.25rem;
}

.hero-phone--back {
  width: clamp(140px, 38vw, 185px);
  margin-left: clamp(-2.75rem, -8vw, -2rem);
  margin-bottom: 0.35rem;
  opacity: 0.95;
  z-index: 1;
}

.hero-phone:first-child {
  position: relative;
  z-index: 2;
}

@media (min-width: 900px) {
  .hero {
    padding: 1rem 0 1.5rem;
  }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
    align-items: center;
  }

  .hero__copy h1 {
    max-width: 11ch;
  }

  .hero-phones {
    justify-content: flex-end;
    max-width: none;
    margin-inline: 0;
  }

  .hero-phone {
    width: 210px;
  }

  .hero-phone--back {
    width: 195px;
    margin-left: -2.5rem;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 599px) {
  .shell { width: min(100% - 1.25rem, var(--shell)); }
}

/* Product flow */
.product-flow {
  background: var(--white);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.flow-intro {
  padding: 1.75rem 0 1rem;
  text-align: center;
}

.flow-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.flow-intro h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.8vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.flow-lead {
  margin: 0 auto;
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.flow-steps {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0.4rem;
  list-style: none;
  padding: 0.85rem 0 0;
  margin: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.flow-steps::-webkit-scrollbar { display: none; }

.flow-steps li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.flow-steps li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
}

@media (min-width: 900px) {
  .flow-steps {
    justify-content: center;
    flex-wrap: wrap;
    overflow: visible;
  }
}

.flow-track {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0 0 1.25rem;
}

.flow-row {
  padding: 0;
}

.flow-row__grid {
  display: grid;
  gap: 1.15rem;
  align-items: center;
  padding: 1.15rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
}

.flow-row--alt .flow-row__grid {
  background: var(--white);
}

.flow-step-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.flow-row__copy h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.flow-row__copy p {
  margin: 0 0 0.55rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 34rem;
}

.flow-row__detail {
  font-size: 1rem;
}

.flow-row__points {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.flow-row__points li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.45rem;
  font-size: 0.98rem;
  color: var(--muted);
}

.flow-row__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--mustard);
}

.flow-row__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.device-frame {
  padding: 0.65rem;
  border-radius: 1.75rem;
  background: linear-gradient(145deg, var(--white), var(--cream-deep));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.device-frame video {
  width: min(100%, 280px);
  border-radius: 1.25rem;
  background: var(--white);
}

.flow-row__visual:hover .device-frame,
.flow-row__visual:focus-within .device-frame {
  box-shadow: var(--shadow-device);
  transform: translateY(-2px);
}

.flow-row__visual-hint {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  color: var(--muted);
}

@media (min-width: 900px) {
  .flow-row__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 1.35rem 1.5rem;
  }

  .flow-row__grid--flip .flow-row__copy { order: 2; }
  .flow-row__grid--flip .flow-row__visual { order: 1; }

  .device-frame video { width: min(100%, 300px); }
}

@media (hover: none) {
  .flow-row__visual-hint { display: none; }
}

/* Benefits */
.pill-row {
  padding: 1.5rem 0 1.75rem;
  background: var(--cream);
}

.pill-row__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.pill-row__item {
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--mustard);
}

.pill-row__item h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.pill-row__item p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
}

@media (min-width: 640px) {
  .pill-row__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .pill-row__grid { grid-template-columns: repeat(4, 1fr); }
}

/* Download / waitlist */
.download {
  position: relative;
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
  overflow: hidden;
}

.download--branded {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(47, 90, 44, 0.1), transparent 70%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  color: var(--ink);
}

.download--branded::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--mustard), var(--green));
}

.download__inner {
  position: relative;
  z-index: 1;
  max-width: 32rem;
}

.download__eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(47, 90, 44, 0.1);
  color: var(--green);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.download h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}

.download__lead {
  margin: 0 auto 1.5rem;
  max-width: 26rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.waitlist-incentive {
  margin: 0 auto 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: var(--mustard-soft);
  border: 1px solid rgba(232, 184, 74, 0.45);
  text-align: left;
}

.waitlist-incentive__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.waitlist-incentive__title strong {
  color: var(--green);
}

.waitlist-incentive__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.waitlist-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.waitlist-page__main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
}

.waitlist-page__card {
  width: min(100%, 36rem);
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.waitlist-page__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  color: var(--green);
}

.waitlist-page__steps {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.waitlist-page__steps li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.65rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--muted);
}

.waitlist-page__steps li:first-child { border-top: none; padding-top: 0; }

.waitlist-page__steps span {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5rem;
  text-align: center;
}

.waitlist-page__card h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  text-align: center;
}

.waitlist-form {
  text-align: left;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.waitlist-form__input {
  width: 100%;
  padding: 0.9rem 1rem;
  margin-bottom: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--cream);
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
}

.waitlist-form__input:focus {
  outline: 2px solid rgba(47, 90, 44, 0.35);
  outline-offset: 1px;
}

.waitlist-form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
  cursor: pointer;
}

.waitlist-form__check input { margin-top: 0.2rem; flex-shrink: 0; }

.waitlist-form__submit {
  width: 100%;
  border: none;
  cursor: pointer;
}

.waitlist-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.waitlist-form__status {
  min-height: 1.25rem;
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  text-align: center;
}

.waitlist-form__status.is-success { color: var(--green); }
.waitlist-form__status.is-error { color: #9b2c2c; }

.waitlist-form__legal {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}

.waitlist-form__legal a { text-decoration: underline; }

.waitlist-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.waitlist-result {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.waitlist-result__frame {
  display: block;
  width: 100%;
  min-height: 460px;
  border: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.download__stores {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.store-badge--disabled { opacity: 0.55; cursor: default; }

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.15rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
}

.store-badge svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.store-badge small {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  opacity: 0.75;
}

/* FAQ */
.faq {
  padding: clamp(2rem, 5vw, 3rem) 0;
  background: var(--white);
}

.faq h2 {
  margin: 0 0 1.75rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.faq__list {
  max-width: 42rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  list-style: none;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  transition: transform 0.2s ease;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.faq__item p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
}

.faq--policies {
  background: var(--cream);
}

.policy-list {
  max-width: 42rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.policy-item {
  display: block;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.policy-item strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.policy-item span {
  display: block;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.policy-item:hover {
  border-color: rgba(47, 90, 44, 0.25);
  transform: translateY(-1px);
}

/* Footer */
.site-footer {
  padding: 3rem 0 2rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 2.5rem;
}

.footer-brand {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 700;
}

.footer-brand img { border-radius: 8px; }

/* Article / blog / guide content */
.section {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.legal-page {
  background: var(--cream);
}

.legal-content {
  max-width: 42rem;
  margin-inline: auto;
}

.legal-content .eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.legal-content h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
  color: var(--green);
}

.legal-content h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.1rem;
}

.legal-content p,
.legal-content li {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--muted);
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal-content a {
  color: var(--green);
  text-decoration: underline;
}

/* Blog — matches main site hero + card language */
.blog-hero,
.blog-article-hero {
  position: relative;
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  overflow: hidden;
}

.blog-article-hero--compact {
  padding: clamp(1rem, 2.5vw, 1.5rem) 0;
}

.blog-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 90% 15%, var(--mustard-soft), transparent 50%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(47, 90, 44, 0.08), transparent 55%),
    linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  pointer-events: none;
}

.blog-hero__inner,
.blog-article-hero__inner {
  position: relative;
  max-width: 42rem;
}

.blog-hero__inner {
  text-align: center;
  margin-inline: auto;
}

.blog-hero h1,
.blog-article-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.blog-article-hero__row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  max-width: var(--blog-width);
  margin-inline: auto;
}

.blog-article-hero__main {
  flex: 1 1 16rem;
  min-width: 0;
}

.blog-article-hero__row .blog-meta {
  flex: 0 0 auto;
  margin: 0;
}

.blog-article-hero__row .blog-breadcrumb {
  margin: 0 0 0.35rem;
}

.blog-hero__lead {
  margin: 0 auto 1.5rem;
  max-width: 34rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: var(--muted);
}

.blog-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.blog-hero__secondary {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.blog-hero__secondary:hover {
  color: var(--green-deep);
}

.blog-breadcrumb {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
}

.blog-breadcrumb a {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
}

.blog-breadcrumb a:hover {
  color: var(--green);
}

.blog-list {
  padding-top: 0;
  margin-top: 0;
}

.blog-grid {
  display: grid;
  gap: 0.75rem;
  max-width: var(--blog-width);
  margin-inline: auto;
}

.blog-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(26, 26, 24, 0.05);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.blog-card:hover {
  border-color: rgba(47, 90, 44, 0.2);
  box-shadow: 0 12px 28px rgba(26, 26, 24, 0.08);
}

.blog-card--horizontal .blog-card__body {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
}

.blog-card__body {
  padding: 0;
}

.blog-card__date {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.blog-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.blog-card h2 a {
  color: var(--ink);
  text-decoration: none;
}

.blog-card h2 a:hover {
  color: var(--green);
}

.blog-card__link {
  flex: 0 0 auto;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}

.blog-page-cta {
  margin-top: 0;
}

.blog-page-cta .download__inner {
  max-width: 36rem;
  margin-inline: auto;
}

.blog-article-layout {
  max-width: var(--blog-width);
  margin-inline: auto;
}

.blog-post-body.section {
  padding-top: 1rem;
}

.blog-article-panel {
  padding: clamp(1.35rem, 3.5vw, 2rem);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.blog-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
  color: var(--green);
}

.blog-content h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.1rem;
}

.blog-content p,
.blog-content li {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
}

.blog-content ul,
.blog-content ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.blog-content a {
  color: var(--green);
  text-decoration: underline;
}

.content-cta {
  margin-top: 2rem;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
}

.content-cta p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.content-cta .button,
.blog-content .button {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  background: var(--green);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-tags li {
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(47, 90, 44, 0.1);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-content :where(img) {
  border-radius: var(--radius-md);
  margin: 1rem 0;
}

.blog-callout {
  margin: 1.25rem 0;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(232, 184, 74, 0.45);
  background: var(--mustard-soft);
}

.blog-callout__label {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}

.blog-callout__body p {
  margin: 0;
}

.blog-back {
  margin: 1.5rem 0 0;
  text-align: center;
}

.blog-back a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}

.blog-back a:hover {
  text-decoration: underline;
}

.blog-subscribe-panel {
  max-width: 36rem;
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.blog-subscribe-panel__lead {
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.65;
}

.blog-subscribe-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.btn-pill--outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-pill--outline:hover {
  background: rgba(47, 90, 44, 0.08);
  transform: translateY(-1px);
}

.blog-subscribe-url {
  margin: 0 0 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: left;
}

.blog-subscribe-url__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.blog-subscribe-url code {
  display: block;
  font-size: 0.88rem;
  word-break: break-all;
  color: var(--ink);
}

.blog-subscribe-help {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

.blog-subscribe-url.is-copied code {
  color: var(--green);
}

@media (min-width: 900px) {
  .blog-article-hero h1 {
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  }
}

.footer-col h3 {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.footer-col a {
  display: block;
  padding: 0.2rem 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-col a:hover { color: #fff; }

.footer-copy {
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.social-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: rgba(255, 255, 255, 0.72);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr repeat(4, 1fr);
  }

  .footer-brand { grid-column: auto; }
}

/* Motion — PantryAI-style scroll reveals */
@media (prefers-reduced-motion: no-preference) {
  .reveal-on-load,
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal-on-load.is-visible,
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  .hero-phones {
    animation: hero-float 5.5s ease-in-out infinite;
  }

  .hero__bg {
    animation: hero-glow 10s ease-in-out infinite alternate;
  }

  .flow-intro.is-visible .flow-steps li {
    opacity: 0;
    animation: step-pop 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .flow-intro.is-visible .flow-steps li:nth-child(1) { animation-delay: 0.2s; }
  .flow-intro.is-visible .flow-steps li:nth-child(2) { animation-delay: 0.28s; }
  .flow-intro.is-visible .flow-steps li:nth-child(3) { animation-delay: 0.36s; }
  .flow-intro.is-visible .flow-steps li:nth-child(4) { animation-delay: 0.44s; }
  .flow-intro.is-visible .flow-steps li:nth-child(5) { animation-delay: 0.52s; }

  .pill-row__item.reveal:nth-child(1) { transition-delay: 0.05s; }
  .pill-row__item.reveal:nth-child(2) { transition-delay: 0.12s; }
  .pill-row__item.reveal:nth-child(3) { transition-delay: 0.19s; }
  .pill-row__item.reveal:nth-child(4) { transition-delay: 0.26s; }

  .site-header.is-scrolled .nav {
    box-shadow: 0 12px 40px rgba(26, 26, 24, 0.1);
    background: rgba(255, 255, 255, 0.95);
  }

  @keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  @keyframes hero-glow {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0.85; transform: scale(1.03); }
  }

  @keyframes step-pop {
    from {
      opacity: 0;
      transform: translateY(12px) scale(0.96);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-load,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
