:root {
  color-scheme: light;
  --bg: #f3efe6;
  --bg-alt: #ece4d6;
  --paper: rgba(255, 252, 247, 0.82);
  --ink: #1f2320;
  --muted: #5f665f;
  --line: rgba(63, 72, 61, 0.12);
  --soft-line: rgba(63, 72, 61, 0.08);
  --green: #2d6a4f;
  --green-deep: #153b2c;
  --sand: #dfc8a6;
  --clay: #c86f55;
  --gold: #d8a93c;
  --blue: #4a7a8f;
  --shadow-lg: 0 26px 70px rgba(28, 32, 27, 0.12);
  --shadow-md: 0 16px 38px rgba(28, 32, 27, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(216, 169, 60, 0.16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(45, 106, 79, 0.14), transparent 30%),
    radial-gradient(circle at 70% 86%, rgba(200, 111, 85, 0.12), transparent 26%),
    linear-gradient(180deg, var(--bg) 0%, #f7f3eb 42%, #f3efe6 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  min-height: 100vh;
  text-rendering: geometricPrecision;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(8px);
}

body::before {
  top: 6rem;
  right: -5rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(45, 106, 79, 0.18), transparent 70%);
}

body::after {
  left: -7rem;
  bottom: 6rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(200, 111, 85, 0.15), transparent 70%);
}

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

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

main {
  position: relative;
  z-index: 0;
}

.site-header,
.hero,
.section,
.proof-strip,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 18px;
  margin-top: 14px;
  border: 1px solid rgba(63, 72, 61, 0.1);
  border-radius: calc(var(--radius-xl) + 4px);
  background: rgba(255, 252, 247, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  color: #fff;
  background:
    linear-gradient(145deg, var(--green-deep), var(--green)),
    var(--green-deep);
  box-shadow: 0 14px 28px rgba(21, 59, 44, 0.25);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a,
.primary-btn,
.secondary-btn,
.text-btn,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.nav-links a {
  color: var(--muted);
  background: transparent;
}

.nav-links a:hover,
.primary-btn:hover,
.secondary-btn:hover,
.text-btn:hover {
  transform: translateY(-1px);
}

.nav-links .nav-cta,
.primary-btn {
  color: #fff;
  background: linear-gradient(145deg, var(--green-deep), var(--green));
  box-shadow: 0 16px 34px rgba(21, 59, 44, 0.22);
}

.secondary-btn {
  color: var(--ink);
  background: rgba(255, 252, 247, 0.85);
  border-color: var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.secondary-btn:hover {
  border-color: rgba(45, 106, 79, 0.26);
}

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

.hero {
  padding: 40px 0 22px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.86fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 8px;
  width: 8px;
  height: calc(100% - 32px);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), rgba(45, 106, 79, 0.18));
  opacity: 0.8;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 12px;
  border: 1px solid rgba(45, 106, 79, 0.12);
  border-radius: 999px;
  color: var(--green-deep);
  background: rgba(255, 252, 247, 0.76);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 9.5ch;
  font-size: clamp(3.2rem, 6.8vw, 6.3rem);
  line-height: 0.9;
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1;
}

h3 {
  font-size: 1.55rem;
  line-height: 1;
}

p {
  line-height: 1.7;
}

.lede {
  max-width: 34rem;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.guide-teaser {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 18px 20px 20px;
  border: 1px solid rgba(45, 106, 79, 0.12);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.9), rgba(243, 237, 225, 0.8));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.guide-teaser strong,
.guide-teaser span {
  display: block;
}

.guide-teaser strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  line-height: 0.95;
}

.guide-teaser span {
  color: var(--muted);
  line-height: 1.65;
}

.guide-teaser-body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.9fr);
  gap: 14px;
  align-items: stretch;
}

.guide-cover {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(63, 72, 61, 0.08);
  background:
    radial-gradient(circle at top right, rgba(45, 106, 79, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 242, 231, 0.9));
}

.guide-cover span {
  color: var(--green-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-cover strong {
  font-size: 1.85rem;
}

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

.guide-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
  list-style: none;
  border-radius: 18px;
  border: 1px solid rgba(63, 72, 61, 0.08);
  background: rgba(255, 252, 247, 0.82);
}

.guide-points li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.4;
}

.guide-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--green-deep), var(--green));
  box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.08);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(63, 72, 61, 0.12);
  background: rgba(255, 252, 247, 0.82);
  color: var(--green-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.cta-row,
.form-actions,
.offer-actions,
.crm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.system-preview,
.hero-card,
.step-card,
.deliverables article,
.after-grid article,
.feature-card,
.service-row,
.offer-band,
.offer,
.guide-panel,
.lead-table-wrap,
.metric-grid div,
.faq-list details {
  border: 1px solid rgba(63, 72, 61, 0.12);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.system-preview {
  overflow: hidden;
  position: relative;
  transform: perspective(1200px) rotateY(-7deg) rotateX(2deg);
  transform-origin: center;
  margin-top: 8px;
}

.system-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 0, rgba(216, 169, 60, 0.12), transparent 40%),
    radial-gradient(circle at 100% 0, rgba(45, 106, 79, 0.16), transparent 42%);
  pointer-events: none;
}

.preview-topbar {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--soft-line);
  background: linear-gradient(180deg, rgba(247, 241, 230, 0.95), rgba(240, 233, 221, 0.78));
}

.preview-topbar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--clay);
}

.preview-topbar span:nth-child(2) {
  background: var(--gold);
}

.preview-topbar span:nth-child(3) {
  background: var(--green);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

.preview-panel {
  min-height: 146px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(63, 72, 61, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 245, 236, 0.85));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.preview-panel p,
.preview-panel span {
  margin: 0;
  color: var(--muted);
}

.preview-panel p {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.preview-panel strong {
  display: block;
  margin: 18px 0 8px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.62rem;
  line-height: 1;
}

.preview-content {
  border-top: 5px solid var(--green);
}

.preview-form {
  border-top: 5px solid var(--gold);
}

.preview-page {
  border-top: 5px solid var(--clay);
}

.preview-crm {
  border-top: 5px solid var(--blue);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(63, 72, 61, 0.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.9), rgba(241, 234, 221, 0.78));
  box-shadow: var(--shadow-md);
}

.proof-strip div {
  padding: 22px 20px;
  border-right: 1px solid var(--soft-line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
}

.proof-strip span {
  margin-top: 6px;
  color: var(--muted);
}

.section {
  padding: 28px 0 0;
}

.section > *:not(.section-heading) {
  position: relative;
}

.split,
.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: start;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 24px;
}

.section-heading h2 {
  max-width: 13ch;
}

.text-stack p,
.step-card p,
.deliverables p,
.after-grid p,
.feature-card p,
.service-row p,
.offer-band p,
.offer p,
.guide-copy p,
.section-text,
.fine-print {
  color: var(--muted);
}

.text-stack p {
  max-width: 43rem;
  margin-top: 0;
  font-size: 1.05rem;
}

.steps,
.deliverables,
.feature-grid,
.service-list,
.after-grid {
  display: grid;
  gap: 14px;
}

.steps,
.deliverables,
.feature-grid,
.service-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.step-card,
.deliverables article,
.after-grid article,
.feature-card,
.service-row {
  padding: 20px;
  min-height: 168px;
}

.step-card span,
.after-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  margin-bottom: 16px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, var(--green-deep), var(--green));
  font-weight: 800;
}

.after-grid span {
  background: rgba(45, 106, 79, 0.12);
  color: var(--green-deep);
}

.deliverables article,
.after-grid article,
.feature-card,
.service-row {
  border-top: 4px solid var(--green);
}

.deliverables article:nth-child(2),
.after-grid article:nth-child(2),
.feature-card:nth-child(2),
.service-row:nth-child(2) {
  border-top-color: var(--clay);
}

.deliverables article:nth-child(3),
.after-grid article:nth-child(3),
.feature-card:nth-child(3),
.service-row:nth-child(3) {
  border-top-color: var(--blue);
}

.deliverables article:nth-child(4),
.feature-card:nth-child(4),
.service-row:nth-child(4) {
  border-top-color: var(--gold);
}

.offer-band,
.offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 0 0, rgba(45, 106, 79, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(255, 252, 247, 0.96), rgba(237, 230, 217, 0.82));
}

.price {
  margin: 0;
  color: var(--green-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.8rem;
  line-height: 0.95;
}

.offer-actions {
  justify-content: flex-start;
  align-content: start;
}

.offer-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.offer-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.8);
  border: 1px solid rgba(63, 72, 61, 0.1);
  color: var(--green-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.guide-panel {
  padding: 30px;
}

.guide-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.guide-copy {
  max-width: 46rem;
}

.guide-preview {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(45, 106, 79, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(216, 169, 60, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(244, 238, 226, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.guide-preview h3 {
  font-size: 1.9rem;
}

.guide-preview ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-preview li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.5;
}

.guide-preview li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--green-deep), var(--green));
  box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.08);
}

.guide-preview-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.guide-preview-footer span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.8);
  border: 1px solid rgba(63, 72, 61, 0.1);
  color: var(--green-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.offer-hero-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  align-content: start;
}

.offer-hero-card h2 {
  font-size: clamp(3rem, 7vw, 4.8rem);
}

.offer-hero-stack {
  display: grid;
  gap: 8px;
  padding: 16px 0 4px;
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}

.offer-hero-stack strong {
  color: var(--green-deep);
  font-size: 1.2rem;
}

.offer-hero-stack p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.4;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--green-deep), var(--green));
  box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.08);
}

.offer-hero-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.offer-hero-footer span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.8);
  border: 1px solid rgba(63, 72, 61, 0.1);
  color: var(--green-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.guide-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.guide-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.guide-form label:last-of-type,
.form-actions {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(63, 72, 61, 0.16);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

input:focus,
textarea:focus {
  border-color: rgba(45, 106, 79, 0.46);
  box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.12);
}

.fine-print {
  margin: 14px 0 0;
  font-size: 0.96rem;
}

.operator-panel {
  margin-top: 24px;
  border-top: 1px solid var(--soft-line);
}

.operator-panel summary {
  padding: 18px 0;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.crm-panel,
.metrics-panel {
  padding-top: 18px;
}

.crm-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.crm-header h3,
.metrics-panel h3 {
  margin: 0;
}

.crm-overview {
  padding-top: 18px;
}

.crm-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.crm-path article {
  display: grid;
  gap: 10px;
  min-height: 180px;
  padding: 22px;
  border-top: 1px solid rgba(45, 106, 79, 0.18);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(242, 236, 226, 0.9));
}

.crm-path span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.crm-path h3,
.crm-path p {
  margin: 0;
}

.crm-path p {
  color: var(--muted);
}

.lead-table-wrap {
  width: 100%;
  margin-top: 16px;
  overflow-x: auto;
}

.lead-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.lead-table th,
.lead-table td {
  padding: 14px 14px;
  border-bottom: 1px solid rgba(63, 72, 61, 0.08);
  text-align: left;
  vertical-align: top;
}

.lead-table th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.stage-select-wrap {
  display: block;
}

.stage-select {
  width: 100%;
  min-width: 150px;
  padding: 10px 12px;
  border: 1px solid rgba(63, 72, 61, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.metric-grid div {
  padding: 16px;
  min-height: 96px;
}

.metric-grid strong,
.metric-grid span {
  display: block;
}

.metric-grid strong {
  color: var(--green-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  line-height: 1;
}

.metric-grid span {
  margin-top: 6px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
  background: rgba(255, 252, 247, 0.88);
}

.faq-list summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 46px;
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.admin-hero {
  padding-bottom: 12px;
}

.admin-summary {
  padding-top: 24px;
}

.admin-panel {
  margin-bottom: 40px;
}

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

@media (max-width: 1080px) {
  .hero-inner,
  .split,
  .grid-2,
  .offer-band,
  .offer,
  .crm-path {
    grid-template-columns: 1fr;
  }

  .steps,
  .deliverables,
  .feature-grid,
  .service-list,
  .after-grid,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
  }

  .hero-copy::before {
    left: 0;
  }

  .system-preview {
    transform: none;
  }
}

@media (max-width: 720px) {
  .site-header,
  .hero,
  .section,
  .proof-strip,
  .site-footer {
    width: min(100% - 20px, 1180px);
  }

  .site-header {
    top: 8px;
    padding: 14px;
    border-radius: 24px;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: clamp(2.9rem, 16vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .preview-grid,
  .deliverables,
  .after-grid,
  .feature-grid,
  .service-list,
  .guide-form,
  .steps,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--soft-line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .guide-panel,
  .offer-band,
  .offer {
    padding: 20px;
  }

  .crm-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    padding-bottom: 38px;
  }

  .nav-links {
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-links a,
  .primary-btn,
  .secondary-btn,
  .nav-cta {
    min-height: 42px;
    padding-inline: 15px;
  }

  .hero-meta {
    gap: 8px;
  }

  .guide-teaser {
    padding: 16px 18px;
  }

  .guide-teaser strong {
    font-size: 1.65rem;
  }

  .guide-teaser-body {
    grid-template-columns: 1fr;
  }

  .guide-cover strong {
    font-size: 1.7rem;
  }

  .guide-intro {
    grid-template-columns: 1fr;
  }

  .guide-preview h3 {
    font-size: 1.7rem;
  }

  .offer-hero-card {
    padding: 20px;
  }
}
