:root {
  --bg: #f4faf5;
  --surface: #ffffff;
  --surface-alt: #ecf7ef;
  --text: #11321f;
  --muted: #486655;
  --primary: #1da14a;
  --primary-dark: #16863d;
  --border: #cce8d5;
  --shadow: 0 10px 30px rgba(22, 91, 47, 0.1);
  --shadow-lg: 0 18px 48px rgba(17, 50, 31, 0.14);
  --header-offset: 88px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

html {
  scroll-padding-top: var(--header-offset);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: var(--header-offset);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.container-wide {
  width: min(1240px, 94vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(244, 250, 245, 0.92);
  border-bottom: 1px solid var(--border);
  z-index: 20;
  padding-top: env(safe-area-inset-top, 0);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-subtitle {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}

.brand-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
}

.brand-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
}

.site-nav a[aria-current="page"] {
  position: relative;
}

.menu-toggle {
  display: none;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

.btn,
.menu-toggle,
.site-nav a,
.screenshot-trigger,
.faq-question {
  -webkit-tap-highlight-color: transparent;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  font-size: 12px;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  line-height: 1.18;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

h3 {
  font-size: 1.1rem;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 62ch;
}

.lead a {
  color: var(--primary-dark);
  font-weight: 600;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-cta {
  margin-top: 18px;
}

.section-intro .lead {
  margin-top: 10px;
}

.hero {
  padding: 64px 0 48px;
  background: radial-gradient(circle at top right, #cdeed8 0%, transparent 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.hero-copy {
  margin: 0 0 20px;
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-points {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.hero-points li + li {
  margin-top: 7px;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  margin-bottom: 12px;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.hero-card li + li {
  margin-top: 8px;
}

.testimonial-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

blockquote {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow);
}

blockquote p {
  margin: 0 0 14px;
  color: var(--text);
}

blockquote cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
}

.feature-card h3 {
  color: var(--text);
}

.page-hero {
  padding: 56px 0 40px;
  background: radial-gradient(circle at top right, #cdeed8 0%, transparent 55%);
}

.page-hero h1 {
  max-width: 18ch;
}

.page-hero .lead {
  margin-top: 12px;
}

.page-hero-special {
  padding-bottom: 28px;
}

.page-hero-special h1 {
  max-width: 20ch;
}

.stats {
  padding: 10px 0 22px;
}

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

.stats article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
}

.stat-number {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 800;
}

.section-lead {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.65;
}

.special-message-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e8c96a;
  background: linear-gradient(135deg, #fff9e6 0%, #fffdf5 100%);
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.special-message-banner:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(184, 134, 11, 0.16);
}

.special-message-banner-label {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #b8860b;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.special-message-banner-text {
  flex: 1;
  min-width: 200px;
  font-weight: 600;
  line-height: 1.45;
}

.special-message-banner-arrow {
  font-size: 1.2rem;
  font-weight: 700;
  color: #b8860b;
  flex-shrink: 0;
}

.special-message-panel {
  background: var(--surface);
  border: 2px solid #e8c96a;
  border-radius: 18px;
  padding: clamp(24px, 4vw, 32px);
  box-shadow: var(--shadow-lg);
}

.special-message-panel h2 {
  max-width: 24ch;
}

.special-message-panel p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}

.special-message-panel p:last-of-type {
  margin-bottom: 0;
}

.special-message-panel .hero-actions {
  margin-top: 22px;
  margin-bottom: 0;
}

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

.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.about-card h3 {
  margin-bottom: 8px;
}

.about-story {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: var(--shadow);
}

#about .about-story {
  margin-bottom: 28px;
  max-width: 760px;
}

.about-story p {
  margin: 0 0 1.1em;
  line-height: 1.75;
  color: var(--text);
}

.about-story p:last-of-type {
  margin-bottom: 0;
}

.about-emphasis {
  background: rgba(29, 161, 74, 0.14);
  font-weight: 600;
  padding: 0 3px;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.about-signature {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.about-signature-name {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
}

.about-signature-role {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.about-me-shell {
  max-width: 920px;
}

.about-me-layout {
  display: grid;
  grid-template-columns: minmax(200px, 240px) 1fr;
  gap: 28px;
  align-items: start;
}

.about-me-photo {
  margin: 0;
}

.about-me-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.stat-label {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 68px 0;
}

.section-compact {
  padding: 48px 0;
}

.section-alt {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.feature-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.feature-card .link-arrow {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.92rem;
}

.module-showcase {
  display: grid;
  gap: 56px;
  margin-top: 48px;
}

.hero-screenshot {
  margin-bottom: 16px;
}

.hero-screenshot .screenshot-frame {
  margin: 0;
}

.about-card-media {
  display: block;
  margin-top: 14px;
}

.workflow-screenshot {
  display: block;
  margin-top: auto;
  padding-top: 14px;
}

.workflow-outputs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}

.workflow-outputs .workflow-screenshot {
  margin-top: 0;
}

.workflow-step-reports {
  align-self: stretch;
}

.workflow-outputs .screenshot-frame {
  margin: 0;
}

.workflow-outputs .screenshot-frame img {
  width: 100%;
  height: auto;
}

.feature-grid + .module-showcase {
  margin-top: 40px;
}

.module-block {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: center;
}

.module-block.reverse {
  grid-template-columns: 1.15fr 1fr;
}

.module-block.reverse .module-copy {
  order: 2;
}

.module-block.reverse .module-media {
  order: 1;
}

.module-copy ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.module-copy li + li {
  margin-top: 6px;
}

.module-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.module-copy h3 {
  margin: 20px 0 8px;
  font-size: 1rem;
  color: var(--text);
}

.module-copy code {
  font-size: 0.88em;
  background: #eef5f0;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
}

.screenshot-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
}

.screenshot-frame img {
  border-radius: 10px;
  width: 100%;
}

.screenshot-caption {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.screenshot-trigger {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  width: 100%;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

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

.download-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.download-card h2 {
  font-size: 1.35rem;
  margin: 0 0 4px;
}

.download-card > p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.download-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.download-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #e8f5eb;
  border: 1px solid var(--border);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}

.download-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.download-points {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.download-points li + li {
  margin-top: 6px;
}

.download-steps {
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.7;
}

.download-steps li + li {
  margin-top: 10px;
}

.download-steps code {
  font-size: 0.92em;
}

.workflow {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.workflow article {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}

.workflow span {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

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

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

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.pricing-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.pricing-card-featured {
  border-color: #9ed4b0;
  box-shadow: 0 14px 36px rgba(29, 161, 74, 0.12);
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e8f5eb;
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-tier {
  margin: 0;
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h2 {
  margin: 6px 0 0;
  font-size: 1.35rem;
}

.pricing-amount {
  margin: 18px 0 0;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}

.pricing-currency {
  font-size: 1.35rem;
  vertical-align: super;
}

.pricing-amount-suffix {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}

.pricing-rate {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-blurb {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.pricing-points {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-points li + li {
  margin-top: 6px;
}

.pricing-note {
  margin: 24px 0 0;
  padding: 16px 18px;
  border-radius: 12px;
  background: #f7fcf8;
  border: 1px solid var(--border);
  color: var(--muted);
  line-height: 1.6;
}

.pricing-table-wrap {
  margin-top: 20px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 320px;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.pricing-table th {
  background: var(--surface-alt);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}

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

.pricing-table td:last-child {
  color: var(--primary-dark);
}

.pricing-includes-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
}

.pricing-includes {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-includes li + li {
  margin-top: 8px;
}

.pricing-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
  max-width: 720px;
}

.pricing-preview-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}

.pricing-preview-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.pricing-preview-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.venmo-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 0;
  padding: 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 55%, #f7fcf8 100%);
  border: 1px solid #cce8d5;
  box-shadow: var(--shadow);
}

.venmo-panel-copy h2 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.venmo-panel-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.venmo-handle {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: #008cff;
  font-weight: 700;
}

.venmo-steps {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.venmo-steps li + li {
  margin-top: 8px;
}

.venmo-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.btn-venmo {
  background: #008cff;
  color: #fff;
  border: 1px solid #008cff;
}

.btn-venmo:hover {
  background: #0075d8;
  border-color: #0075d8;
  color: #fff;
}

.faq-list {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  appearance: none;
  border: 0;
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.24s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 420px;
}

.cta {
  padding-top: 30px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(130deg, #136733, #1c9546 60%, #2bcf66);
  color: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 14px 40px rgba(18, 88, 44, 0.34);
}

.cta-card p {
  margin: 0;
  opacity: 0.95;
}

.cta-card .eyebrow {
  color: #d8ffe4;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-card .btn:not(.btn-outline) {
  background: #fff;
  color: #136733;
}

.cta-card .btn:not(.btn-outline):hover {
  background: #f0fff4;
}

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

.contact-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-panel ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.contact-intro .lead {
  margin-top: 10px;
}

.contact-points {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-points li + li {
  margin-top: 8px;
}

.contact-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-note a {
  color: var(--primary-dark);
  font-weight: 600;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.92rem;
}

.form-optional {
  font-weight: 500;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font: inherit;
  line-height: 1.4;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(29, 161, 74, 0.25);
  border-color: var(--primary);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #c0392b;
}

.form-error {
  display: block;
  margin-top: 6px;
  color: #c0392b;
  font-size: 0.86rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-alert {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.94rem;
  line-height: 1.5;
  display: none;
}

.form-alert.is-visible {
  display: block;
}

.form-alert-success.is-visible {
  background: #e8f5eb;
  border: 1px solid var(--border);
  color: var(--text);
}

.form-alert-error.is-visible {
  background: #fdecea;
  border: 1px solid #f5c6c0;
  color: #922b21;
}

.contact-panel .btn {
  width: 100%;
}

.contact-panel .btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contact-panel li + li {
  margin-top: 8px;
}

.about-placeholder {
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}

.about-placeholder h2 {
  margin-bottom: 10px;
}

.about-placeholder p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.narrow {
  max-width: 760px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.2s ease;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  background: #e8f5eb;
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: inherit;
}

.site-nav .btn-outline {
  border-color: var(--border);
  color: var(--text);
}

.site-nav .btn-outline:hover {
  background: #e8f5eb;
}

.site-footer {
  padding: 24px 0 calc(38px + env(safe-area-inset-bottom, 0));
}

.footer-grid {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}

.footer-grid h4 {
  margin: 0 0 10px;
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-shell {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-shell .footer-links {
  margin-bottom: 4px;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.lightbox.open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 50, 31, 0.72);
}

.lightbox-panel {
  position: relative;
  width: min(1100px, 94vw);
  max-height: 92vh;
  overflow: auto;
  background: var(--surface);
  border-radius: 14px;
  padding: 14px;
  z-index: 1;
}

.lightbox-panel img {
  border-radius: 8px;
  width: 100%;
}

.lightbox-caption {
  margin: 10px 4px 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 920px) {
  :root {
    --header-offset: 76px;
  }

  .hero-grid,
  .feature-grid,
  .workflow,
  .stats-grid,
  .testimonial-grid,
  .about-grid,
  .about-me-layout,
  .download-grid,
  .benefit-grid,
  .pricing-grid,
  .pricing-preview-grid,
  .pricing-includes-grid,
  .venmo-panel,
  .contact-grid,
  .module-block,
  .module-block.reverse,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-me-photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .workflow-outputs {
    grid-template-columns: 1fr;
  }

  .module-block.reverse .module-copy,
  .module-block.reverse .module-media {
    order: unset;
  }

  .module-showcase {
    gap: 40px;
    margin-top: 36px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: calc(72px + env(safe-area-inset-top, 0));
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 8px 4vw 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
    max-height: calc(100dvh - 72px - env(safe-area-inset-top, 0));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    z-index: 19;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
  }

  .site-nav a:active {
    background: #e8f5eb;
  }

  .site-nav a[aria-current="page"]::after {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    font-weight: 600;
  }

  .menu-toggle[aria-expanded="true"] {
    background: #e8f5eb;
    border-color: var(--primary);
    color: var(--primary-dark);
  }

  .cta-card,
  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .btn {
    flex: 1 1 auto;
    min-width: min(100%, 220px);
  }

  .brand-subtitle {
    display: none;
  }

  .hero {
    padding: 48px 0 36px;
  }

  .page-hero {
    padding: 44px 0 32px;
  }

  .section {
    padding: 48px 0;
  }

  .special-message-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 600px) {
  :root {
    --header-offset: 72px;
  }

  .container {
    width: min(1120px, 94vw);
  }

  .nav-shell {
    min-height: 64px;
    gap: 12px;
  }

  .site-nav {
    top: calc(64px + env(safe-area-inset-top, 0));
    max-height: calc(100dvh - 64px - env(safe-area-inset-top, 0));
  }

  .brand {
    gap: 8px;
    font-size: 0.95rem;
  }

  .brand-badge {
    width: 36px;
    height: 36px;
  }

  h1 {
    font-size: clamp(1.65rem, 7.5vw, 2.2rem);
  }

  h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.85rem);
  }

  .hero-copy,
  .lead,
  .section-lead {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .special-message-panel .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .special-message-panel .hero-actions .btn {
    width: 100%;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .workflow article,
  .feature-card,
  .about-card,
  .contact-panel {
    padding: 18px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
  }

  .lightbox-panel {
    width: 100%;
    max-height: 100dvh;
    border-radius: 0;
    padding: 10px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0));
  }

  .lightbox-close {
    top: calc(10px + env(safe-area-inset-top, 0));
    right: 10px;
    min-width: 44px;
    min-height: 44px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
