:root {
  --ink: #111317;
  --ink-2: #222831;
  --muted: #606874;
  --line: #dfddd7;
  --paper: #f7f4ef;
  --paper-2: #eeebe4;
  --white: #ffffff;
  --black: #050609;
  --green: #11705d;
  --green-deep: #0b4238;
  --blue: #3157d5;
  --amber: #b96f20;
  --rose: #b74458;
  --shadow: 0 24px 70px rgba(17, 19, 23, .14);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 12px 32px;
  border-bottom: 1px solid rgba(17, 19, 23, .1);
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 40px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .98;
}

.nav-links a,
.button,
.eyebrow,
.control-summary,
label,
.status {
  font-size: .86rem;
  font-weight: 720;
}

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

.nav-links a {
  color: rgba(17, 19, 23, .76);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(380px, .84fr);
  min-height: min(650px, calc(100svh - 120px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .88) 45%, rgba(255, 255, 255, .22) 67%, rgba(255, 255, 255, 0) 100%),
    var(--white);
  color: var(--ink);
}

.hero-media {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .82) 0%, rgba(255, 255, 255, .36) 25%, rgba(255, 255, 255, 0) 52%),
    linear-gradient(180deg, rgba(255, 255, 255, .18) 0%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, .2) 100%);
  pointer-events: none;
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: min(650px, calc(100svh - 120px));
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 3;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  min-width: 0;
  max-width: none;
  box-sizing: border-box;
  margin: 0;
  padding: 54px 32px 48px max(32px, calc((100vw - 1180px) / 2 + 42px));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
}

.eyebrow.light {
  color: #8ee7c7;
}

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

.hero h1,
.section h2 {
  margin: 0;
  max-width: 900px;
  font-size: 4.85rem;
  line-height: .96;
  font-weight: 760;
}

.hero h1 {
  max-width: 100%;
  font-size: clamp(3.4rem, 4.7vw, 5.25rem);
  line-height: .92;
}

.hero-line {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--ink-2);
  font-size: 1.28rem;
  line-height: 1.32;
  font-weight: 650;
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-definition {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: .98rem;
  font-weight: 680;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.form-actions {
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.ghost {
  border-color: rgba(17, 19, 23, .16);
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
}

.section {
  padding: 84px max(32px, calc((100vw - 1180px) / 2));
}

.intro-section {
  background: var(--white);
}

.section-grid,
.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: start;
}

.section h2 {
  color: var(--ink);
  font-size: 3.15rem;
  line-height: 1.04;
}

.lead-stack p,
.section-heading p,
.mission-copy p,
.capture-copy p,
.metrics-copy p,
.media-copy p,
.business-note,
.cta-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.lead-stack p {
  margin: 0 0 18px;
}

.split-section {
  background: var(--paper);
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.centered h2,
.section-heading.centered p {
  margin-left: auto;
  margin-right: auto;
}

.mission-section {
  background: #f7f5f1;
}

.mission-layout,
.capture-layout,
.metrics-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}

.mission-copy {
  max-width: 660px;
}

.mission-headline {
  max-width: 620px;
  color: var(--ink) !important;
  font-size: 2rem !important;
  line-height: 1.1;
  font-weight: 760;
}

.mission-lead {
  color: var(--ink) !important;
  font-size: 1.26rem !important;
  font-weight: 740;
}

.mission-copy p {
  margin: 18px 0 0;
}

.comparison-card {
  padding: 28px;
  border: 1px solid #e6e0d5;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(23, 23, 23, .08);
}

.comparison-card h3 {
  margin-bottom: 18px;
  color: #171717;
}

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

.ai-column {
  min-height: 300px;
  padding: 24px;
  border: 1px solid #e6e0d5;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(23, 23, 23, .045);
}

.ai-column.physical {
  border-color: #e6e0d5;
  background: #fbf8f2;
}

.ai-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #edf1ff;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 820;
  line-height: 1;
  white-space: nowrap;
}

.ai-column.physical .ai-icon {
  background: #f3e6d2;
  color: #8b5a20;
}

.ai-icon.control {
  background: #eff8f5;
  color: var(--green-deep);
}

.ai-column h4,
.partner-callout h4 {
  margin: 0;
  color: #171717;
  font-size: 1.02rem;
}

.ai-subhead {
  margin: 6px 0 0 !important;
  color: #667085 !important;
  font-size: .92rem !important;
  font-weight: 720;
}

.ai-column ul,
.good-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.ai-column li {
  margin: 9px 0;
  color: #667085;
}

.ai-column p {
  margin: 14px 0 0;
  color: #667085;
}

.partner-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 16px;
  padding: 22px;
  border: 1px solid #e6e0d5;
  border-radius: 20px;
  background: #faf7f2;
  box-shadow: 0 12px 32px rgba(23, 23, 23, .045);
}

.partner-callout .ai-icon {
  flex: 0 0 auto;
}

.partner-callout p {
  margin: 8px 0 0;
  color: #667085;
}

.mission-line {
  margin: 34px 0 0;
  padding: 22px 24px 22px 28px;
  border: 1px solid #e6e0d5;
  border-left: 5px solid #b7792e;
  border-radius: 20px;
  background: #f5f1ea;
  color: #171717;
  font-size: 1.08rem;
  font-weight: 740;
  box-shadow: 0 14px 34px rgba(23, 23, 23, .055);
}

.capture-section {
  padding-left: max(32px, calc((100vw - 1180px) / 2));
  padding-right: max(32px, calc((100vw - 1180px) / 2));
  background: var(--paper);
}

.capture-layout {
  grid-template-columns: minmax(420px, .72fr) minmax(0, 1.28fr);
  gap: 52px;
  align-items: center;
}

.capture-copy {
  max-width: 600px;
}

.capture-copy p {
  margin: 18px 0 0;
}

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

.capture-card {
  min-height: 178px;
  padding: 20px;
}

.capture-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 820;
}

.capture-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  width: 100%;
}

.capture-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.metrics-section {
  background: var(--paper-2);
}

.metrics-layout {
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
}

.metrics-copy {
  max-width: 560px;
}

.metrics-note {
  padding: 16px 18px;
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--white);
  font-weight: 680;
}

.metric-panel {
  display: grid;
  gap: 16px;
}

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

.metric-grid span {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 740;
  box-shadow: 0 10px 28px rgba(17, 19, 23, .05);
}

.good-card {
  padding: 24px;
  border-radius: var(--radius);
  background: #080b0f;
  box-shadow: var(--shadow);
}

.good-card h3 {
  color: var(--white);
}

.good-card ul {
  color: rgba(255, 255, 255, .76);
}

.good-card li {
  margin: 8px 0;
}

.data-section {
  background: var(--white);
}

.data-review-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.data-review-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.produce-section {
  background: var(--paper);
}

.value-grid {
  display: grid;
  gap: 14px;
}

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

.value-card {
  min-height: 220px;
  padding: 22px;
}

.value-card-wide {
  grid-column: span 2;
  min-height: 170px;
  border-color: rgba(17, 112, 93, .22);
  background: #eff8f5;
}

.dashboard-guardrail {
  margin: 0 0 24px;
  padding: 18px 20px;
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
  font-weight: 680;
}

.value-dashboard-preview {
  margin: 0 0 18px;
}

.produce-section .value-dashboard-preview {
  margin: 0 0 18px;
}

.value-dashboard-preview figcaption {
  grid-template-columns: 1fr;
  gap: 18px;
}

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

.dashboard-metrics span {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: .88rem;
  font-weight: 720;
}

.privacy-posture {
  margin: 0;
  padding: 16px 18px;
  border-radius: 0;
  background: #080b0f;
  color: rgba(255, 255, 255, .78) !important;
  font-weight: 680;
}

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

.feature-card,
.capture-card,
.value-card,
.difficulty-card,
.review-grid article,
.trust-grid article,
.rules-card,
.start-grid article,
.mock-card,
.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(17, 19, 23, .06);
}

.feature-card {
  min-height: 330px;
  padding: 22px 20px;
}

.feature-number {
  display: block;
  margin-bottom: 42px;
  color: var(--blue);
  font-size: .95rem;
  font-weight: 800;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.2;
}

.feature-card p,
.capture-card p,
.value-card p,
.difficulty-card p,
.review-grid p,
.trust-grid p,
.rules-card p,
.start-grid p,
.mock-card p,
.support-card p,
.pricing-card p,
.control-grid p,
figcaption p,
.mini-grid span {
  color: var(--muted);
}

.feature-card p,
.capture-card p,
.value-card p,
.difficulty-card p,
.review-grid p,
.trust-grid p,
.rules-card p,
.start-grid p,
.mock-card p,
.support-card p,
.pricing-card p,
.control-grid p,
figcaption p {
  margin: 12px 0 0;
}

.pilot-section {
  background: var(--white);
}

.raw-hours-planner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 18px;
}

.raw-hours-planner article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 36px rgba(17, 19, 23, .06);
}

.raw-hours-planner span {
  display: block;
  margin-bottom: 24px;
  color: var(--green-deep);
  font-size: .82rem;
  font-weight: 820;
}

.raw-hours-planner strong {
  display: block;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.18;
}

.raw-hours-planner p {
  margin: 12px 0 0;
  color: var(--muted);
}

.pilot-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(17, 19, 23, .06);
}

.pilot-table div {
  display: grid;
  grid-template-columns: minmax(170px, .36fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.pilot-table div:last-child {
  border-bottom: 0;
}

.pilot-table span,
.pilot-table strong {
  padding: 17px 20px;
}

.pilot-table span {
  background: var(--paper);
  color: var(--green-deep);
  font-size: .86rem;
  font-weight: 780;
}

.pilot-table strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 720;
  line-height: 1.35;
}

.difficulty-section {
  background: var(--paper-2);
}

.examples-section .difficulty-section {
  margin-top: 70px;
  padding-top: 70px;
  border-top: 1px solid var(--line);
  background: transparent;
}

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

.difficulty-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
  background: var(--white);
}

.difficulty-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--green);
}

.difficulty-card.medium::before {
  background: var(--blue);
}

.difficulty-card.hard::before {
  background: var(--rose);
}

.difficulty-visual {
  margin: -24px -24px 22px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.difficulty-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.difficulty-level {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green-deep);
  font-size: .86rem;
  font-weight: 780;
}

.difficulty-card.medium .difficulty-level {
  color: var(--blue);
}

.difficulty-card.hard .difficulty-level {
  color: var(--rose);
}

.difficulty-card strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
}

.review-section {
  background: var(--white);
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: start;
}

.review-copy {
  max-width: 590px;
}

.review-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.review-note {
  padding: 16px 18px;
  margin-top: 22px;
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--paper);
  font-weight: 680;
}

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

.review-grid article {
  min-height: 190px;
  padding: 20px;
  background: var(--paper);
}

.dashboard-preview {
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.dashboard-screen {
  overflow: visible;
  background: #f3f6fb;
}

.dashboard-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.dashboard-preview figcaption {
  display: grid;
  grid-template-columns: minmax(180px, .32fr) minmax(0, 1fr);
  gap: 18px;
  min-height: auto;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.dashboard-preview figcaption p {
  margin: 0;
}

.trust-section,
.controls-section,
.get-back-section,
.rules-section,
.report-section,
.vertical-section {
  background: var(--white);
}

.exclusions-section,
.start-section,
.visual-proof-section {
  background: var(--paper);
}

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

.control-summary span {
  display: block;
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.control-summary strong,
.control-summary small {
  display: block;
}

.control-summary img {
  display: block;
  width: 38px;
  height: 38px;
  margin: 0 0 16px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.control-summary strong {
  font-size: 1rem;
  line-height: 1.22;
}

.control-summary small {
  margin-top: 9px;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.4;
}

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

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

.trust-grid article,
.start-grid article,
.mock-card {
  min-height: 210px;
  padding: 20px;
}

.start-grid article {
  padding: 26px;
  overflow: hidden;
  background: var(--white);
}

.site-card-media {
  margin: -26px -26px 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.site-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.start-grid ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.45;
}

.start-grid li {
  margin: 8px 0;
}

.site-type-card h3 {
  margin-bottom: 16px;
}

.site-type-card details {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.site-type-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--green);
  cursor: pointer;
  font-size: .95rem;
  font-weight: 760;
  list-style: none;
}

.site-type-card summary::-webkit-details-marker {
  display: none;
}

.site-type-card summary::after {
  content: "+";
  display: inline-grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(17, 112, 93, .22);
  border-radius: 50%;
  background: #eff8f5;
  color: var(--green);
  font-weight: 760;
}

.site-type-card details[open] summary::after {
  content: "-";
}

.exclusion-grid,
.report-grid,
.fit-checklist {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.exclusion-grid span,
.report-grid span,
.fit-checklist span,
.vertical-links a {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 720;
  box-shadow: 0 10px 28px rgba(17, 19, 23, .05);
}

.exclusion-grid span::before,
.fit-checklist span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
}

.rules-layout,
.report-layout,
.vertical-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}

.rules-layout p,
.report-layout p,
.vertical-layout p {
  color: var(--muted);
  font-size: 1.08rem;
}

.rules-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  padding: 1px;
  background: var(--line);
}

.rules-card div {
  min-height: 142px;
  padding: 20px;
  background: var(--paper);
}

.rules-card span,
.mock-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--green-deep);
  font-size: .86rem;
  font-weight: 780;
}

.controls-block {
  max-width: 900px;
  margin: 46px 0 18px;
}

.controls-block p,
.path-note {
  color: var(--muted);
  font-size: 1.08rem;
}

.controls-section .rules-layout {
  grid-template-columns: 1fr;
}

.controls-support {
  margin-top: 52px;
  padding-top: 52px;
  border-top: 1px solid var(--line);
}

.support-section {
  background: var(--white);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: start;
}

.support-copy {
  max-width: 520px;
}

.support-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.support-copy .support-lead {
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 760;
}

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

.support-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 36px rgba(17, 19, 23, .06);
}

.support-card-wide {
  grid-column: 1 / -1;
  min-height: 150px;
  background: #eff8f5;
  border-color: rgba(17, 112, 93, .22);
}

.media-section {
  display: block;
  background: var(--white);
}

.media-copy {
  max-width: 880px;
}

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

.mini-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.mini-grid strong,
figcaption span {
  display: block;
  color: var(--green-deep);
  font-size: .9rem;
  font-weight: 780;
}

.mini-grid span {
  display: block;
  margin-top: 8px;
  font-size: .94rem;
}

.diagram-frame {
  width: 100%;
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.diagram-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.examples-section {
  padding-left: max(32px, calc((100vw - 1180px) / 2));
  padding-right: max(32px, calc((100vw - 1180px) / 2));
  background: var(--paper-2);
}

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

.video-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(17, 19, 23, .1);
}

.video-shell {
  aspect-ratio: 4 / 3;
  background: var(--black);
}

.video-shell.landscape {
  aspect-ratio: 16 / 9;
}

.video-shell video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

figcaption {
  min-height: 118px;
  padding: 18px;
}

.risk-video-card {
  border-color: rgba(183, 68, 88, .34);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(17, 19, 23, .1);
}

.risk-video-card figcaption {
  background: #fff7f8;
  border-top: 1px solid rgba(183, 68, 88, .2);
}

.risk-video-card figcaption span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--rose);
  color: var(--white);
  font-size: .78rem;
  font-weight: 820;
}

.risk-video-card figcaption strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.25;
}

.risk-video-card figcaption p {
  margin: 10px 0 0;
  color: var(--muted);
}

.risk-video-card .risk-caveat {
  padding: 10px 12px;
  border: 1px solid rgba(183, 68, 88, .24);
  border-left: 4px solid var(--rose);
  border-radius: var(--radius);
  background: rgba(183, 68, 88, .08);
  color: #5d2530;
  font-size: .9rem;
  font-weight: 720;
}

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

.mock-card {
  min-height: 238px;
  background: var(--white);
}

.mock-device-row {
  display: flex;
  gap: 8px;
  margin: 24px 0;
}

.mock-device-row i {
  display: block;
  width: 42px;
  height: 58px;
  border-radius: 8px;
  background: linear-gradient(180deg, #10151c, #3157d5);
}

.bar {
  height: 14px;
  margin: 13px 0;
  border-radius: 999px;
  background: var(--line);
}

.bar.good {
  width: 88%;
  background: var(--green);
}

.bar.mid {
  width: 66%;
  background: var(--blue);
}

.bar.low {
  width: 38%;
  background: var(--rose);
}

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

.map-line {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 34px 8px 30px;
}

.map-line::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 4px;
  right: 4px;
  height: 3px;
  border-radius: 999px;
  background: var(--line);
}

.map-line i {
  position: relative;
  z-index: 1;
  display: block;
  width: 19px;
  height: 19px;
  border: 3px solid var(--green);
  border-radius: 50%;
  background: var(--white);
}

.briefing-rows i {
  display: block;
  height: 12px;
  margin: 12px 0;
  border-radius: 999px;
  background: var(--line);
}

.briefing-rows i:nth-child(1) {
  width: 92%;
}

.briefing-rows i:nth-child(2) {
  width: 76%;
}

.briefing-rows i:nth-child(3) {
  width: 84%;
}

.briefing-rows i:nth-child(4) {
  width: 58%;
}

.dark-section {
  background: #080b0f;
  color: var(--white);
}

.dark-section .section-heading h2,
.dark-section h3 {
  color: var(--white);
}

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

.control-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .14);
}

.control-grid article {
  min-height: 220px;
  padding: 24px;
  background: #10151c;
}

.control-grid p {
  color: rgba(255, 255, 255, .68);
}

.business-section {
  background: var(--white);
}

.section-subhead {
  margin: 36px 0 18px;
  color: var(--ink);
  font-size: 1.35rem;
}

.get-back-section .data-review-visual {
  margin-top: 28px;
}

.get-back-section .value-grid {
  margin-bottom: 30px;
}

.payment-block {
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.payment-block .section-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.08;
}

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

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

.pricing-card {
  min-height: 210px;
  padding: 24px;
}

.pricing-card.accent {
  border-color: rgba(49, 87, 213, .34);
  background: #edf1ff;
}

.business-note {
  max-width: 760px;
  margin: 28px auto 0;
  text-align: center;
}

.vertical-links {
  display: grid;
  gap: 10px;
}

.vertical-links a {
  position: relative;
  padding-right: 42px;
  text-decoration: none;
}

.vertical-links a::after {
  content: "->";
  position: absolute;
  right: 16px;
  color: var(--green);
}

.vertical-links a:hover,
.vertical-links a:focus-visible {
  border-color: rgba(17, 112, 93, .4);
  background: #eff8f5;
}

.fit-section {
  background: var(--paper);
}

.fit-grid {
  align-items: center;
}

.fit-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.fit-grid p,
.fit-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.fit-checklist {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.fit-checklist span {
  position: relative;
  display: flex;
  min-height: 74px;
  align-items: center;
  padding: 16px 18px 16px 42px;
  font-size: 1rem;
  line-height: 1.25;
}

.fit-checklist span::before {
  position: absolute;
  left: 20px;
  top: 50%;
  margin: -4px 0 0;
}

.fit-button {
  width: max-content;
  min-height: 52px;
  margin-top: 18px;
  background: var(--ink);
  color: var(--white);
}

.common-starts {
  margin-top: 58px;
  margin-bottom: 18px;
}

.path-note {
  max-width: 900px;
  margin: 24px 0 0;
  font-weight: 680;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
  background:
    radial-gradient(circle at 12% 12%, rgba(183, 121, 46, .08), transparent 28%),
    linear-gradient(115deg, #f7f5f1 0%, #fbfaf7 52%, #f3efe7 100%);
  color: var(--ink);
}

.start-conversation-section {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
}

.start-heading,
.start-conversation-section .mock-grid {
  grid-column: 1 / -1;
}

.start-heading h2 {
  color: var(--ink);
}

.start-heading p {
  color: var(--muted);
}

.start-conversation-section .mock-grid {
  margin-bottom: 20px;
}

.start-conversation-section .mock-card {
  background: rgba(255, 255, 255, .96);
}

.cta-copy {
  align-self: start;
  max-width: 620px;
  padding-top: 20px;
}

.cta-section .cta-copy h2 {
  max-width: 660px;
  color: var(--ink);
  font-family: inherit;
  font-size: 4.65rem;
  line-height: .9;
  letter-spacing: 0;
  font-weight: 760;
}

.cta-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.cta-section .eyebrow.light {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6f654f;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cta-section .eyebrow.light::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent);
}

.cta-privacy-note {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 34px;
}

.cta-note-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(17, 112, 93, .18);
  background: rgba(255, 255, 255, .66);
  color: var(--green-deep);
}

.cta-note-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-privacy-note p {
  margin: 0;
  font-size: 1.02rem;
}

.cta-trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(23, 23, 23, .12);
}

.cta-trust-row span {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(17, 19, 23, .09);
  border-radius: 10px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  font-size: .9rem;
  font-weight: 780;
  line-height: 1.15;
}

.cta-trust-row svg {
  width: 32px;
  height: 32px;
  padding: 6px;
  border: 1px solid rgba(17, 112, 93, .18);
  border-radius: 999px;
  background: #eff8f5;
  color: var(--green-deep);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-trust-row strong {
  display: block;
}

.cta-form-panel {
  min-width: 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 26px 72px rgba(17, 19, 23, .1);
  backdrop-filter: blur(16px);
}

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

.field.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, .74);
}

.cta-form-panel label {
  color: var(--ink);
  font-size: .92rem;
  font-weight: 760;
  line-height: 1.25;
}

input,
select,
textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(17, 19, 23, .13);
  border-radius: 10px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, .82);
  color: var(--ink);
  font: inherit;
  outline: none;
}

select option {
  color: var(--ink);
}

textarea {
  min-height: 108px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(102, 112, 133, .68);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(183, 121, 46, .5);
  box-shadow: 0 0 0 4px rgba(183, 121, 46, .12);
}

.cta-section .button.primary {
  width: 100%;
  min-height: 60px;
  border-color: var(--ink);
  border-radius: 10px;
  background: linear-gradient(180deg, #1c2228 0%, #080b0f 100%);
  color: var(--white);
  font-size: 1.02rem;
  box-shadow: 0 16px 36px rgba(8, 11, 15, .22);
}

.status {
  max-width: 100%;
  color: var(--muted);
}

.cta-form-panel .form-actions {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: 22px;
  text-align: center;
}

.schedule-helper {
  color: var(--accent-dark);
  font-size: .96rem;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 24px 32px 34px;
  background: #080b0f;
  color: rgba(255, 255, 255, .56);
  font-size: .82rem;
}

.site-footer p {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.private-gate-page {
  min-height: 100svh;
  background: radial-gradient(circle at 50% 0%, rgba(183, 111, 32, .12), transparent 34%), var(--paper);
}

.private-gate {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 32px;
}

.private-gate-card {
  width: min(520px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.private-gate-mark {
  width: 54px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 12px;
  background: #080b0f;
}

.private-gate-mark img {
  width: 100%;
  height: 100%;
}

.private-gate-card h1 {
  margin: 0;
  color: var(--ink);
  font-size: 2.35rem;
  line-height: 1.05;
}

.private-gate-card p {
  color: var(--muted);
  font-size: 1.02rem;
}

.private-gate-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.private-gate-form label {
  color: var(--ink);
}

.private-gate-form input {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.private-gate-button {
  margin-top: 4px;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.private-gate-error {
  padding: 12px 14px;
  border: 1px solid rgba(183, 68, 88, .3);
  border-radius: var(--radius);
  background: #fff7f8;
  color: #5d2530 !important;
  font-weight: 720;
}

.private-gate-help {
  margin-bottom: 0;
  font-size: .92rem !important;
}

.admin-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 18% 0%, rgba(183, 111, 32, .12), transparent 32%),
    var(--paper);
}

.admin-login {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 32px;
}

.admin-login-card {
  width: min(560px, 100%);
}

.admin-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 12px max(32px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: rgba(5, 6, 9, .86);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.admin-nav > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.admin-nav span {
  color: rgba(255, 255, 255, .8);
  font-size: .92rem;
  font-weight: 760;
}

.admin-nav form {
  margin: 0;
}

.admin-nav button,
.admin-actions button {
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: .84rem;
  font-weight: 760;
}

.admin-main {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 80px;
}

.admin-hero {
  max-width: 780px;
  margin-bottom: 28px;
}

.admin-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 3.35rem;
  line-height: 1;
  font-weight: 760;
}

.admin-hero p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.admin-panel,
.admin-result,
.admin-error {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(17, 19, 23, .08);
}

.admin-panel {
  margin-top: 18px;
  padding: 24px;
}

.admin-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.admin-panel-heading h2,
.admin-result h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.1;
}

.admin-panel-heading p,
.admin-result p,
.admin-empty {
  margin: 0;
  color: var(--muted);
}

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

.admin-form label {
  margin: 0;
  color: var(--ink);
}

.admin-form input {
  margin-top: 7px;
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.admin-form input::placeholder {
  color: rgba(96, 104, 116, .62);
}

.admin-form button {
  grid-column: 1 / -1;
  justify-self: start;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.admin-table th,
.admin-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  background: var(--paper);
  color: var(--green-deep);
  font-size: .82rem;
  font-weight: 820;
}

.admin-table td {
  color: var(--ink);
}

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

.admin-table td span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .9rem;
}

.admin-table code,
.admin-secret-grid code {
  word-break: break-all;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.admin-url-cell {
  max-width: 420px;
}

.admin-url-cell a,
.admin-share-url {
  display: block;
  word-break: break-all;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: .9rem;
  font-weight: 720;
  line-height: 1.35;
}

.admin-url-missing,
.admin-url-placeholder {
  display: block;
  color: var(--muted) !important;
  font-family: inherit !important;
  font-size: .92rem;
  font-weight: 720;
}

.admin-status {
  display: inline-flex !important;
  margin: 0 !important;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eff8f5;
  color: var(--green-deep) !important;
  font-size: .78rem !important;
  font-weight: 820;
}

.admin-status.disabled {
  background: #fff7f8;
  color: #5d2530 !important;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-actions form {
  margin: 0;
}

.admin-actions button {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.admin-result {
  display: grid;
  gap: 22px;
  margin: 0 0 18px;
  padding: 24px;
  border-left: 5px solid var(--green);
}

.admin-secret-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: 12px;
}

.admin-secret-grid div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.admin-secret-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-deep);
  font-size: .78rem;
  font-weight: 820;
}

.admin-error {
  margin: 0 0 18px;
  padding: 16px 18px;
  border-color: rgba(183, 68, 88, .28);
  background: #fff7f8;
  color: #5d2530;
  font-weight: 760;
}

.admin-empty {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.admin-template-panel {
  border-left: 5px solid var(--green);
}

.admin-template-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(220px, .7fr);
  gap: 14px;
}

.admin-template-grid article {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.admin-template-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--green-deep);
  font-size: .78rem;
  font-weight: 820;
}

.admin-template-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.admin-template-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.admin-template-grid code {
  display: block;
  word-break: break-all;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.admin-template-action {
  display: grid;
  align-content: start;
}

.admin-template-action form {
  margin: 16px 0 0;
}

.admin-small-link {
  width: max-content;
  margin-top: 16px;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, .95fr) minmax(330px, .8fr);
  }

  .hero-content {
    padding-top: 46px;
    padding-bottom: 42px;
    padding-left: 32px;
    padding-right: 24px;
  }

  .hero h1,
  .section h2 {
    font-size: 3.6rem;
  }

  .cta-section .cta-copy h2 {
    max-width: 540px;
    font-size: 3.8rem;
    line-height: .92;
  }

  .hero-line {
    font-size: 1.45rem;
  }

  .feature-grid,
  .metric-grid,
  .value-grid,
  .dashboard-metrics,
  .raw-hours-planner,
  .pricing-grid,
  .payment-block .pricing-grid,
  .control-grid,
  .trust-grid,
  .mock-grid,
  .examples-section .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .feature-card,
  .control-grid article,
  .trust-grid article,
  .start-grid article,
  .mock-card {
    min-height: 210px;
  }

  .exclusion-grid,
  .report-grid,
  .fit-checklist,
  .control-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .mission-layout,
  .capture-layout,
  .metrics-layout {
    grid-template-columns: 1fr;
  }

  .mission-copy,
  .capture-copy,
  .metrics-copy {
    max-width: 860px;
  }

  .admin-form,
  .admin-secret-grid,
  .admin-template-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-nav {
    padding: 10px 18px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: .8rem;
  }

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

  .hero-content {
    grid-column: 1;
    grid-row: 1;
    width: min(100% - 34px, 620px);
    margin: 0 auto;
    padding: 34px 0 28px;
  }

  .hero-media {
    grid-column: 1;
    grid-row: 2;
    min-height: 280px;
    border-top: 1px solid var(--line);
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, 0) 42%);
  }

  .hero-video {
    min-height: 280px;
  }

  .hero h1,
  .section h2 {
    font-size: 2.65rem;
    line-height: 1;
  }

  .hero-line {
    font-size: 1.24rem;
  }

  .mission-headline {
    font-size: 1.5rem !important;
  }

  .hero-copy,
  .lead-stack p,
  .section-heading p,
  .mission-copy p,
  .capture-copy p,
  .metrics-copy p,
  .media-copy p,
  .review-copy p,
  .rules-layout p,
  .report-layout p,
  .vertical-layout p,
  .business-note,
  .cta-copy p {
    font-size: 1rem;
  }

  .section {
    padding: 60px 18px;
  }

  .section-grid,
  .mission-layout,
  .capture-layout,
  .metrics-layout,
  .review-layout,
  .dashboard-preview figcaption,
  .support-layout,
  .rules-layout,
  .report-layout,
  .vertical-layout,
  .fit-grid,
  .cta-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-grid,
  .comparison-grid,
  .capture-cards,
  .metric-grid,
  .value-grid,
  .dashboard-metrics,
  .raw-hours-planner,
  .difficulty-grid,
  .review-grid,
  .trust-grid,
  .exclusion-grid,
  .rules-card,
  .start-grid,
  .report-grid,
  .mock-grid,
  .fit-checklist,
  .control-summary,
  .support-grid,
  .examples-section .video-grid,
  .pricing-grid,
  .payment-block .pricing-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .control-summary span {
    min-height: auto;
    padding: 18px;
  }

  .pilot-table div {
    grid-template-columns: 1fr;
  }

  .value-card-wide {
    grid-column: auto;
  }

  .pilot-table span {
    padding-bottom: 6px;
  }

  .pilot-table strong {
    padding-top: 10px;
  }

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

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

  .field.full {
    grid-column: auto;
  }

  .cta-copy {
    padding-top: 0;
    max-width: none;
  }

  .cta-section .cta-copy h2 {
    max-width: 620px;
    font-size: 3rem;
    line-height: .94;
  }

  .cta-trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 30px;
    padding-top: 24px;
  }

  .cta-form-panel {
    padding: 22px;
  }

  .admin-nav {
    padding: 10px 18px;
  }

  .admin-main {
    width: min(100% - 34px, 620px);
    padding: 42px 0 62px;
  }

  .admin-hero h1 {
    font-size: 2.5rem;
  }

  .admin-panel-heading {
    display: grid;
  }
}

@media (max-width: 480px) {
  .nav-links a:nth-child(2),
  .nav-links a:nth-child(3) {
    display: none;
  }

  .hero h1,
  .section h2 {
    font-size: 2.2rem;
  }

  .cta-section .cta-copy h2 {
    font-size: 2.45rem;
    line-height: .96;
  }

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

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

  .hero-video {
    display: none;
  }
}
