:root {
  --green-900: #263821;
  --green-800: #3a5730;
  --green-700: #4a6d3d;
  --green-600: #5c8449;
  --gold-500: #c99a42;
  --gold-400: #dbb367;
  --green-tint: #e6e8d3;
  --gold-tint: #f3e6c8;
  --cream-050: #f7f1e2;
  --cream-100: #ede1c2;
  --card-paper: #fffbf0;
  --ink-900: #2c2717;
  --ink-700: #57492f;
  --ink-500: #8a7a54;
  --border: #ddd0a8;
  --radius-lg: 0px;
  --radius-md: 0px;
  --radius-sm: 0px;
  --shadow-md: 6px 6px 0 rgba(44, 39, 23, 0.16);
  --shadow-sm: 4px 4px 0 rgba(44, 39, 23, 0.14);
  --max-width: 1180px;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
  --font-hand: 'Caveat', cursive;
  --alert-500: #b8542e;
  --alert-tint: #f3ddc4;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }

/* Belt-and-suspenders with scroll-padding-top above: some browsers don't
   apply scroll-padding-top on the very first navigation-to-fragment (e.g.
   loading index.html#top directly), only on later same-page anchor jumps.
   scroll-margin-top on the actual targets is respected in both cases, so
   the sticky header (~80px) never covers whichever section is jumped to. */
#top, #pricing, #value, #how-it-works, #features, #contact {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink-900);
  background: var(--cream-050);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--green-900);
}

p { margin: 0 0 1em; color: var(--ink-700); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-800);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 200;
}
.skip-link:focus { left: 16px; top: 16px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-800);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--green-700); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--green-900);
  border-color: var(--green-900);
}
.btn-ghost:hover { background: var(--green-tint); border-color: var(--green-700); }
.btn-lg { padding: 16px 30px; font-size: 1.03rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 226, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(18, 41, 28, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--green-900);
}
.brand-mark {
  width: 48px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-700);
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--green-800); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-900);
  margin: 0 auto;
}

/* Hero */
.hero { padding: 64px 0 32px; overflow: hidden; position: relative; }
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
}
.hero::before {
  width: 420px;
  height: 420px;
  background: var(--green-tint);
  top: -160px;
  right: -80px;
}
.hero::after {
  width: 320px;
  height: 320px;
  background: var(--gold-tint);
  bottom: -140px;
  left: -100px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--cream-050);
  background: var(--green-700);
  border: 2.5px solid var(--green-900);
  padding: 10px 22px;
  border-radius: 0;
  margin-bottom: 20px;
  position: relative;
  transform: rotate(-2deg);
  box-shadow: 5px 5px 0 rgba(44, 39, 23, 0.18);
}
.eyebrow::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 20px;
  width: 36px;
  height: 15px;
  background: var(--gold-tint);
  border: 1px solid var(--gold-500);
  opacity: 0.9;
  transform: rotate(4deg);
}
.eyebrow::after {
  content: "✦";
  font-family: var(--font-hand);
  font-size: 1.3rem;
  line-height: 1;
  transform: rotate(8deg);
}
.eyebrow.center { display: table; margin-left: auto; margin-right: auto; transform: rotate(1.5deg); }
.eyebrow.center::before { left: auto; right: 24px; transform: rotate(-4deg); }

/* alternate the sticker color per section for a scrapbook feel */
#value .eyebrow, #features .eyebrow {
  color: var(--ink-900);
  background: var(--gold-500);
  border-color: var(--ink-900);
}
#value .eyebrow::before, #features .eyebrow::before {
  background: var(--green-tint);
  border-color: var(--green-700);
}

h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.4rem);
}
h1 .accent {
  color: var(--green-700);
}
.cursor {
  display: inline-block;
  width: 3px;
  height: 0.8em;
  margin-left: 4px;
  background: var(--green-700);
  vertical-align: -0.1em;
  animation: cursor-blink 1s steps(1) infinite;
}
@keyframes cursor-blink {
  50% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .cursor { animation: none; }
}

.hero-sub {
  font-size: 1.1rem;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 24px;
}

/* Hero visual mockup */
.hero-visual { position: relative; }
.mock-card {
  background: var(--card-paper);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.mock-card-main { padding: 26px; }

.card-slider { position: relative; min-height: 460px; }
.slider-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 440px;
  animation: sliderSpin 18s ease-in-out infinite;
}
.slider-card-1 { animation-delay: 0s; }
.slider-card-2 { animation-delay: -6s; }
.slider-card-3 { animation-delay: -12s; }

.card-slider:hover .slider-card { animation-play-state: paused; }

@keyframes sliderSpin {
  0%, 28%   { transform: translate(-50%, 0) rotate(-2deg) scale(1); z-index: 3; box-shadow: var(--shadow-md); opacity: 1; }
  33%, 61%  { transform: translate(-28%, 4%) rotate(6deg) scale(0.92); z-index: 2; box-shadow: var(--shadow-sm); opacity: 0.95; }
  66%, 94%  { transform: translate(-72%, 8%) rotate(-9deg) scale(0.86); z-index: 1; box-shadow: var(--shadow-sm); opacity: 0.85; }
  100%      { transform: translate(-50%, 0) rotate(-2deg) scale(1); z-index: 3; box-shadow: var(--shadow-md); opacity: 1; }
}

@media (max-width: 980px) {
  .card-slider { min-height: 480px; }
}
@media (max-width: 560px) {
  .card-slider { min-height: 520px; }
  @keyframes sliderSpin {
    0%, 28%   { transform: translate(-50%, 0) rotate(-2deg) scale(1); z-index: 3; box-shadow: var(--shadow-md); opacity: 1; }
    33%, 61%  { transform: translate(-50%, 5%) rotate(4deg) scale(0.92); z-index: 2; box-shadow: var(--shadow-sm); opacity: 0.25; }
    66%, 94%  { transform: translate(-50%, 9%) rotate(-4deg) scale(0.86); z-index: 1; box-shadow: var(--shadow-sm); opacity: 0.12; }
    100%      { transform: translate(-50%, 0) rotate(-2deg) scale(1); z-index: 3; box-shadow: var(--shadow-md); opacity: 1; }
  }
}

.mock-card-head { display: flex; gap: 6px; margin-bottom: 16px; }
.mock-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.mock-title { font-weight: 800; color: var(--green-900); margin-bottom: 18px; }

.mock-stat-row { display: flex; gap: 14px; margin-bottom: 20px; }
.mock-stat {
  flex: 1;
  background: var(--cream-100);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-stat-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-500); font-weight: 700; }
.mock-stat-value { font-family: var(--font-mono); font-size: 1.15rem; font-weight: 700; color: var(--green-800); }
.mock-stat-value small { font-family: var(--font-mono); font-size: 0.65rem; font-weight: 600; color: var(--ink-500); margin-left: 2px; }

.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 84px;
  margin-bottom: 16px;
}
.mock-chart span {
  flex: 1;
  background: var(--green-600);
}
.mock-chart span:nth-child(3n) { background: var(--gold-500); }

.mock-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-800);
  background: var(--green-tint);
  padding: 7px 14px;
  border-radius: 0;
  transform: rotate(2deg);
  box-shadow: 2px 2px 0 rgba(18, 41, 28, 0.08);
}

.mock-card-float {
  position: absolute;
  bottom: -18px;
  right: -12px;
  padding: 13px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green-900);
}
.mock-sync-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf6a;
  box-shadow: 0 0 0 4px rgba(76, 175, 106, 0.2);
}

.mock-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--alert-tint);
  color: var(--alert-500);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.ration-bar {
  display: flex;
  height: 16px;
  overflow: hidden;
  margin-bottom: 18px;
}
.ration-bar span { display: block; height: 100%; }
.seg-a { background: var(--green-800); }
.seg-b { background: var(--green-600); }
.seg-c { background: var(--gold-500); }
.seg-d { background: var(--gold-400); }
.seg-e { background: var(--ink-500); }

.ration-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 18px;
}
.ration-legend li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-700);
}
.ration-legend .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

/* Trust strip */
.strip {
  background: var(--cream-100);
  padding: 20px 0;
}
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.strip-item { display: flex; flex-direction: column; gap: 4px; }
.strip-item strong { font-family: var(--font-mono); font-size: 1.05rem; font-weight: 700; color: var(--green-800); letter-spacing: -0.01em; }
.strip-item span { font-size: 0.85rem; color: var(--ink-500); }

/* Sections */
.section { padding: 96px 0; }
.section-alt {
  background:
    linear-gradient(rgba(237, 225, 194, 0.72), rgba(237, 225, 194, 0.72)),
    url("../assets/images/IJ5438_01_standard.jpeg") center / cover no-repeat;
}
.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}
.section-title.center { text-align: center; }
.section-sub {
  max-width: 62ch;
  margin: 0 auto 48px;
  font-size: 1.04rem;
}
.section-sub.center { text-align: center; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}
.card {
  position: relative;
  background: var(--card-paper);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transform: rotate(-0.5deg);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:nth-child(even) { transform: rotate(0.5deg); }
.card:nth-child(3n) { transform: rotate(-0.3deg); }
.card::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 26px;
  width: 38px;
  height: 15px;
  background: var(--gold-tint);
  border: 1px solid var(--gold-500);
  opacity: 0.85;
  transform: rotate(-3deg);
}
.card:nth-child(even)::before { transform: rotate(3deg); left: auto; right: 26px; }
.card:nth-child(3n)::before { background: var(--green-tint); border-color: var(--green-700); }
.card:hover { transform: translateY(-4px) rotate(0deg); box-shadow: var(--shadow-md); }
.card-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.card-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-500);
}
.card-emoji { display: inline-flex; color: var(--green-800); }

/* Custom geometric line icons — angular, faceted, monoline: matches the bull-head
   logo's linework rather than a generic rounded icon-font set. */
.icon-glyph {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linejoin: miter;
  stroke-linecap: square;
  flex-shrink: 0;
}
.icon-glyph-inline {
  width: 18px;
  height: 18px;
  vertical-align: -3px;
}
.card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card p { font-size: 0.94rem; margin: 0; }

.billing-toggle-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.billing-toggle { text-align: center; margin: 28px auto 40px; }
.billing-toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.billing-opt {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-500);
}
.billing-opt small { font-weight: 600; text-transform: none; letter-spacing: 0; }
.billing-opt-annual { color: var(--green-800); }
.toggle-track {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
  background: var(--cream-100);
  border: 1.5px solid var(--border);
}
.toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 14px;
  background: var(--green-800);
  transition: transform 0.15s ease;
}
.billing-toggle-input:checked ~ .billing-toggle .toggle-thumb { transform: translateX(20px); }
.billing-toggle-input:checked ~ .billing-toggle .billing-opt-annual { color: var(--ink-500); }
.billing-toggle-input:checked ~ .billing-toggle .billing-opt-monthly { color: var(--green-800); }
.billing-note {
  margin: 12px auto 0;
  font-size: 0.8rem;
  color: var(--ink-500);
  max-width: 46ch;
}

.price-monthly { display: none; }
.billing-toggle-input:checked ~ .pricing-grid .price-annual { display: none; }
.billing-toggle-input:checked ~ .pricing-grid .price-monthly { display: inline; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
}
.price-card {
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
}
.price-range { font-size: 0.85rem; color: var(--ink-500); margin-bottom: 18px; }
.price-value {
  font-family: var(--font-mono);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--green-800);
  margin-bottom: 16px;
}
.price-value small { font-size: 0.85rem; font-weight: 600; color: var(--ink-500); margin-left: 3px; }
/* Pulls up under .price-value when present (package.html's checkout card only —
   removed from the homepage cards, where a hard total reads as sticker shock). */
.price-per-head { font-size: 0.78rem; font-style: italic; color: var(--ink-500); margin: -10px 0 16px; }
.price-value-custom { margin-bottom: 16px; }
.price-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1.5px dashed var(--border);
}
.price-meta li { font-size: 0.85rem; color: var(--ink-700); }
.price-note { font-size: 0.85rem; margin-bottom: 20px; flex: 1; }
.price-card .btn { align-self: flex-start; }
.pricing-footnote {
  margin: 32px auto 0;
  font-size: 0.82rem;
  color: var(--ink-500);
  max-width: 62ch;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
  margin-top: 48px;
}
.step {
  background: var(--card-paper);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transform: rotate(0.4deg);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.step:nth-child(even) { transform: rotate(-0.4deg); }
.step:hover { transform: translateY(-4px) rotate(0deg); box-shadow: var(--shadow-md); }
.step-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-500);
  margin-bottom: 14px;
}
.step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.step p { font-size: 0.9rem; margin: 0; }

/* Feature rows */
.feature-grid { margin-top: 44px; display: flex; flex-direction: column; gap: 20px; }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feature-copy {
  background: var(--card-paper);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.feature-copy:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-copy h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--green-800); }
.feature-copy p { font-size: 0.94rem; margin: 0; }

/* CTA — full-width dark band with a flat light card holding the form,
   rather than one narrow centered column inside a heavy one-off drop
   shadow box. Same "flat card, no scrapbook decoration" call as the
   /account redesign, applied here to keep the two visually consistent. */
.cta { padding: 88px 0; background: var(--green-800); }
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.cta-copy h2 { color: #fff; font-size: 1.9rem; margin: 0 0 14px; }
.cta-copy p { color: rgba(255,255,255,0.8); max-width: 42ch; margin: 0 0 20px; }
.cta .btn-primary { background: var(--gold-500); color: var(--green-900); box-shadow: none; }
.cta .btn-primary:hover { background: var(--gold-400); }

.cta-form-card {
  transform: none;
  padding: 32px;
}
.cta-form-card::before { content: none; }

.contact-form {
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 8px;
}
.form-optional { text-transform: none; font-weight: 500; color: rgba(255,255,255,0.55); letter-spacing: 0; }
.form-field input,
.form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink-900);
  background: var(--card-paper);
  border: 2px solid var(--green-900);
  border-radius: 0;
  padding: 12px 14px;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.25);
}
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-submit { width: 100%; }
.form-submit:disabled { opacity: 0.7; cursor: wait; transform: none; }
.form-status {
  margin: 14px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.2em;
}
.form-status.is-success { color: var(--gold-400); }
.form-status.is-error { color: #f2a794; }

.cta-fallback { font-size: 0.88rem; margin: 22px 0 0; color: rgba(255,255,255,0.65); }
.cta-fallback a { color: #fff; }

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* Package detail page */
.package-hero { padding-bottom: 8px; }
.package-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 20px;
}
.package-back:hover { color: var(--green-700); text-decoration: underline; }
.package-title { margin-bottom: 8px; }
.package-tagline { color: var(--ink-500); font-size: 1.05rem; margin: 0; }

.package-body-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
.package-included-col .eyebrow,
.package-pricing-col .eyebrow { margin-bottom: 14px; }
.package-included-col .section-title,
.package-pricing-col .section-title { margin: 0 0 12px; }
.package-included-col .section-sub,
.package-pricing-col .section-sub { margin: 0 0 8px; }
.package-included-col .included-grid { grid-template-columns: 1fr; margin-top: 28px; }
.package-pricing-col {
  position: sticky;
  top: 108px;
}

.pricing-grid-single { display: block; margin: 24px 0 0; max-width: 420px; }
.pricing-grid-single .price-card { max-width: 420px; }
.pricing-grid-single .price-card .btn { width: 100%; margin-top: 4px; }
.package-pricing-col .pricing-footnote { margin: 20px 0 0; max-width: none; }

.payment-methods {
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1.5px dashed var(--border);
  max-width: 420px;
}
.payment-methods-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-500);
  margin-bottom: 10px;
}
.payment-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.payment-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green-900);
  background: var(--gold-tint);
  border: 1.5px solid var(--border);
}
.payment-note { font-size: 0.85rem; color: var(--ink-500); margin: 0; }

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.included-item {
  background: var(--card-paper);
  border: 1.5px solid var(--border);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.included-item h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.included-item h3::before {
  content: "✓";
  color: var(--green-700);
  font-weight: 800;
}
.included-item p { font-size: 0.9rem; margin: 0; }

.faq-list {
  max-width: 720px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--card-paper);
  border: 1.5px solid var(--border);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--green-900);
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 800;
  color: var(--gold-500);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin: 12px 0 0; font-size: 0.92rem; }

@media (max-width: 700px) {
  .included-grid { grid-template-columns: 1fr; }
}

/* Checkout modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 39, 23, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 300;
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: var(--card-paper);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-500);
}
.modal-close:hover { color: var(--green-800); }
.modal-tabs { display: flex; gap: 8px; margin-bottom: 24px; }
.modal-tab {
  flex: 1;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--cream-100);
  border: 1.5px solid var(--border);
  color: var(--ink-500);
  cursor: pointer;
}
.modal-tab.is-active { background: var(--green-800); color: #fff; border-color: var(--green-800); }
.modal-tab-disabled {
  cursor: not-allowed;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.tab-soon { font-size: 0.6rem; font-weight: 600; text-transform: none; letter-spacing: 0; }
.modal-title { margin-bottom: 8px; }
.modal-intro { font-size: 0.92rem; margin-bottom: 24px; }

/* Light-background variant of the (otherwise dark-CTA-styled) contact
   form — used by the checkout modal and the homepage CTA's form card. */
.modal .form-field label, .cta-form-card .form-field label { color: var(--green-800); }
.modal .form-optional, .cta-form-card .form-optional { color: var(--ink-500); }
.modal .form-status.is-success, .cta-form-card .form-status.is-success { color: var(--green-700); }
.modal .form-status.is-error, .cta-form-card .form-status.is-error { color: var(--alert-500); }

/* Footer — full-width, left-to-right column layout rather than a single
   centered stack, so the panel actually uses the page's width. */
.site-footer {
  background: var(--cream-100);
  color: var(--ink-500);
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-700);
  margin: 0 0 12px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--green-900); font-size: 1.1rem; }
.footer-tagline { font-size: 0.9rem; margin: 8px 0 4px; }
.footer-aside {
  font-family: var(--font-hand);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-700);
  margin: 0;
  transform: rotate(-1deg);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.footer-copy { font-size: 0.8rem; margin: 0; color: var(--ink-500); }

/* Responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .package-body-grid { grid-template-columns: 1fr; gap: 40px; }
  .package-pricing-col { position: static; top: auto; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; }

  /* Nav switches to the hamburger menu here, not at the phone breakpoint
     below — full-width nav (logo + 5 links + CTA) has no room to shrink
     into and was overflowing the header (and dragging the whole page into
     horizontal scroll with it) anywhere from ~760px up to here. */
  .main-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-050);
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
    gap: 16px;
  }
  .site-header.nav-open .header-cta {
    display: flex;
    position: absolute;
    top: calc(100% + 168px);
    left: 24px;
  }
}

@media (max-width: 760px) {
  .card-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: 1fr; text-align: center; }
  .hero { padding: 56px 0 40px; }
  .section { padding: 64px 0; }
  .cta-inner { padding: 48px 28px; border-radius: var(--radius-md); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .footer-legal-links { align-items: center; }
}

/* Account page (/account) — a functional dashboard, not a marketing
   section: explicit, modest type sizes throughout rather than the
   hero-scale h1/.section-title rules the rest of the site uses, and no
   .eyebrow ribbon per card (one per card looked fine; five on one screen
   did not). */
.text-muted { color: var(--ink-500); }
.account-hero { padding: 48px 0 0; }
.account-title {
  font-size: 1.7rem;
  margin: 0 0 4px;
}
.account-narrow { max-width: 480px; margin: 0 auto; text-align: center; }
.account-card-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 0 0 12px;
}
.account-card-title-lg {
  font-size: 1.3rem;
  text-transform: none;
  color: var(--green-900);
}
.account-identity-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-900);
  margin: 0 0 2px;
}
.account-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  align-items: start;
  font-size: 0.92rem;
}
/* A dashboard reads better without the scrapbook rotate/tape decoration
   the marketing .card uses elsewhere — same border/paper/shadow, flat. */
.account-grid .card,
.account-narrow .card { transform: none; padding: 22px; }
.account-grid .card::before,
.account-narrow .card::before { content: none; }
.account-grid .card:hover { transform: translateY(-2px); }
.account-grid .card p { margin: 0 0 10px; }
#account-identity-card { grid-column: 1 / -1; }
.account-page .form-status.is-success { color: var(--green-700); }
.account-page .form-status.is-error { color: var(--alert-500); }
.billing-history-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.billing-history-row:last-child { border-bottom: none; }
.package-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.package-option:last-of-type { border-bottom: none; }
.status-pill {
  display: inline-block;
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 2px;
  background: var(--gold-tint);
  color: var(--ink-700);
}
.status-pill.status-good { background: var(--green-tint); color: var(--green-800); }
.status-pill.status-bad { background: var(--alert-tint); color: var(--alert-500); }

/* Legal pages (Privacy Policy, Terms of Service, Cookie Policy) — long-form
   reading, not a marketing section: explicit modest heading sizes (same
   reasoning as the /account redesign — this site's default h1/h2 are
   hero-scale) and a narrow prose column instead of the full .wrap width. */
.legal-hero { padding: 48px 0 24px; }
.legal-title { font-size: 1.7rem; margin: 0 0 4px; }
.legal-updated { color: var(--ink-500); font-size: 0.85rem; margin: 0; }
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 0.98rem;
}
.legal-content h2 {
  font-size: 1.2rem;
  margin: 2em 0 0.6em;
  color: var(--green-900);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1.02rem;
  margin: 1.4em 0 0.5em;
  color: var(--ink-900);
}
.legal-content p { margin: 0 0 1em; }
.legal-content ul, .legal-content ol {
  margin: 0 0 1em;
  padding-left: 1.4em;
  list-style: disc;
}
.legal-content ol { list-style: decimal; }
.legal-content li { margin-bottom: 0.4em; }
.legal-content a { text-decoration: underline; color: var(--green-800); }
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.4em;
  font-size: 0.9rem;
}
.legal-content th, .legal-content td {
  text-align: left;
  padding: 8px 10px;
  border: 1px solid var(--border);
  vertical-align: top;
}
.legal-content th { background: var(--cream-100); font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; }
.legal-content hr { border: none; border-top: 1px solid var(--border); margin: 2em 0; }
.legal-content .legal-note {
  font-size: 0.88rem;
  color: var(--ink-500);
  font-style: italic;
}
/* Flags a value the business owner still needs to supply — visible on the
   live page itself, not just in source, so a placeholder can't ship
   unnoticed. */
.legal-placeholder {
  background: var(--gold-tint);
  border: 1px solid var(--gold-500);
  color: var(--ink-700);
  padding: 1px 6px;
  font-size: 0.85em;
  font-weight: 600;
}

/* Footer link columns (Legal, Company) */
.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.8;
}
.footer-legal-links a { text-decoration: underline; }
