:root {
  --ink: #141817;
  --navy: #0c171c;
  --navy-2: #14242b;
  --cream: #f7f2e8;
  --paper: #ffffff;
  --muted: #6d716e;
  --line: #e4dfd3;
  --gold: #b8924a;
  --gold-soft: #dcc38a;
  --green: #24634f;
  --green-dark: #174739;
  --shadow: 0 28px 90px rgba(11, 18, 21, 0.17);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img,
svg {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(20px, calc((100vw - 1120px) / 2));
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(12, 23, 28, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(220, 195, 138, 0.72);
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a:hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: transparent;
  color: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 13, 16, 0.92) 0%, rgba(10, 19, 23, 0.68) 48%, rgba(10, 19, 23, 0.28) 100%),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1900&q=88") center / cover;
  transform: scale(1.01);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 78% 18%, rgba(220, 195, 138, 0.14), transparent 34%);
  content: "";
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 132px 0 88px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green-dark);
}

.eyebrow.light {
  color: #d8b665;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 500;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 500;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button,
.price-card button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 13px 20px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary,
.price-card button {
  background: linear-gradient(135deg, var(--green), #1a4f40);
  color: #fff;
  box-shadow: 0 18px 42px rgba(19, 72, 55, 0.32);
}

.button.primary:hover,
.price-card button:hover {
  background: var(--green-dark);
}

.button.secondary {
  border: 1px solid rgba(220, 195, 138, 0.54);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(820px, 100%);
  margin: 48px 0 0;
  overflow: hidden;
  border: 1px solid rgba(220, 195, 138, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-stats div {
  padding: 20px;
  background: rgba(7, 16, 20, 0.48);
}

.hero-stats dt {
  margin: 0 0 4px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 850;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 62vh;
  align-items: center;
  padding: 132px 0 82px;
  color: #fff;
  overflow: hidden;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 13, 16, 0.92), rgba(12, 23, 28, 0.58)),
    var(--page-image) center / cover;
  content: "";
}

.page-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
  content: "";
}

.blog-hero {
  --page-image: url("https://images.unsplash.com/photo-1600607687644-aac4c3eac7f4?auto=format&fit=crop&w=1900&q=86");
}

.signup-hero {
  --page-image: url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=1900&q=86");
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

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

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(18px, 2vw, 22px);
}

.section {
  padding: 104px 0;
}

.problem-band {
  padding-top: 68px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 58px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
}

.section-copy,
.section-heading p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.statement {
  border-left: 6px solid var(--gold);
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff, var(--cream));
  box-shadow: var(--shadow);
}

.statement span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.statement strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.08;
}

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

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

.metric,
.feature-grid article,
.steps article,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fffdfa);
  padding: 26px;
}

.metric {
  min-height: 210px;
}

.metric span,
.price-card p {
  display: block;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin: 12px 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  font-weight: 500;
}

.metric p,
.feature-grid p,
.steps p,
.price-card li,
.terms-list span,
.text-stack p {
  color: var(--muted);
}

.metric.strong {
  background: linear-gradient(145deg, var(--navy), #17282f);
  color: #fff;
}

.metric.strong strong,
.metric.strong p {
  color: #fff;
}

.metric.strong span {
  color: #d8b665;
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(12, 23, 28, 0.97), rgba(20, 36, 43, 0.95)),
    url("https://images.unsplash.com/photo-1600566753376-12c8ab7fb75b?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: #fff;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark .section-heading p,
.section-dark .feature-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.section-dark .feature-grid article {
  border-color: rgba(220, 195, 138, 0.18);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: rgba(220, 195, 138, 0.14);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 850;
}

.steps {
  counter-reset: steps;
}

.steps article {
  position: relative;
  min-height: 230px;
}

.steps span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  color: #fff;
  font-weight: 850;
}

.model-section,
.section-muted {
  background: #f8f6f0;
}

.pipeline-visual {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(12, 23, 28, 0.84), rgba(12, 23, 28, 0.84)),
    url("https://images.unsplash.com/photo-1600047509807-ba8f99d2cdde?auto=format&fit=crop&w=1200&q=86") center / cover;
  box-shadow: var(--shadow);
}

.pipeline-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  align-items: center;
  min-height: 76px;
  padding: 12px;
  border: 1px solid rgba(220, 195, 138, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.pipeline-row span,
.pipeline-row strong,
.pipeline-row em {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.pipeline-row span {
  background: rgba(255, 255, 255, 0.18);
}

.pipeline-row strong {
  background: rgba(184, 146, 74, 0.88);
}

.pipeline-row em {
  background: rgba(47, 127, 98, 0.86);
}

.text-stack {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.text-stack p {
  margin: 0;
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 440px;
  box-shadow: 0 16px 44px rgba(12, 23, 28, 0.08);
}

.price-card.is-selected {
  outline: 3px solid rgba(184, 146, 74, 0.28);
}

.price-card.recommended {
  border-color: rgba(184, 146, 74, 0.58);
  transform: translateY(-10px);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(184, 146, 74, 0.14);
  color: #7e612b;
  font-size: 12px;
  font-weight: 850;
}

.price-card h3 {
  margin: 14px 0 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
}

.price-card h3 span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.price-card strong {
  display: block;
  margin: 8px 0 20px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
}

.price-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 850;
}

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

.roi-section {
  background:
    linear-gradient(180deg, rgba(247, 242, 232, 0.96), rgba(247, 242, 232, 0.96)),
    url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.case-section {
  background: #fff;
}

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

.case-card {
  display: grid;
  gap: 18px;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 246, 240, 0.92)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1200&q=80") center / cover;
  padding: 30px;
  box-shadow: 0 16px 44px rgba(12, 23, 28, 0.08);
}

.featured-case {
  border-color: rgba(184, 146, 74, 0.56);
  background:
    linear-gradient(180deg, rgba(12, 23, 28, 0.88), rgba(12, 23, 28, 0.82)),
    url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1200&q=84") center / cover;
  color: #fff;
}

.case-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.case-topline span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-topline strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1;
  text-align: right;
}

.case-card h3 {
  max-width: 560px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
}

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

.featured-case h3,
.featured-case .case-topline strong {
  color: #fff;
}

.featured-case p {
  color: rgba(255, 255, 255, 0.78);
}

.featured-case .case-topline span {
  color: var(--gold-soft);
}

.case-result {
  align-self: end;
  border-left: 4px solid var(--gold);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.68);
}

.featured-case .case-result {
  background: rgba(255, 255, 255, 0.09);
}

.case-result span {
  display: block;
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-case .case-result span {
  color: var(--gold-soft);
}

.blog-section {
  background: #fff;
}

.blog-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  border: 1px solid rgba(184, 146, 74, 0.28);
  border-radius: var(--radius);
  background: #f8f6f0;
  padding: 16px 18px;
}

.blog-tools p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.blog-tools a,
.blog-read-button {
  color: var(--green-dark);
  font-weight: 850;
}

.featured-post {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(248, 246, 240, 0.88)),
    url("https://images.unsplash.com/photo-1600047509807-ba8f99d2cdde?auto=format&fit=crop&w=1400&q=84") center / cover;
  padding: 34px;
  box-shadow: var(--shadow);
}

.featured-post h2 {
  max-width: 760px;
}

.featured-post p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.featured-post small,
.article-panel small {
  display: block;
  margin-top: 14px;
  color: var(--green-dark);
  font-weight: 850;
}

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

.blog-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fffdfa);
  padding: 24px;
  box-shadow: 0 16px 44px rgba(12, 23, 28, 0.07);
}

.blog-card span {
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.post-type {
  width: fit-content;
  border-radius: 999px;
  background: rgba(184, 146, 74, 0.14);
  color: #7e612b;
  padding: 5px 9px;
  font-size: 11px;
  text-transform: uppercase;
}

.blog-media {
  overflow: hidden;
  border: 1px solid rgba(184, 146, 74, 0.3);
  border-radius: var(--radius);
  background: var(--navy);
  aspect-ratio: 16 / 9;
}

.blog-media iframe,
.blog-media video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.blog-card p {
  color: var(--muted);
}

.blog-card a {
  margin-top: 12px;
  color: var(--green-dark);
  font-weight: 850;
}

.blog-read-button {
  width: fit-content;
  margin-top: auto;
  border: 0;
  border-bottom: 1px solid rgba(184, 146, 74, 0.5);
  background: transparent;
  padding: 0 0 3px;
  cursor: pointer;
}

.article-section {
  padding-top: 0;
  background: #fff;
}

.article-panel,
.admin-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fffdfa);
  padding: 34px;
  box-shadow: var(--shadow);
}

.article-panel {
  max-width: 860px;
}

.article-panel .blog-media {
  margin: 24px 0;
}

.article-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.admin-section {
  background: #f8f6f0;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}


.admin-steps {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding-left: 20px;
  color: var(--muted);
}

.code-card pre {
  overflow-x: auto;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  padding: 20px;
  line-height: 1.55;
}

.signup-section {
  background: #f8f6f0;
}

.mobile-back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  border: 1px solid rgba(184, 146, 74, 0.5);
  border-radius: 999px;
  background: #fff;
  color: var(--green-dark);
  padding: 11px 15px;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(12, 23, 28, 0.08);
}

.mobile-back-home::before {
  content: "←";
}

.mobile-back-home:hover {
  background: var(--navy);
  color: #fff;
}

.signup-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.signup-summary {
  position: sticky;
  top: 110px;
  border: 1px solid rgba(184, 146, 74, 0.4);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(12, 23, 28, 0.9), rgba(12, 23, 28, 0.82)),
    url("https://images.unsplash.com/photo-1600566753376-12c8ab7fb75b?auto=format&fit=crop&w=1000&q=82") center / cover;
  color: #fff;
  padding: 30px;
  box-shadow: var(--shadow);
}

.back-home-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  border: 1px solid rgba(220, 195, 138, 0.42);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 850;
}

.back-home-link::before {
  content: "←";
}

.back-home-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.signup-summary h2 {
  color: #fff;
}

.signup-summary p {
  color: rgba(255, 255, 255, 0.76);
}

.summary-metrics {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.summary-metrics span {
  display: grid;
  gap: 3px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 16px;
}

.summary-metrics strong {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.signup-form {
  box-shadow: var(--shadow);
}

.funnel-form {
  gap: 22px;
  min-height: 620px;
}

.funnel-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  border-radius: var(--radius);
  background: #f8f6f0;
  padding: 8px;
}

.funnel-site-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: -8px;
}

.funnel-site-links a {
  border-bottom: 1px solid rgba(184, 146, 74, 0.5);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
}

.funnel-site-links a:hover {
  color: var(--ink);
}

.funnel-progress button {
  position: relative;
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
  cursor: pointer;
  background: transparent;
}

.funnel-progress button.is-active {
  background: var(--navy);
  color: #fff;
}

.funnel-progress button.is-complete {
  background: rgba(36, 99, 79, 0.12);
  color: var(--green-dark);
}

.funnel-step {
  display: none;
  animation: funnelFade 220ms ease;
}

.funnel-step.is-active {
  display: grid;
  gap: 18px;
}

.funnel-step h2 {
  font-size: clamp(30px, 3vw, 44px);
}

.funnel-copy {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.funnel-options {
  display: grid;
  gap: 12px;
}

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

.funnel-option {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.funnel-option:hover {
  border-color: rgba(184, 146, 74, 0.58);
  box-shadow: 0 14px 34px rgba(12, 23, 28, 0.08);
  transform: translateY(-1px);
}

.funnel-option input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--green);
}

.funnel-option:has(input:checked) {
  border-color: rgba(36, 99, 79, 0.75);
  box-shadow: 0 16px 38px rgba(36, 99, 79, 0.16);
}

.funnel-option span {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-weight: 700;
}

.funnel-option strong {
  color: var(--ink);
  font-size: 18px;
}

.funnel-option.is-recommended {
  border-color: rgba(184, 146, 74, 0.6);
  background: linear-gradient(180deg, #fff, #fbf7ef);
}

.funnel-recommendation {
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #f8f6f0;
  padding: 18px 20px;
}

.funnel-result-card {
  border: 1px solid rgba(184, 146, 74, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(12, 23, 28, 0.94), rgba(20, 36, 43, 0.9)),
    url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=1200&q=84") center / cover;
  color: #fff;
  padding: 26px;
}

.funnel-result-card > span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.funnel-result-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1;
}

.funnel-result-card p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.funnel-result-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
}

.funnel-result-card div {
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
}

.funnel-result-card dt {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.funnel-result-card dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.funnel-recommendation span {
  display: block;
  margin-bottom: 5px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.funnel-recommendation strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

.funnel-recommendation p {
  margin: 6px 0 0;
  color: var(--muted);
}

.funnel-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.funnel-actions .button {
  min-width: 150px;
}

.funnel-actions [hidden] {
  display: none;
}

.button.secondary.funnel-back {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.button.secondary.funnel-back:hover {
  border-color: rgba(184, 146, 74, 0.58);
  background: #f8f6f0;
  color: var(--ink);
}

@keyframes funnelFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.checkbox-label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-weight: 650;
}

.checkbox-label input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--green);
}

.impact-grid {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.impact-grid span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(21, 33, 42, 0.1);
  border-radius: var(--radius);
  background: #fff;
}

.impact-grid strong {
  color: var(--green-dark);
}

.calculator,
.lead-form {
  display: grid;
  gap: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  padding: 26px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(47, 127, 98, 0.16);
}

input[type="range"] {
  min-height: 34px;
  padding: 0;
  accent-color: var(--green);
}

.range-value {
  color: var(--muted);
  font-weight: 700;
}

.calc-results {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 4px;
}

.calc-results div {
  padding: 16px;
  border-radius: var(--radius);
  background: #f8f6f0;
}

.calc-results span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.calc-results strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.light-cards article {
  box-shadow: 0 12px 34px rgba(12, 28, 39, 0.06);
}

.terms-list {
  display: grid;
  gap: 14px;
}

.seo-section {
  background: #fff;
}

.seo-keyword-panel {
  border: 1px solid rgba(184, 146, 74, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(12, 23, 28, 0.92), rgba(12, 23, 28, 0.86)),
    url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=1100&q=82") center / cover;
  color: #fff;
  padding: 30px;
  box-shadow: var(--shadow);
}

.seo-keyword-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
}

.seo-keyword-panel ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.seo-keyword-panel li {
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.faq-section {
  background: #f8f6f0;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 20px 22px;
  box-shadow: 0 12px 30px rgba(12, 23, 28, 0.05);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

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

.terms-list div {
  display: grid;
  gap: 4px;
  padding: 20px;
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: var(--cream);
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(6, 13, 16, 0.95), rgba(12, 23, 28, 0.76)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1800&q=88") center / cover;
  color: #fff;
}

.contact-section h2,
.contact-section p {
  color: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row:has(> label:only-child) {
  grid-template-columns: 1fr;
}

.form-button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
}

.lead-form .form-status.is-error {
  color: #9d2f2f;
}

.site-footer {
  background: #050c0f;
  color: rgba(255, 255, 255, 0.76);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 880px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(16, 35, 49, 0.98);
    padding: 10px;
  }

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

  .site-nav a {
    padding: 14px;
  }

  .split,
  .split.reverse,
  .metric-grid,
  .feature-grid,
  .pricing-grid,
  .case-grid,
  .blog-grid,
  .featured-post,
  .admin-layout,
  .signup-layout,
  .steps {
    grid-template-columns: 1fr;
  }

  .signup-summary {
    position: static;
  }

  .price-card.recommended {
    transform: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding: 108px 0 70px;
  }

  .hero-actions,
  .footer-inner {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 66px 0;
  }

  .metric,
  .feature-grid article,
  .steps article,
  .price-card,
  .case-card,
  .blog-card,
  .featured-post,
  .article-panel,
  .admin-card,
  .seo-keyword-panel,
  .signup-summary,
  .calculator,
  .lead-form {
    padding: 20px;
  }

  .case-topline {
    display: grid;
  }

  .case-topline strong {
    text-align: left;
  }

  .pipeline-row {
    grid-template-columns: 1fr;
  }

  .impact-grid span {
    display: grid;
    justify-content: stretch;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .funnel-progress {
    grid-template-columns: 1fr 1fr;
  }

  .answer-grid,
  .funnel-result-card dl {
    grid-template-columns: 1fr;
  }

  .funnel-actions {
    flex-direction: column;
  }

  .funnel-actions .button {
    width: 100%;
  }

  .blog-tools {
    align-items: flex-start;
    flex-direction: column;
  }
}
