:root {
  --ink: #07131f;
  --navy: #0c1d2e;
  --panel: #10263a;
  --panel-2: #15334d;
  --paper: #f7fbff;
  --white: #ffffff;
  --muted: #a9b9c8;
  --soft: #d8e6f2;
  --line: rgba(216, 230, 242, 0.16);
  --line-dark: rgba(7, 19, 31, 0.1);
  --accent: #48e0c2;
  --accent-2: #79a8ff;
  --gold: #f2c96d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 24px 60px rgba(7, 19, 31, 0.12);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

input,
textarea {
  font: inherit;
}

.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;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.section-pad {
  padding: 84px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 19, 31, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: 74px;
}

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

.brand-logo {
  display: block;
  width: 250px;
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: var(--ink);
  background: linear-gradient(135deg, var(--accent), #d7fff6);
  box-shadow: 0 12px 30px rgba(72, 224, 194, 0.25);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(72, 224, 194, 0.48);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), #bdfdf1);
  color: #06121c;
  box-shadow: 0 14px 34px rgba(72, 224, 194, 0.2);
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(72, 224, 194, 0.28);
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 48px;
  background:
    radial-gradient(circle at 78% 18%, rgba(72, 224, 194, 0.16), transparent 34%),
    radial-gradient(circle at 12% 24%, rgba(121, 168, 255, 0.16), transparent 30%),
    linear-gradient(145deg, #07131f 0%, #0c1d2e 52%, #102235 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: center;
  gap: 54px;
}

.eyebrow,
.section-kicker,
.category {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 5.55rem;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-subhead {
  max-width: 690px;
  margin-bottom: 18px;
  color: var(--soft);
  font-size: 1.22rem;
  line-height: 1.45;
  font-weight: 600;
}

.hero-support {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.tagline {
  margin-bottom: 0;
  color: var(--white);
  font-weight: 800;
}

.trust-statement {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.workflow-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.workflow-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.workflow-header span,
.workflow-header strong {
  display: block;
}

.workflow-header span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.workflow-header strong {
  color: var(--accent);
  font-size: 0.92rem;
}

.workflow-steps {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.workflow-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(7, 19, 31, 0.58);
}

.workflow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 35px;
  bottom: -13px;
  width: 2px;
  height: 13px;
  background: rgba(72, 224, 194, 0.5);
}

.workflow-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(72, 224, 194, 0.28);
  border-radius: var(--radius);
  background: rgba(72, 224, 194, 0.1);
  color: var(--accent);
  font-weight: 900;
}

.workflow-step strong,
.workflow-step p {
  display: block;
  margin: 0;
}

.workflow-step strong {
  color: var(--white);
}

.workflow-step p {
  color: var(--muted);
  font-size: 0.9rem;
}

.workflow-tracker {
  margin: 0 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.tracker-row {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.7fr;
  gap: 10px;
  padding: 12px 14px;
  color: var(--soft);
  font-size: 0.84rem;
}

.tracker-row + .tracker-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tracker-head {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.system-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.system-topbar {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.system-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.system-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: 18px;
}

.mock-page,
.flow-panel,
.lead-card,
.sheet-card,
.metric-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(7, 19, 31, 0.72);
}

.mock-page {
  min-height: 360px;
  padding: 22px;
}

.mock-badge {
  display: inline-flex;
  margin-bottom: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(72, 224, 194, 0.12);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 900;
}

.mock-title {
  width: 78%;
  height: 76px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0.26));
}

.mock-line,
.mock-form span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.mock-line {
  width: 60%;
  margin-bottom: 12px;
}

.mock-line.wide {
  width: 92%;
}

.mock-form {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

.mock-form span {
  height: 38px;
  border-radius: var(--radius);
}

.mock-form .mock-button {
  width: 58%;
  background: linear-gradient(135deg, var(--accent), #bdfdf1);
}

.flow-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
}

.qr-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  width: 142px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--white);
}

.qr-card span {
  aspect-ratio: 1;
  border-radius: 2px;
  background: var(--ink);
}

.qr-card span:nth-child(2),
.qr-card span:nth-child(7),
.qr-card span:nth-child(9),
.qr-card span:nth-child(12),
.qr-card span:nth-child(15) {
  background: rgba(7, 19, 31, 0.18);
}

.lead-card {
  padding: 18px;
}

.lead-card strong,
.lead-card span {
  display: block;
}

.lead-card span {
  color: var(--muted);
}

.sheet-card {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.sheet-card div {
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(121, 168, 255, 0.24), rgba(72, 224, 194, 0.16));
}

.metric-card {
  position: absolute;
  right: -14px;
  bottom: -22px;
  padding: 18px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
}

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

.metric-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.metric-card strong {
  color: var(--white);
  font-size: 1.15rem;
}

.value-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.value-grid div {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 20px;
  border-left: 1px solid var(--line);
  color: var(--soft);
  font-weight: 800;
  text-align: center;
}

.value-grid div:last-child {
  border-right: 1px solid var(--line);
}

.problem,
.philosophy {
  background: var(--paper);
  color: var(--ink);
}

.split-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 72px;
}

.problem .section-kicker,
.philosophy .section-kicker {
  color: #1b7d70;
}

.section-copy h2,
.pricing-copy h2 {
  color: var(--ink);
}

.section-copy p,
.pricing-copy p {
  max-width: 780px;
  color: #405266;
  font-size: 1.22rem;
}

.build,
.process {
  background: linear-gradient(180deg, var(--navy), var(--ink));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.card-grid,
.example-grid,
.process-grid {
  display: grid;
  gap: 22px;
}

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

.feature-card,
.example-card,
.process-step,
.pricing-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  min-height: 288px;
  padding: 28px;
}

.feature-card p,
.process-step p {
  color: var(--muted);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  border: 1px solid rgba(72, 224, 194, 0.28);
  border-radius: var(--radius);
  color: var(--accent);
  background: rgba(72, 224, 194, 0.08);
  font-weight: 900;
}

.examples,
.credibility,
.audience,
.faq,
.pricing {
  background: var(--paper);
  color: var(--ink);
}

.examples .eyebrow,
.credibility .eyebrow,
.audience .eyebrow,
.faq .eyebrow,
.pricing .eyebrow {
  color: #1b7d70;
}

.examples h2,
.credibility h2,
.faq h2,
.audience h2 {
  color: var(--ink);
}

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

.example-card {
  min-width: 0;
  overflow: hidden;
  border-color: var(--line-dark);
  background: var(--white);
  color: var(--ink);
}

.preview {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  min-height: 270px;
  background:
    linear-gradient(135deg, rgba(7, 19, 31, 0.04), rgba(7, 19, 31, 0)),
    #eaf2f8;
}

.preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 420ms ease, filter 420ms ease;
}

.preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 19, 31, 0.08), rgba(7, 19, 31, 0.62));
  opacity: 0;
  transition: opacity 240ms ease;
}

.preview-indicator {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 19, 31, 0.72);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  font-size: 0.88rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.example-card:hover .preview img,
.example-card:focus-within .preview img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.example-card:hover .preview::after,
.example-card:focus-within .preview::after,
.example-card:hover .preview-indicator,
.example-card:focus-within .preview-indicator {
  opacity: 1;
}

.example-card:hover .preview-indicator,
.example-card:focus-within .preview-indicator {
  transform: translateY(0);
}

.cleaning-preview {
  background:
    linear-gradient(135deg, rgba(72, 224, 194, 0.26), rgba(255, 255, 255, 0.2)),
    #edf8f5;
}

.landscape-preview {
  background:
    linear-gradient(135deg, rgba(47, 114, 73, 0.24), rgba(242, 201, 109, 0.2)),
    #f4f1e7;
}

.training-preview {
  background:
    linear-gradient(135deg, rgba(121, 168, 255, 0.24), rgba(72, 224, 194, 0.2)),
    #edf3ff;
}

.example-body {
  padding: 28px;
}

.example-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.example-meta .category {
  margin: 0;
}

.demo-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(27, 125, 112, 0.18);
  border-radius: 999px;
  background: rgba(72, 224, 194, 0.1);
  color: #1b7d70;
  font-size: 0.74rem;
  font-weight: 900;
}

.example-body h3 {
  color: var(--ink);
  font-size: 1.35rem;
}

.example-body p,
.example-body dd {
  color: #536579;
}

.example-body dl {
  margin: 22px 0 24px;
}

.example-body dt {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.example-body dd {
  margin: 0;
}

.btn-card {
  width: 100%;
}

.credibility {
  padding-top: 0;
}

.credibility-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  padding-top: 72px;
  border-top: 1px solid var(--line-dark);
}

.credibility-copy {
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(7, 19, 31, 0.07);
}

.credibility-copy p {
  color: #405266;
  font-size: 1.1rem;
}

.credibility-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.credibility-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink);
  font-weight: 900;
}

.credibility-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1b7d70;
  font-weight: 900;
}

.lead-management {
  background: var(--paper);
  color: var(--ink);
  padding-top: 0;
}

.lead-management-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: center;
  padding-top: 72px;
  border-top: 1px solid var(--line-dark);
}

.lead-management .eyebrow {
  color: #1b7d70;
}

.lead-management h2 {
  color: var(--ink);
}

.lead-management-copy p {
  color: #405266;
  font-size: 1.08rem;
}

.lead-management-copy .section-subhead {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
}

.spreadsheet-note {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(27, 125, 112, 0.16);
  border-radius: var(--radius);
  background: rgba(72, 224, 194, 0.08);
  color: var(--ink) !important;
  font-weight: 900;
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 800;
}

.workflow-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1b7d70;
  font-weight: 900;
}

.tracker-visual {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(7, 19, 31, 0.12);
}

.tracker-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-dark);
  background: linear-gradient(135deg, rgba(72, 224, 194, 0.13), rgba(121, 168, 255, 0.08));
}

.tracker-toolbar span,
.tracker-toolbar strong {
  font-weight: 900;
}

.tracker-toolbar span {
  color: var(--ink);
}

.tracker-toolbar strong {
  color: #1b7d70;
  font-size: 0.86rem;
}

.pipeline-summary {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, auto);
  gap: 10px;
  align-items: center;
  padding: 14px 14px 4px;
}

.pipeline-summary p,
.pipeline-summary span {
  margin: 0;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(7, 19, 31, 0.07);
  border-radius: 999px;
  background: rgba(72, 224, 194, 0.07);
}

.pipeline-summary p {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.pipeline-summary span {
  color: #405266;
  font-size: 0.78rem;
  font-weight: 900;
}

.tracker-table {
  margin: 10px;
  overflow-x: auto;
  border: 1px solid rgba(7, 19, 31, 0.08);
  border-radius: 6px;
}

.tracker-table-row {
  display: grid;
  grid-template-columns: 34px 0.9fr 0.9fr 1fr 1fr 1.05fr;
  min-width: 640px;
  gap: 0;
  align-items: center;
  color: #405266;
  font-size: 0.88rem;
  font-weight: 700;
}

.tracker-table-row span {
  min-height: 48px;
  display: flex;
  align-items: center;
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 10px 12px;
  border-right: 1px solid rgba(7, 19, 31, 0.08);
  border-bottom: 1px solid rgba(7, 19, 31, 0.08);
}

.tracker-table-row span:last-child {
  border-right: 0;
}

.tracker-table-head {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tracker-letters span,
.tracker-table-row span:first-child {
  justify-content: center;
  background: rgba(7, 19, 31, 0.035);
  color: #6b7786;
  font-size: 0.78rem;
  font-weight: 900;
}

.tracker-table-row:last-child span {
  border-bottom: 0;
}

.tracker-table mark {
  display: inline-flex;
  align-items: center;
  position: relative;
  min-height: 28px;
  padding: 0 24px 0 10px;
  border-radius: 999px;
  background: rgba(72, 224, 194, 0.14);
  color: #1b7d70;
  font-size: 0.86rem;
  font-weight: 900;
}

.tracker-table mark::after {
  content: "⌄";
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.78rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.audience-grid span {
  min-height: 82px;
  display: grid;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(7, 19, 31, 0.06);
  font-weight: 800;
}

.practice {
  background:
    radial-gradient(circle at 82% 18%, rgba(72, 224, 194, 0.12), transparent 28%),
    linear-gradient(180deg, var(--ink), var(--navy));
}

.practice .section-heading p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.practice-card {
  min-height: 304px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.practice-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  border: 1px solid rgba(72, 224, 194, 0.28);
  border-radius: var(--radius);
  background: rgba(72, 224, 194, 0.08);
  color: var(--accent);
}

.practice-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.practice-card p:last-child {
  color: var(--muted);
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 28px;
}

.process-step span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 36px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
}

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

.pricing-copy p strong {
  color: var(--ink);
}

.pricing-note {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.pricing-note p {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
}

.pricing-card {
  border-color: var(--line-dark);
  background: var(--white);
  color: var(--ink);
  padding: 32px;
}

.pricing-card h3 {
  color: var(--ink);
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 30px;
  color: #405266;
  font-weight: 700;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(72, 224, 194, 0.15);
}

.faq {
  padding-top: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 54px;
  padding-top: 72px;
  border-top: 1px solid var(--line-dark);
}

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

.faq-list details {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 19, 31, 0.06);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 22px 56px 22px 24px;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #1b7d70;
  font-size: 1.3rem;
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "";
  width: 12px;
  height: 2px;
  background: #1b7d70;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: #405266;
}

.philosophy-line {
  color: var(--ink) !important;
  font-weight: 900;
}

.final-cta {
  padding: 88px 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(72, 224, 194, 0.16), transparent 34%),
    linear-gradient(135deg, #07131f, #10263a);
}

.final-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.final-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.final-panel::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(72, 224, 194, 0.28);
  transform: rotate(24deg);
}

.final-panel h2,
.final-panel p,
.final-panel .btn,
.inquiry-form {
  position: relative;
  z-index: 1;
}

.final-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--soft);
  font-size: 1.18rem;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(7, 19, 31, 0.62);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

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

.form-field label {
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 900;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: none;
  padding: 13px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(72, 224, 194, 0.72);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(72, 224, 194, 0.12);
}

.inquiry-form .btn {
  width: 100%;
  margin-top: 4px;
}

.form-success,
.backup-contact {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-success {
  padding: 12px 14px;
  border: 1px solid rgba(72, 224, 194, 0.28);
  border-radius: var(--radius);
  background: rgba(72, 224, 194, 0.08);
  color: var(--soft);
  font-weight: 800;
}

.backup-contact a {
  color: var(--accent);
  font-weight: 900;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #050d16;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid strong {
  display: block;
  color: var(--white);
}

.footer-grid p {
  margin: 4px 0 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

  .btn,
  .reveal {
    transition: none;
  }

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

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 19, 31, 0.96);
    box-shadow: var(--shadow);
  }

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

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

  .hero-grid,
  .split-grid,
  .faq-grid,
  .lead-management-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .build-grid,
  .process-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .value-grid div:nth-child(2) {
    border-right: 1px solid var(--line);
  }
}

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

  .section-pad {
    padding: 64px 0;
  }

  .hero {
    padding: 54px 0 58px;
  }

  .brand-logo {
    width: 214px;
  }

  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .final-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-form {
    padding: 18px;
  }

  .system-content,
  .example-grid,
  .credibility-grid,
  .lead-management-grid,
  .build-grid,
  .practice-grid,
  .process-grid,
  .audience-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .mock-page {
    min-height: 300px;
  }

  .flow-panel {
    grid-template-columns: 0.7fr 1fr;
    align-items: center;
  }

  .sheet-card {
    grid-column: span 2;
  }

  .metric-card {
    position: static;
    margin-top: 14px;
  }

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

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

  .pipeline-summary p {
    grid-column: span 2;
  }

  .value-grid div,
  .value-grid div:last-child,
  .value-grid div:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .preview {
    min-height: 230px;
  }

  .preview img {
    object-fit: contain;
    background: var(--white);
  }

  .footer-grid {
    display: grid;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: 178px;
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.28rem;
  }

  .system-shell {
    border-radius: 12px;
  }

  .workflow-shell {
    border-radius: 12px;
  }

  .system-content {
    padding: 12px;
  }

  .workflow-steps {
    padding: 12px;
  }

  .workflow-step {
    grid-template-columns: 38px 1fr;
    padding: 12px;
  }

  .workflow-icon {
    width: 36px;
    height: 36px;
  }

  .workflow-step:not(:last-child)::after {
    left: 30px;
  }

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

  .flow-panel {
    grid-template-columns: 1fr;
  }

  .sheet-card {
    grid-column: auto;
  }
}
