@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url("/assets/fonts/noto-sans-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url("/assets/fonts/noto-sans-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url("/assets/fonts/noto-sans-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --paper-deep: #f2ede2;
  --white: #fffefb;
  --mint: #e7f3e9;
  --green: #286545;
  --green-dark: #173f2d;
  --coral: #d5523f;
  --coral-soft: #f7e1da;
  --blue-soft: #e3edf0;
  --shadow: 0 28px 70px rgba(23, 33, 28, 0.13);
}

html {
  scroll-behavior: smooth;
}

.marketing-page {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(231, 243, 233, 0.92), transparent 28rem),
    radial-gradient(circle at 93% 4%, rgba(247, 225, 218, 0.68), transparent 24rem),
    var(--paper);
  font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.marketing-page h1,
.marketing-page h2,
.marketing-page h3,
.marketing-page h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
}

.marketing-page a:focus-visible,
.marketing-page button:focus-visible {
  outline: 3px solid rgba(213, 82, 63, 0.34);
  outline-offset: 4px;
}

.marketing-page .brand {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
}

.marketing-page .brand span {
  color: var(--coral);
}

.marketing-header {
  position: relative;
  z-index: 20;
  padding: 18px 0;
}

.marketing-header-inner {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.marketing-nav {
  align-items: center;
  gap: 30px;
  font-size: 13px;
}

.marketing-nav a:not(.nav-cta):hover {
  color: var(--green);
}

.marketing-nav .nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--green-dark);
  color: var(--white);
  transition: transform 160ms ease, background-color 160ms ease;
}

.marketing-nav .nav-cta:hover {
  background: var(--green);
  transform: translateY(-1px);
}

.marketing-main {
  width: 100%;
  max-width: none;
  padding: 0;
}

.marketing-main section {
  border: 0;
}

.marketing-eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  width: min(100% - 48px, 1180px);
  min-height: 700px;
  margin: 0 auto;
  padding: 76px 0 94px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: 58px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 18px 0;
}

.hero-copy h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(54px, 6.1vw, 83px);
  line-height: 0.98;
}

.hero-intro {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--green-dark);
  color: var(--white);
}

.button-primary:hover {
  background: var(--green);
}

.button-secondary {
  border-color: #b9c7bd;
  background: rgba(255, 254, 251, 0.7);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--green);
  background: var(--white);
}

.hero-note {
  margin-top: 15px;
  color: var(--muted);
  font-size: 13px;
}

.product-stage {
  position: relative;
  min-height: 615px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(40, 101, 69, 0.12);
  border-radius: 48% 48% 42% 42% / 38% 42% 46% 48%;
  background:
    radial-gradient(circle at 52% 38%, rgba(255, 255, 255, 0.92), transparent 13rem),
    linear-gradient(155deg, #dcecdf, #f1e4d6 75%);
}

.product-stage::before,
.product-stage::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.product-stage::before {
  width: 74px;
  height: 74px;
  top: 58px;
  right: 42px;
  border: 1px solid rgba(23, 63, 45, 0.16);
}

.product-stage::after {
  width: 32px;
  height: 32px;
  bottom: 50px;
  left: 50px;
  background: rgba(213, 82, 63, 0.18);
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: 340px;
  padding: 9px;
  border: 1px solid #33443a;
  border-radius: 42px;
  background: #17211c;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.phone-frame::before {
  position: absolute;
  z-index: 3;
  width: 108px;
  height: 26px;
  top: 14px;
  left: 50%;
  border-radius: 999px;
  background: #17211c;
  content: "";
  transform: translateX(-50%);
}

.phone-screen {
  overflow: hidden;
  min-height: 560px;
  border-radius: 34px;
  background: var(--paper);
}

.phone-status {
  height: 38px;
  padding: 10px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #27342d;
  font-size: 9px;
  font-weight: 700;
}

.app-bar {
  min-height: 48px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e1e7e1;
}

.app-wordmark {
  font-family: "Fraunces", Georgia, serif;
  font-size: 17px;
  font-weight: 700;
}

.app-wordmark b {
  color: var(--coral);
}

.app-avatar {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 700;
}

.app-content {
  padding: 14px 17px 17px;
  line-height: 1.35;
}

.app-back {
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.recipe-title-row {
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.app-kicker {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recipe-title-row h2 {
  max-width: 215px;
  margin: 0;
  font-size: 24px;
  line-height: 1.05;
}

.alert-count {
  margin-top: 3px;
  padding: 5px 7px;
  border-radius: 999px;
  background: var(--coral-soft);
  color: #8d362b;
  font-size: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.app-section-title {
  margin-top: 19px;
  padding-bottom: 7px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #dce3dc;
  font-size: 10px;
}

.app-section-title span {
  color: var(--muted);
}

.clear-row {
  min-height: 32px;
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid #ebefeb;
  font-size: 9px;
}

.clear-row strong {
  color: var(--green);
  font-size: 8px;
}

.status-dot {
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
}

.clear-dot {
  background: var(--mint);
  color: var(--green);
}

.alert-dot {
  flex: 0 0 auto;
  background: var(--coral-soft);
  color: var(--coral);
}

.alert-card {
  margin-top: 10px;
  padding: 11px;
  border: 1px solid #efc7bd;
  border-radius: 12px;
  background: #fff9f6;
}

.alert-heading {
  display: flex;
  gap: 7px;
  align-items: flex-start;
}

.alert-heading div {
  display: grid;
  gap: 1px;
  font-size: 9px;
}

.alert-heading span:not(.status-dot) {
  color: var(--muted);
  font-size: 8px;
}

.alert-card > p {
  margin: 8px 0 6px;
  color: var(--muted);
  font-size: 8px;
}

.mock-option {
  width: 100%;
  min-height: 29px;
  margin-top: 5px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #d9dfd9;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 8px;
  font-weight: 600;
}

.mock-option span {
  color: var(--green);
  font-size: 7px;
}

.mock-link {
  display: inline-block;
  margin-top: 7px;
  color: var(--green);
  font-size: 8px;
  font-weight: 700;
}

.cross-contact {
  margin: 10px 0 7px;
  color: var(--muted);
  font-size: 7px;
  text-align: center;
}

.save-button {
  width: 100%;
  min-height: 35px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
}

.stage-note {
  position: absolute;
  z-index: 3;
  min-width: 162px;
  padding: 12px 15px;
  display: grid;
  gap: 1px;
  border: 1px solid rgba(40, 101, 69, 0.15);
  border-radius: 14px;
  background: rgba(255, 254, 251, 0.94);
  box-shadow: 0 12px 28px rgba(23, 33, 28, 0.1);
  line-height: 1.3;
}

.stage-note span {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stage-note strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 15px;
}

.stage-note-top {
  top: 92px;
  left: -28px;
  transform: rotate(-3deg);
}

.stage-note-bottom {
  right: -32px;
  bottom: 82px;
  transform: rotate(2deg);
}

.audience-strip {
  padding: 25px 24px;
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.audience-strip p {
  margin: 0;
  font-size: 14px;
}

.audience-strip strong {
  color: var(--white);
}

.marketing-section {
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
  padding: 116px 0;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading h2,
.difference-copy h2,
.story-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.04;
}

.section-heading > p:last-child,
.difference-copy > p,
.story-copy > p {
  color: var(--muted);
  font-size: 17px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process {
  padding-bottom: 56px;
}

.process-card {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 254, 251, 0.82);
}

.process-card::before {
  position: absolute;
  width: 160px;
  height: 160px;
  top: -80px;
  right: -55px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.review-card::before { background: var(--coral-soft); }
.save-card::before { background: var(--blue-soft); }

.step-number {
  position: relative;
  z-index: 2;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-card h3 {
  margin: 24px 0 8px;
  font-size: 27px;
  line-height: 1.1;
}

.process-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.mini-ui {
  min-height: 230px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(23, 33, 28, 0.1);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 28px rgba(23, 33, 28, 0.07);
}

.mini-import p {
  margin: 26px 0 8px;
  font-size: 11px;
  font-weight: 700;
}

.url-field,
.search-field {
  overflow: hidden;
  padding: 12px;
  border: 1px solid #d7ded7;
  border-radius: 10px;
  color: #8a948e;
  font-size: 10px;
  white-space: nowrap;
}

.mini-button {
  margin-top: 10px;
  padding: 11px;
  border-radius: 999px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.mini-review {
  display: grid;
  align-content: center;
  gap: 9px;
}

.mini-review > div {
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #dce3dc;
  border-radius: 12px;
}

.mini-review > div:last-child {
  border-color: #efc7bd;
  background: #fff9f6;
}

.mini-review p {
  margin: 0;
  display: grid;
  gap: 1px;
  font-size: 11px;
}

.mini-review small {
  color: var(--muted);
  font-size: 9px;
}

.mini-status {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.mini-status.safe { background: var(--mint); color: var(--green); }
.mini-status.caution { background: var(--coral-soft); color: var(--coral); }

.mini-save {
  padding-top: 36px;
}

.recipe-chip {
  margin-right: 4px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 8px;
  font-weight: 700;
}

.mini-save h4 {
  margin: 20px 0 4px;
  font-size: 22px;
  line-height: 1.1;
}

.mini-save p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.saved-label {
  margin-top: 22px;
  padding-top: 13px;
  border-top: 1px solid #dce3dc;
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
}

.difference-section {
  padding-top: 56px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.75fr);
  align-items: center;
  gap: 92px;
}

.difference-copy > p {
  margin-top: 20px;
}

.proof-list {
  margin: 34px 0 0 !important;
  padding: 0 !important;
  list-style: none;
}

.proof-list li {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.proof-list li > span {
  color: var(--coral);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.proof-list strong { font-size: 14px; }

.proof-list p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.recipe-book-preview {
  padding: 28px;
  border: 1px solid #d4ddd5;
  border-radius: 28px;
  background: #f4f7f2;
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
}

.book-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.book-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book-heading h3 {
  margin: 2px 0 0;
  font-size: 34px;
}

.book-heading > span {
  color: var(--muted);
  font-size: 10px;
}

.search-field {
  margin: 18px 0 12px;
  background: var(--white);
}

.recipe-card {
  padding: 14px 0;
  border-top: 1px solid #d8dfd8;
}

.recipe-card h4 {
  margin: 3px 0 0;
  font-size: 15px;
}

.recipe-card p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
}

.tag {
  color: var(--green);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tag.marked { color: #a24a3d; }

.story-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: 88px;
}

.story-art {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  border-radius: 50% 42% 50% 43%;
  background: var(--paper-deep);
}

.story-art::before {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(23, 63, 45, 0.18);
  border-radius: 44% 52% 44% 56%;
  content: "";
  transform: rotate(8deg);
}

.story-art img {
  position: relative;
  z-index: 2;
  width: min(78%, 390px);
  height: auto;
  filter: drop-shadow(0 24px 22px rgba(23, 33, 28, 0.14));
  transform: rotate(-4deg);
}

.story-ring {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 48px;
  right: 52px;
  border: 1px solid rgba(213, 82, 63, 0.3);
  border-radius: 50%;
}

.story-copy > p { margin-top: 18px; }

.story-copy .signature {
  margin-top: 28px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.safety-section {
  width: min(100% - 48px, 930px);
  margin: 30px auto 0;
  padding: 24px 30px !important;
  border: 1px solid #ebcfc6 !important;
  border-radius: 16px;
  background: #fffbf8;
  text-align: left;
}

.safety-section > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.safety-section strong {
  color: var(--ink);
}

.final-cta {
  margin-top: 116px;
  margin-bottom: 90px;
  padding: 64px 70px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  border-radius: 34px;
  background: var(--green-dark);
  color: var(--white);
}

.final-cta .marketing-eyebrow { color: #a8cbb1; }

.final-cta h2 {
  max-width: 720px;
  color: var(--white);
}

.button-light {
  flex: 0 0 auto;
  background: var(--white);
  color: var(--green-dark);
}

.marketing-footer {
  width: min(100% - 48px, 1120px);
  min-height: 0;
  margin: 0 auto;
  padding: 50px 0 34px;
  display: block;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.footer-brand { font-size: 28px; }

.footer-main p {
  max-width: 440px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-main nav {
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-meta {
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.footer-meta a { color: var(--muted); }

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 50px;
  }

  .hero-copy { max-width: 760px; }

  .product-stage {
    width: min(100%, 640px);
    justify-self: center;
  }

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

  .process-card {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 32px;
  }

  .process-card .step-number { grid-column: 1 / -1; }
  .process-card .mini-ui { grid-row: 2 / 4; }
  .process-card h3 { align-self: end; }

  .difference-section,
  .story-section {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .recipe-book-preview {
    width: min(100%, 520px);
    justify-self: center;
  }

  .story-art {
    width: min(100%, 580px);
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .marketing-header-inner,
  .hero,
  .marketing-section,
  .marketing-footer {
    width: min(100% - 32px, 1120px);
  }

  .marketing-header { padding-top: 14px; }
  .marketing-nav a:not(.nav-cta) { display: none; }
  .marketing-nav { gap: 0; }

  .marketing-nav .nav-cta {
    padding: 9px 13px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 72px;
  }

  .hero-copy h1 { font-size: clamp(47px, 14vw, 68px); }

  .product-stage {
    min-height: 550px;
    border-radius: 42px;
  }

  .phone-frame { width: min(310px, calc(100% - 32px)); }
  .stage-note { display: none; }
  .marketing-section { padding: 82px 0; }
  .process { padding-bottom: 40px; }
  .difference-section { padding-top: 40px; }

  .section-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .section-heading h2,
  .difference-copy h2,
  .story-copy h2,
  .final-cta h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .process-card {
    display: block;
    padding: 20px;
  }

  .mini-ui { min-height: 210px; }
  .story-art { min-height: 360px; }

  .safety-section {
    width: min(100% - 32px, 930px);
    padding: 22px !important;
  }

  .final-cta {
    margin-top: 82px;
    margin-bottom: 60px;
    padding: 44px 28px !important;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main,
  .footer-meta {
    flex-direction: column;
  }

  .footer-main nav {
    display: grid;
    gap: 12px;
  }

  .footer-meta { gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
