:root {
  --paper: #f6f4ed;
  --paper-strong: #fffcf5;
  --ink: #18221f;
  --muted: #65716d;
  --line: rgba(24, 34, 31, 0.13);
  --green: #1d6255;
  --green-dark: #113f37;
  --green-soft: #dcebe5;
  --lime: #dcec9a;
  --orange: #e98555;
  --sun: #f3c859;
  --shadow: 0 28px 80px rgba(38, 54, 48, 0.12);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 44px;
  --content: min(1180px, calc(100vw - 40px));
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 8%, rgba(220, 236, 154, 0.26), transparent 24rem),
    var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.26;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: white;
  background: var(--green-dark);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(246, 244, 237, 0.86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--content);
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(29, 98, 85, 0.18);
}

.brand span {
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a:not(.button-link) {
  position: relative;
  color: #3f4c47;
}

.nav-links a:not(.button-link)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button-link,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-link,
.primary-button {
  color: white;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(29, 98, 85, 0.22);
}

.button-link:hover,
.primary-button:hover {
  background: var(--green-dark);
  box-shadow: 0 16px 34px rgba(29, 98, 85, 0.3);
  transform: translateY(-3px) rotate(-0.5deg);
}

.secondary-button {
  color: var(--green-dark);
  background: var(--green-soft);
}

.secondary-button:hover {
  transform: translateY(-2px);
  background: #cfe3db;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px auto;
  content: "";
  background: currentColor;
  border-radius: 2px;
}

.container {
  width: var(--content);
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.section-tight {
  padding: 76px 0;
}

.section-dark {
  color: #f7f3e8;
  background: var(--green-dark);
}

.section-warm {
  background: #eee9dc;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.display-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3.5rem, 7vw, 6.9rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.lede {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.62;
}

.hero {
  min-height: calc(100vh - 86px);
  padding: 70px 0 105px;
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.84fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

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

.hero-actions {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 34px;
}

.app-store-wrap {
  display: inline-grid;
  justify-items: center;
  gap: 10px;
}

.app-store-wrap small {
  color: var(--muted);
  font-size: 0.79rem;
}

.trust-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 15px;
  color: var(--muted);
  font-size: 0.87rem;
}

.trust-note::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
}

.demo-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.demo-stage::before {
  position: absolute;
  inset: 11% 0 5%;
  content: "";
  background: var(--lime);
  border-radius: 49% 51% 42% 58% / 44% 37% 63% 56%;
  transform: rotate(-5deg);
}

.phone {
  position: relative;
  z-index: 2;
  width: min(340px, 78vw);
  padding: 12px;
  background: #131817;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 52px;
  box-shadow: 0 38px 80px rgba(17, 63, 55, 0.27);
  transform: rotate(3deg);
}

.phone-screen {
  min-height: 590px;
  overflow: hidden;
  padding: 52px 22px 24px;
  color: #f9f8f4;
  background: #171c1b;
  border-radius: 41px;
}

.phone-notch {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 100px;
  height: 27px;
  background: #060807;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-brand {
  margin-bottom: 26px;
  color: #a9ddcd;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-screen h3 {
  margin-bottom: 10px;
  font-family: Georgia, serif;
  font-size: 2.05rem;
  letter-spacing: -0.04em;
}

.phone-screen > p {
  color: #a9b0ad;
  font-size: 0.9rem;
}

.prompt-bubble {
  margin-top: 25px;
  padding: 18px;
  color: #1b2824;
  background: #f6f2e8;
  border-radius: 19px;
  font-size: 0.89rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.prompt-caret {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  margin-left: 2px;
  vertical-align: -2px;
  background: var(--green);
  animation: blink 0.9s steps(1) infinite;
}

.generate-pill {
  width: 100%;
  margin-top: 12px;
  padding: 13px 16px;
  color: white;
  background: var(--green);
  border-radius: 16px;
  font-size: 0.86rem;
  font-weight: 750;
  text-align: center;
}

.recipe-preview {
  margin-top: 20px;
  padding: 18px;
  color: #1c2925;
  background: var(--green-soft);
  border-radius: 22px;
  animation: float 5s ease-in-out infinite;
}

.recipe-preview small {
  color: var(--green);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recipe-preview strong {
  display: block;
  margin: 8px 0 12px;
  font-size: 1.02rem;
  line-height: 1.3;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.mini-stats span {
  padding: 8px 5px;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 10px;
  font-size: 0.68rem;
  text-align: center;
}

.media-label {
  position: absolute;
  right: 0;
  bottom: 62px;
  z-index: 3;
  max-width: 180px;
  padding: 13px 16px;
  color: var(--green-dark);
  background: rgba(255, 252, 245, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(31, 61, 52, 0.14);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  line-height: 1.4;
  transform: rotate(-3deg);
}

.workflow-intro,
.section-heading {
  max-width: 780px;
  margin-bottom: 64px;
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: 90px;
}

.app-window {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  padding: 36px;
  background: #17211e;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.app-window::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.82;
}

.app-window img {
  position: absolute;
  right: -8px;
  bottom: -2px;
  z-index: 2;
  width: 58%;
  opacity: 0.92;
}

.window-copy {
  position: relative;
  z-index: 3;
  width: 70%;
  color: white;
}

.window-copy span {
  color: #a9ddcd;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.window-copy h3 {
  margin-top: 12px;
  font-family: Georgia, serif;
  font-size: 2.6rem;
  letter-spacing: -0.05em;
}

.recipe-lines {
  position: absolute;
  right: 22px;
  bottom: 26px;
  left: 22px;
  z-index: 4;
  display: grid;
  gap: 9px;
}

.recipe-lines div {
  height: 48px;
  background: rgba(255, 255, 255, 0.91);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.recipe-lines div:nth-child(2) { width: 84%; }
.recipe-lines div:nth-child(3) { width: 68%; }

.steps {
  position: relative;
  display: grid;
  gap: 18px;
}

.steps::before {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 29px;
  width: 2px;
  content: "";
  background: var(--line);
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  padding: 22px 0;
}

.step-number {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--lime);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  min-height: 520px;
  overflow: hidden;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 50px rgba(43, 58, 53, 0.07);
}

.feature-copy {
  padding: 30px 30px 22px;
}

.feature-copy .feature-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 14px;
  font-size: 1.28rem;
}

.feature-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.feature-media {
  min-height: 290px;
  margin: 0 18px 18px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent),
    var(--green-soft);
  border-radius: 20px;
}

.feature-card:nth-child(2) .feature-media { background-color: #f0ddca; }
.feature-card:nth-child(3) .feature-media { background-color: #e7e6f4; }
.feature-card:nth-child(4) .feature-media { background-color: #e6edc8; }
.feature-card:nth-child(5) .feature-media { background-color: #dbe8ef; }
.feature-card:nth-child(6) .feature-media { background-color: #f1d8d5; }

.media-placeholder {
  width: calc(100% - 56px);
  min-height: 208px;
  padding: 22px;
  display: grid;
  place-items: center;
  color: rgba(17, 63, 55, 0.56);
  background: rgba(255, 255, 255, 0.52);
  border: 1px dashed rgba(17, 63, 55, 0.25);
  border-radius: 22px;
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
}

.quote-strip {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: center;
  gap: 70px;
}

.quote-strip img {
  width: min(310px, 100%);
  margin: 0 auto;
}

.quote-strip blockquote {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1.13;
}

.quote-strip cite {
  display: block;
  margin-top: 24px;
  color: #b9cac4;
  font-family: "Avenir Next", Avenir, sans-serif;
  font-size: 0.95rem;
  font-style: normal;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 8vw, 92px);
  color: white;
  background: var(--green);
  border-radius: var(--radius-lg);
}

.cta-panel::after {
  position: absolute;
  top: -45%;
  right: -10%;
  width: 430px;
  height: 430px;
  content: "";
  background: var(--lime);
  border-radius: 50%;
  opacity: 0.25;
}

.cta-panel h2 {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.cta-panel p {
  position: relative;
  z-index: 2;
  max-width: 640px;
  color: #d8e6e0;
}

.cta-panel .primary-button {
  position: relative;
  z-index: 2;
  color: var(--green-dark);
  background: var(--lime);
  box-shadow: none;
}

.page-hero {
  padding: 92px 0 70px;
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero .lede {
  max-width: 760px;
}

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

.price-card {
  position: relative;
  min-height: 470px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.price-card.is-featured {
  color: white;
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: var(--shadow);
  transform: translateY(-18px);
}

.plan-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  padding: 7px 13px;
  color: var(--green-dark);
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-name {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.is-featured .plan-name {
  color: #bce8d9;
}

.price {
  margin: 18px 0 0;
  font-family: Georgia, serif;
  font-size: 3.4rem;
  letter-spacing: -0.05em;
}

.price small {
  font-family: "Avenir Next", Avenir, sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
}

.year-price {
  color: var(--muted);
  font-size: 0.87rem;
}

.is-featured .year-price {
  color: #b9cac4;
}

.plan-list {
  padding: 0;
  margin: 28px 0 32px;
  display: grid;
  gap: 11px;
  list-style: none;
}

.plan-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  font-size: 0.92rem;
}

.plan-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
}

.is-featured .plan-list li::before {
  color: var(--lime);
}

.price-card .primary-button,
.price-card .secondary-button {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  max-width: 880px;
  margin: 80px auto 0;
  padding: clamp(30px, 5vw, 54px);
  background: #eee9dc;
  border-radius: var(--radius-md);
}

.pricing-note h2 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  padding: 25px 42px 25px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

summary::after {
  float: right;
  content: "+";
  color: var(--green);
  font-size: 1.35rem;
}

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

details p {
  max-width: 720px;
  padding-bottom: 25px;
  color: var(--muted);
}

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

.article-card {
  overflow: hidden;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  box-shadow: 0 18px 44px rgba(32, 55, 47, 0.1);
  transform: translateY(-6px);
}

.article-art {
  min-height: 210px;
  padding: 26px;
  display: flex;
  align-items: flex-end;
  background: var(--green-soft);
  font-family: Georgia, serif;
  font-size: 4rem;
}

.article-card:nth-child(2n) .article-art { background: #f0ddca; }
.article-card:nth-child(3n) .article-art { background: #e6edc8; }

.article-body {
  padding: 26px;
}

.article-meta {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-body p {
  color: var(--muted);
  font-size: 0.93rem;
}

.text-link {
  color: var(--green);
  font-weight: 750;
}

.text-link::after {
  margin-left: 6px;
  content: "→";
  transition: margin 160ms ease;
}

.text-link:hover::after { margin-left: 11px; }

.article-shell {
  width: min(780px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 72px 0 110px;
}

.article-shell h1 {
  font-size: clamp(3rem, 7vw, 5.9rem);
}

.article-shell h2 {
  margin-top: 58px;
  font-family: "Avenir Next", Avenir, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.article-shell h3 {
  margin-top: 36px;
}

.article-shell p,
.article-shell li {
  color: #47534f;
}

.article-shell a:not(.primary-button) {
  color: var(--green);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-header {
  margin-bottom: 50px;
}

.article-header .article-meta {
  margin-bottom: 18px;
}

.article-callout {
  margin: 42px 0;
  padding: 26px 28px;
  background: var(--green-soft);
  border-left: 4px solid var(--green);
  border-radius: 0 18px 18px 0;
}

.article-callout p:last-child { margin-bottom: 0; }

.comparison-table {
  width: 100%;
  margin: 32px 0;
  overflow: hidden;
  border-collapse: collapse;
  background: var(--paper-strong);
  border-radius: 18px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.comparison-table tr:last-child td { border-bottom: 0; }

.legal-shell {
  width: min(860px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 70px 0 120px;
}

.legal-shell h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.legal-shell h2 {
  margin-top: 52px;
  font-family: "Avenir Next", Avenir, sans-serif;
  font-size: 1.7rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.legal-shell h3 {
  margin-top: 32px;
}

.legal-shell p,
.legal-shell li {
  color: #47534f;
}

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

.draft-notice {
  margin: 30px 0;
  padding: 18px 20px;
  color: #633821;
  background: #f5dfcf;
  border: 1px solid rgba(99, 56, 33, 0.15);
  border-radius: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 75px;
}

.contact-card {
  padding: 34px;
  background: var(--green-dark);
  color: white;
  border-radius: var(--radius-md);
}

.contact-card p { color: #c5d5cf; }

.contact-card a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.86rem;
  font-weight: 750;
}

.field input,
.field textarea {
  width: 100%;
  padding: 15px 17px;
  color: var(--ink);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.field textarea {
  min-height: 180px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.8rem;
}

.status-message {
  display: none;
  padding: 14px 16px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 14px;
}

.status-message.is-visible { display: block; }

.site-footer {
  padding: 78px 0 28px;
  color: #dce6e2;
  background: #102d27;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 54px;
}

.footer-intro {
  max-width: 360px;
}

.footer-intro .brand { color: white; }

.footer-intro p {
  margin-top: 20px;
  color: #9fb4ad;
  font-size: 0.92rem;
}

.footer-column h3 {
  margin-bottom: 18px;
  color: #8eaaa1;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 9px 0;
  color: #dce6e2;
  font-size: 0.9rem;
}

.footer-column a:hover { color: var(--lime); }

.footer-bottom {
  margin-top: 62px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #8eaaa1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  max-width: 330px;
  padding: 14px 18px;
  color: white;
  background: var(--green-dark);
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.7,.2,1);
}

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

@keyframes blink {
  50% { opacity: 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-7px) rotate(0.5deg); }
}

@media (max-width: 960px) {
  :root { --content: min(100% - 32px, 760px); }

  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    padding: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 252, 245, 0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 10px 12px; }
  .nav-links .button-link { margin-top: 6px; }

  .hero-grid,
  .workflow-layout,
  .quote-strip,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 45px; }
  .hero-copy { text-align: center; }
  .hero-copy h1, .hero-copy .lede { margin-right: auto; margin-left: auto; }
  .hero-actions { justify-content: center; }
  .demo-stage { min-height: 650px; }

  .workflow-layout { gap: 55px; }
  .workflow-layout .steps { order: -1; }

  .pricing-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .price-card.is-featured { transform: none; }
  .article-grid { max-width: 620px; }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 80px 0; }
  .section-tight { padding: 58px 0; }
  .nav-shell { min-height: 74px; }
  .brand img { width: 38px; height: 38px; }

  h1 { font-size: clamp(3.15rem, 15vw, 4.6rem); }
  h2 { font-size: clamp(2.5rem, 12vw, 3.65rem); }

  .hero { min-height: auto; padding-bottom: 75px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .primary-button { width: 100%; }
  .app-store-wrap { width: 100%; }
  .demo-stage { min-height: 585px; }
  .phone-screen { min-height: 520px; }
  .media-label { right: 4px; bottom: 28px; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .feature-copy { padding: 25px 24px 20px; }
  .feature-media { min-height: 230px; }

  .app-window { min-height: 520px; padding: 26px; }
  .window-copy { width: 95%; }
  .window-copy h3 { font-size: 2.1rem; }
  .app-window img { width: 70%; opacity: 0.66; }

  .price-card { min-height: 430px; padding: 28px; }
  .comparison-table { display: block; overflow-x: auto; }

  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
}
