:root {
  --ink: #101820;
  --ink-2: #17212b;
  --charcoal: #1f2930;
  --navy: #132235;
  --paper: #ffffff;
  --soft: #f5f4ef;
  --mist: #eef2f4;
  --line: #d9dee2;
  --line-dark: rgba(255, 255, 255, 0.16);
  --muted: #5d6872;
  --muted-dark: #a9b4bc;
  --accent: #2f6f66;
  --accent-dark: #24584f;
  --brass: #a48143;
  --danger: #b42318;
  --success-bg: #dff4e9;
  --success-ink: #13543e;
  --error-bg: #f9dedb;
  --error-ink: #84251e;
  --shadow: 0 22px 50px rgba(16, 24, 32, 0.12);
  --shadow-soft: 0 14px 32px rgba(16, 24, 32, 0.07);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.58;
  text-rendering: geometricPrecision;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: 12px;
  z-index: 40;
  transform: translateY(-140%);
  padding: 10px 12px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 6px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 24, 32, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 300px;
  height: 42px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.4vw, 30px);
  min-width: 0;
  color: #3e4a53;
  font-size: 15px;
  font-weight: 800;
}

.site-nav a,
.site-footer a,
td a {
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.site-nav a:hover,
.site-footer a:hover,
td a:hover {
  color: var(--accent);
}

.nav-cta {
  min-height: 40px;
  padding: 9px 13px;
  color: var(--paper) !important;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 6px;
}

.nav-cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.hero,
.page-hero,
.section,
.final-cta,
.service-list,
.pricing-grid,
.form-shell,
.admin-shell,
.admin-page,
.flash-wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(370px, 0.97fr);
  align-items: center;
  gap: clamp(32px, 5vw, 74px);
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(58px, 8vw, 104px) max(20px, calc((100% - var(--max)) / 2)) clamp(44px, 7vw, 84px);
  color: var(--paper);
  background: var(--ink);
}

.hero-copy {
  max-width: 690px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(42px, 5.9vw, 72px);
  line-height: 1.01;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(36px, 4.8vw, 60px);
}

.lead,
.wide-text,
.argument-panel p,
.pricing-note p {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
}

.hero .lead {
  max-width: 720px;
  color: #c8d1d7;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: #c7b07a;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--paper);
  background: var(--accent);
  border-color: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button.primary.light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.button.primary.light:hover {
  color: var(--paper);
  background: var(--accent);
  border-color: var(--accent);
}

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

.button.secondary:hover {
  color: var(--accent-dark);
  border-color: var(--accent);
}

.button.secondary.dark {
  color: var(--paper);
  background: transparent;
  border-color: var(--line-dark);
}

.button.secondary.dark:hover {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span,
.preview-status,
.status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.trust-strip span {
  color: #d7dee3;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
}

.system-preview,
.portal-preview,
.capability-card,
.intake-summary,
.submission-panel,
.argument-panel,
.card,
.price-card,
.detail-card,
.admin-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.system-preview,
.portal-preview {
  padding: clamp(16px, 2.6vw, 26px);
  color: var(--ink);
}

.system-preview {
  background: #f8faf9;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.23);
}

.preview-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.preview-top strong {
  display: block;
  margin-top: 3px;
  font-size: 20px;
  line-height: 1.2;
}

.preview-kicker,
.preview-tile span,
.portal-row span,
.price-preview-grid span,
.capability-card span,
.intake-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.preview-status {
  flex: 0 0 auto;
  color: #244f48;
  background: #e5f0ed;
  border: 1px solid #c6ddd8;
}

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

.preview-tile {
  min-height: 126px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
}

.preview-tile.strong {
  color: var(--paper);
  background: var(--navy);
  border-color: var(--navy);
}

.preview-tile.wide {
  grid-column: span 2;
}

.preview-tile strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 21px;
  line-height: 1.2;
}

.preview-tile small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.preview-tile.strong span,
.preview-tile.strong small {
  color: #cbd8df;
}

.page-hero,
.section {
  padding: clamp(48px, 7vw, 82px) 0;
}

.page-hero.compact {
  padding-bottom: clamp(30px, 4vw, 46px);
}

.page-hero.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
}

.section-heading {
  max-width: 800px;
}

.section h2,
.final-cta h2,
.form-intro h2 {
  margin: 0;
  font-size: clamp(28px, 3.7vw, 46px);
  line-height: 1.12;
  letter-spacing: 0;
}

.problem-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
}

.argument-panel {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 32px);
  background: #fbfbf8;
}

.argument-panel p,
.pricing-note p {
  margin: 0;
}

.light-band {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - var(--max)) / 2));
  background: var(--soft);
}

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

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

.card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 22px;
}

.card h3,
.steps h3,
.price-card h2 {
  margin: 0 0 10px;
  line-height: 1.18;
}

.card h3 {
  font-size: 21px;
}

.card p,
.steps p,
.price-card p,
.price-card li,
.service-list p,
.coverage-grid span,
.admin-note,
.form-intro p,
.form-actions p,
.submission-panel p,
.capability-card p {
  color: var(--muted);
}

.card p {
  margin-bottom: 0;
}

.card-index {
  width: fit-content;
  margin-bottom: auto;
  padding-bottom: 40px;
  color: var(--brass);
  font-size: 13px;
  font-weight: 900;
}

.accent-card {
  color: var(--paper);
  background: var(--ink-2);
  border-color: var(--ink-2);
}

.accent-card p,
.accent-card .card-index {
  color: #d3dde2;
}

.process-section {
  border-bottom: 1px solid var(--line);
}

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

.steps article {
  min-height: 220px;
  padding: 24px;
  border-top: 3px solid var(--accent);
  background: #fbfbf8;
}

.steps span {
  display: block;
  margin-bottom: 34px;
  color: var(--brass);
  font-weight: 900;
}

.pricing-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 24px;
}

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

.price-preview-grid div {
  min-height: 120px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbfbf8;
}

.price-preview-grid .premium {
  color: var(--paper);
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.price-preview-grid strong {
  display: block;
  margin: 10px 0 2px;
  font-size: 28px;
  line-height: 1;
}

.price-preview-grid small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.price-preview-grid .premium span,
.price-preview-grid .premium small {
  color: #cbd6dc;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 62px;
  padding: clamp(26px, 4vw, 42px);
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
}

.final-cta h2 {
  max-width: 820px;
}

.capability-card,
.intake-summary {
  padding: 24px;
}

.capability-card {
  border-top: 4px solid var(--brass);
}

.capability-card strong,
.intake-summary strong {
  display: block;
  margin: 6px 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.intake-summary {
  display: grid;
  gap: 10px;
  background: #fbfbf8;
}

.intake-summary span {
  display: block;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.service-list {
  display: grid;
  gap: 0;
  padding-bottom: 64px;
}

.service-list article {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 48px);
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.service-list h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.14;
}

.service-list p {
  max-width: 820px;
  margin: 0;
  font-size: 17px;
}

.service-proof {
  padding-bottom: clamp(54px, 7vw, 84px);
}

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

.coverage-grid div {
  min-height: 180px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
}

.coverage-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
}

.coverage-grid span {
  display: block;
}

.pricing-grid {
  display: grid;
  gap: 16px;
  padding-bottom: 34px;
}

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

.price-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
}

.price-card h2 {
  font-size: clamp(28px, 2.2vw, 32px);
}

.price-card p {
  margin-top: 0;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 24px;
}

.price-card li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
}

.price-card li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--accent);
  border-radius: 50%;
}

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

.featured-premium {
  color: var(--paper);
  background: var(--ink-2);
  border-color: var(--ink-2);
  box-shadow: var(--shadow);
}

.featured-premium h2 {
  font-size: clamp(26px, 2vw, 29px);
}

.featured-premium p,
.featured-premium li {
  color: #d1dbe1;
}

.featured-premium .eyebrow,
.featured-premium li::before {
  color: #d6bf85;
  background: #d6bf85;
}

.card-ribbon {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: var(--ink);
  background: #e9d8a6;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-note {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 5vw, 64px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.form-shell {
  padding-bottom: 76px;
}

.review-shell form,
.admin-card form,
.detail-card form {
  display: grid;
  gap: 18px;
}

.review-shell form {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.form-intro {
  max-width: 720px;
  padding-bottom: 8px;
}

.form-intro p {
  margin: 10px 0 0;
}

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

label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 900;
}

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

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cfd6dc;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  line-height: 1.35;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(47, 111, 102, 0.14);
}

label span {
  color: var(--danger);
  font-size: 13px;
  font-weight: 800;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-actions p {
  max-width: 520px;
  margin: 0;
  font-size: 14px;
}

.submission-panel {
  margin-bottom: 18px;
  padding: 22px;
  border-left: 4px solid var(--accent);
  background: #f8fbfa;
}

.submission-panel h2 {
  margin: 0 0 8px;
}

.submission-panel p {
  margin-top: 0;
}

.portal-preview {
  background: #fbfbf8;
}

.portal-row {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.portal-row:first-of-type {
  border-top: 0;
}

.portal-row strong {
  line-height: 1.25;
}

.flash-wrap {
  margin-top: 18px;
}

.flash {
  padding: 13px 15px;
  border-radius: 6px;
  font-weight: 800;
}

.flash-success {
  color: var(--success-ink);
  background: var(--success-bg);
  border: 1px solid #b8e3cc;
}

.flash-error {
  color: var(--error-ink);
  background: var(--error-bg);
  border: 1px solid #efb6af;
}

.admin-shell {
  display: grid;
  min-height: 58vh;
  place-items: center;
  padding: 58px 0;
}

.admin-card {
  width: min(440px, 100%);
  padding: 28px;
}

.admin-card h1,
.admin-page h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.1;
}

.admin-note {
  margin: 10px 0 22px;
}

.admin-page {
  padding: 44px 0 76px;
}

.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.admin-top form {
  margin: 0;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  background: #f8f8f5;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

td {
  color: #2e3941;
  font-size: 14px;
}

td a {
  color: var(--accent-dark);
  font-weight: 900;
}

.status {
  color: #244f48;
  background: #e5f0ed;
  border: 1px solid #c6ddd8;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 18px;
}

.detail-card {
  padding: 24px;
}

.detail-card h2 {
  margin: 0 0 18px;
}

dl {
  display: grid;
  grid-template-columns: 165px minmax(0, 1fr);
  gap: 12px 18px;
  margin: 0;
}

dt {
  color: var(--muted);
  font-weight: 900;
}

dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.metadata {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.metadata h3 {
  margin-bottom: 8px;
  color: var(--ink);
}

.metadata p {
  margin: 6px 0;
}

.gcs-shell,
.gcs-public,
.gcs-admin-page {
  min-width: 0;
}

.gcs-public {
  width: 100%;
  padding-inline: max(20px, calc((100% - var(--max)) / 2));
}

.gcs-hero,
.gcs-demo-stage,
.gcs-thanks,
.gcs-demo-cta {
  color: #f7f1e5;
  background: #11100e;
}

.gcs-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.72fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  padding-top: clamp(64px, 8vw, 112px);
  padding-bottom: clamp(52px, 7vw, 86px);
  border-bottom: 1px solid rgba(197, 164, 98, 0.28);
}

.gcs-hero-copy,
.gcs-demo-copy,
.gcs-thanks-copy {
  min-width: 0;
  max-width: 790px;
}

.gcs-hero h1,
.gcs-demo-stage h1,
.gcs-thanks h1,
.gcs-demo-cta h2 {
  margin: 0;
  color: #fff8ea;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.gcs-demo-stage h1,
.gcs-thanks h1,
.gcs-demo-cta h2 {
  max-width: 860px;
  font-size: clamp(34px, 4.6vw, 60px);
}

.gcs-hero .lead,
.gcs-demo-stage .lead,
.gcs-thanks .lead {
  max-width: 760px;
  color: #d9cfbc;
}

.gcs-muted {
  max-width: 720px;
  margin: 18px 0 0;
  color: #b8ad99;
}

.gcs-hero-panel,
.gcs-panel,
.gcs-card,
.gcs-metric {
  min-width: 0;
  border: 1px solid rgba(160, 135, 90, 0.28);
  border-radius: 8px;
  background: #fbf7ee;
  box-shadow: 0 18px 42px rgba(17, 16, 14, 0.09);
}

.gcs-hero-panel {
  padding: clamp(20px, 3vw, 30px);
  color: #201d18;
  background: #f6efe1;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.gcs-hero-panel p {
  margin: 18px 0 0;
  color: #655d4f;
}

.gcs-mini-flow {
  display: grid;
  gap: 10px;
}

.gcs-mini-flow span {
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid rgba(160, 135, 90, 0.26);
  border-left: 3px solid #b99b5f;
  border-radius: 6px;
  background: #fffaf0;
  color: #272219;
  font-weight: 900;
}

.gcs-grid {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

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

.gcs-leak-grid {
  grid-template-columns: repeat(7, minmax(170px, 1fr));
}

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

.gcs-card {
  padding: 22px;
}

.gcs-card h3 {
  margin: 0 0 10px;
  color: #181613;
  font-size: 19px;
  line-height: 1.2;
}

.gcs-card p,
.gcs-card li {
  color: #62594c;
}

.gcs-card p {
  margin: 0;
}

.gcs-industry-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.gcs-industry-grid span {
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(160, 135, 90, 0.28);
  border-radius: 6px;
  background: #fbf7ee;
  color: #29241c;
  font-weight: 900;
}

.gcs-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.gcs-two-col h2 {
  margin: 0 0 18px;
}

.gcs-section {
  border-top: 1px solid rgba(160, 135, 90, 0.18);
}

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

.gcs-check-list li {
  position: relative;
  padding-left: 22px;
  color: #4e473c;
  font-weight: 800;
}

.gcs-check-list li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  content: "";
  background: #b99b5f;
  border-radius: 50%;
}

.gcs-demo-stage {
  padding-top: clamp(52px, 7vw, 86px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.gcs-demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(20px, 4vw, 44px);
  align-items: start;
  margin-top: 34px;
}

.gcs-demo-layout .gcs-panel {
  background: #f7f0e3;
}

.gcs-demo-layout .gcs-sidecar {
  position: sticky;
  top: 96px;
}

.gcs-sequence {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.gcs-sequence li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 2px 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(160, 135, 90, 0.2);
}

.gcs-sequence li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.gcs-sequence span {
  grid-row: span 2;
  color: #a48143;
  font-weight: 900;
}

.gcs-sequence strong {
  color: #201d18;
}

.gcs-sequence p {
  margin: 0;
  color: #675e50;
}

.gcs-thanks {
  padding-top: clamp(62px, 8vw, 104px);
  padding-bottom: clamp(44px, 6vw, 72px);
}

.gcs-demo-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(42px, 6vw, 72px);
}

.gcs-demo-cta p {
  max-width: 760px;
  color: #d9cfbc;
}

.gcs-form {
  display: grid;
  gap: 20px;
  scroll-margin-top: 110px;
}

.gcs-form .form-grid {
  gap: 16px;
}

.gcs-field {
  color: #352f25;
}

.gcs-field input,
.gcs-field select,
.gcs-field textarea,
.gcs-form input,
.gcs-form select,
.gcs-form textarea {
  border-color: rgba(130, 109, 72, 0.32);
  background: #fffbf3;
  color: #201d18;
}

.gcs-field input:focus,
.gcs-field select:focus,
.gcs-field textarea:focus,
.gcs-form input:focus,
.gcs-form select:focus,
.gcs-form textarea:focus {
  border-color: #b99b5f;
  box-shadow: 0 0 0 3px rgba(185, 155, 95, 0.18);
}

.gcs-action,
.gcs-form .button {
  width: fit-content;
}

.gcs-step {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  place-items: center;
  color: #231f18;
  background: #d8c28e;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.gcs-admin-page {
  padding-top: 34px;
  padding-bottom: 42px;
}

.gcs-admin-page .admin-top {
  margin-bottom: 18px;
}

.gcs-admin-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.gcs-admin-actions form {
  margin: 0;
}

.gcs-admin-actions .button {
  min-height: 42px;
}

.gcs-command-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  padding: 8px;
  border: 1px solid rgba(160, 135, 90, 0.24);
  border-radius: 8px;
  background: #181613;
}

.gcs-command-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 12px;
  color: #d8cfbd;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.gcs-command-nav a:hover,
.gcs-command-nav a[aria-current="page"] {
  color: #fff8ea;
  background: rgba(185, 155, 95, 0.16);
  border-color: rgba(185, 155, 95, 0.34);
}

.gcs-admin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.gcs-metric {
  padding: 20px;
  background: #171513;
  border-color: rgba(185, 155, 95, 0.26);
  box-shadow: none;
}

.gcs-metric span,
.gcs-metric small {
  display: block;
  color: #b9ad99;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.gcs-metric strong {
  display: block;
  margin: 14px 0 10px;
  color: #fff8ea;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}

.gcs-panel {
  padding: 24px;
}

.gcs-panel h2,
.gcs-workflow h2 {
  margin: 0;
  color: #191713;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.12;
}

.gcs-admin-columns,
.gcs-drafts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

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

.gcs-panel-title {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.gcs-panel-title h2,
.gcs-panel-title .eyebrow {
  margin-bottom: 0;
}

.gcs-panel-title a {
  color: #7b5c24;
  font-weight: 900;
}

.gcs-status,
.gcs-status-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  color: #3f321b;
  background: #efe4c8;
  border: 1px solid rgba(164, 129, 67, 0.28);
  border-radius: 6px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
}

.gcs-status-grid,
.gcs-readiness-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.gcs-status-grid span {
  min-height: 74px;
  padding: 14px;
  border: 1px solid rgba(160, 135, 90, 0.22);
  border-radius: 6px;
  background: #fffaf0;
  color: #5f5546;
  font-size: 13px;
  font-weight: 900;
}

.gcs-status-grid strong {
  display: block;
  color: #1f1a13;
  font-size: 26px;
  line-height: 1;
}

.gcs-readiness {
  margin-top: 18px;
}

.gcs-readiness-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.gcs-workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  margin-top: 18px;
  padding: 26px;
  color: #fff8ea;
  background: #171513;
  border: 1px solid rgba(185, 155, 95, 0.26);
  border-radius: 8px;
}

.gcs-workflow h2 {
  color: #fff8ea;
}

.gcs-workflow ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gcs-workflow li {
  min-height: 72px;
  padding: 13px;
  border: 1px solid rgba(185, 155, 95, 0.28);
  border-radius: 6px;
  color: #ded3bf;
  font-weight: 900;
}

.gcs-row-actions {
  display: grid;
  min-width: 280px;
  gap: 10px;
}

.gcs-row-actions form {
  display: grid;
  gap: 8px;
}

.gcs-row-actions .button {
  width: 100%;
  min-height: 40px;
  padding: 9px 12px;
  white-space: normal;
}

.gcs-prospect-form-card {
  margin-bottom: 22px;
}

.gcs-checkbox {
  display: inline-flex;
  grid-column: 1 / -1;
  width: fit-content;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 0;
  color: #352f25;
  font-weight: 900;
}

.gcs-checkbox input {
  width: 18px;
  height: 18px;
  min-width: 18px;
}

.gcs-copy-block {
  min-height: 160px;
  padding: 16px;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
  color: #302a20;
  background: #fffaf0;
  border: 1px solid rgba(160, 135, 90, 0.24);
  border-radius: 6px;
  font-weight: 700;
}

.gcs-empty-state {
  display: grid;
  gap: 8px;
  max-width: 560px;
  padding: 18px 0;
}

.gcs-empty-state strong {
  color: #201d18;
  font-size: 18px;
}

.gcs-empty-state p {
  margin: 0;
  color: #655d4f;
}

.gcs-table-wrap {
  overflow-x: auto;
  border-color: rgba(160, 135, 90, 0.22);
}

.gcs-table-wrap table {
  min-width: 1120px;
}

.gcs-queue-table table {
  min-width: 1440px;
}

.gcs-table-message {
  max-width: 360px;
  max-height: 150px;
  overflow: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.gcs-related-tasks {
  margin-top: 18px;
}

/* Deep GCS premium layer: scoped to GCS surfaces. */
.gcs-public,
.gcs-shell,
.gcs-admin-page {
  --gcs-black: #0d0c0a;
  --gcs-graphite: #171512;
  --gcs-graphite-2: #211e18;
  --gcs-ivory: #fbf5e8;
  --gcs-ivory-2: #f4ead8;
  --gcs-warm: #d9ccb6;
  --gcs-muted: #8f826e;
  --gcs-brass: #b79a60;
  --gcs-brass-2: #d7c08b;
  --gcs-border: rgba(144, 118, 75, 0.28);
  --gcs-border-dark: rgba(215, 192, 139, 0.2);
}

.site-header {
  min-height: 82px;
  background: rgba(252, 249, 242, 0.97);
  border-bottom-color: rgba(31, 26, 19, 0.12);
}

.site-nav {
  color: #2e352f;
  font-size: 14px;
}

.site-nav a {
  letter-spacing: 0;
}

.gcs-public .eyebrow,
.gcs-shell .eyebrow,
.gcs-admin-page .eyebrow {
  color: #2f766a;
  letter-spacing: 0.02em;
}

.gcs-hero {
  min-height: min(780px, calc(100vh - 82px));
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.66fr);
  padding-top: clamp(82px, 10vw, 138px);
  padding-bottom: clamp(70px, 8vw, 116px);
  background:
    linear-gradient(90deg, rgba(13, 12, 10, 0.96), rgba(13, 12, 10, 0.92)),
    linear-gradient(135deg, #0d0c0a, #171512);
}

.gcs-hero h1,
.gcs-demo-stage h1,
.gcs-thanks h1,
.gcs-demo-cta h2 {
  max-width: 940px;
  color: var(--gcs-ivory);
  font-family: Georgia, Cambria, "Times New Roman", ui-serif, serif;
  font-size: clamp(44px, 6.4vw, 84px);
  font-weight: 500;
  line-height: 0.98;
}

.gcs-demo-stage h1,
.gcs-thanks h1,
.gcs-demo-cta h2 {
  font-size: clamp(38px, 5.2vw, 66px);
}

.gcs-hero .lead,
.gcs-demo-stage .lead,
.gcs-thanks .lead {
  color: #e4d8c4;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.62;
}

.gcs-muted {
  color: #b6aa97;
  font-size: 16px;
  line-height: 1.75;
}

.gcs-hero-rhythm {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin-top: clamp(32px, 4vw, 52px);
  border: 1px solid var(--gcs-border-dark);
  background: var(--gcs-border-dark);
}

.gcs-hero-rhythm span {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: #efe5d2;
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.gcs-hero-panel {
  color: var(--gcs-ivory);
  background: rgba(33, 30, 24, 0.74);
  border-color: var(--gcs-border-dark);
  box-shadow: none;
}

.gcs-hero-panel .preview-top {
  border-bottom-color: var(--gcs-border-dark);
}

.gcs-hero-panel .preview-kicker,
.gcs-hero-panel p {
  color: #bfb29d;
}

.gcs-hero-panel strong {
  color: var(--gcs-ivory);
}

.gcs-mini-flow {
  gap: 1px;
  border: 1px solid var(--gcs-border-dark);
  background: var(--gcs-border-dark);
}

.gcs-mini-flow span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  border: 0;
  border-left: 0;
  border-radius: 0;
  color: #f4ead8;
  background: rgba(13, 12, 10, 0.38);
}

.gcs-mini-flow small {
  color: var(--gcs-brass-2);
  font-size: 11px;
}

.gcs-status,
.gcs-status-badge {
  border-color: rgba(183, 154, 96, 0.36);
  color: #3d321d;
  background: #efe2bf;
  letter-spacing: 0.01em;
}

.section.gcs-shell {
  padding-top: clamp(70px, 8vw, 116px);
  padding-bottom: clamp(70px, 8vw, 116px);
}

.section.gcs-shell + .section.gcs-shell {
  border-top: 1px solid rgba(31, 26, 19, 0.09);
}

.section-heading {
  max-width: 880px;
}

.section-heading h2,
.gcs-panel h2,
.gcs-workflow h2 {
  font-family: Georgia, Cambria, "Times New Roman", ui-serif, serif;
  font-weight: 500;
}

.gcs-grid {
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(28px, 4vw, 44px);
}

.gcs-leak-grid {
  grid-template-columns: repeat(7, minmax(150px, 1fr));
}

.gcs-card,
.gcs-panel {
  background: #fbf5e8;
  border-color: rgba(144, 118, 75, 0.24);
  box-shadow: 0 22px 54px rgba(31, 26, 19, 0.06);
}

.gcs-card {
  padding: clamp(22px, 2.5vw, 30px);
}

.gcs-card h3 {
  color: #171512;
  font-size: 20px;
}

.gcs-card p {
  color: #665b49;
  line-height: 1.68;
}

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

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

.gcs-install-card span {
  grid-row: span 2;
  color: #9a7b3f;
  font-family: Georgia, Cambria, "Times New Roman", ui-serif, serif;
  font-size: 24px;
}

.gcs-control-panel {
  padding: clamp(28px, 3.6vw, 44px);
}

.gcs-check-list {
  gap: 16px;
}

.gcs-check-list li {
  color: #3f372b;
  font-size: 17px;
}

.gcs-command-preview {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: clamp(22px, 3vw, 34px);
  background: var(--gcs-black);
  border: 1px solid var(--gcs-border-dark);
}

.gcs-command-preview article {
  min-width: 0;
  padding: 22px;
  border-left: 1px solid var(--gcs-border-dark);
}

.gcs-command-preview article:first-child {
  border-left: 0;
}

.gcs-command-preview span {
  color: var(--gcs-brass-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gcs-command-preview strong {
  display: block;
  margin: 14px 0 8px;
  color: var(--gcs-ivory);
  font-size: 19px;
}

.gcs-command-preview p {
  margin: 0;
  color: #b9ad99;
}

.gcs-industry-grid {
  gap: 1px;
  border: 1px solid rgba(144, 118, 75, 0.22);
  background: rgba(144, 118, 75, 0.18);
}

.gcs-industry-grid span {
  border: 0;
  border-radius: 0;
  background: #fbf5e8;
}

.gcs-demo-stage,
.gcs-thanks {
  background: var(--gcs-black);
}

.gcs-demo-layout {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(28px, 5vw, 64px);
}

.gcs-demo-layout .gcs-panel {
  background: #f8f0df;
}

.gcs-form {
  gap: 28px;
}

.gcs-form-sections {
  display: grid;
  gap: 18px;
}

.gcs-form-section {
  display: grid;
  grid-template-columns: minmax(150px, 0.24fr) minmax(0, 1fr);
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(144, 118, 75, 0.22);
}

.gcs-form-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.gcs-form-section h3 {
  margin: 4px 0 0;
  color: #171512;
  font-size: 16px;
}

.gcs-form-section span {
  color: #9a7b3f;
  font-weight: 900;
}

.gcs-field {
  gap: 7px;
  color: #30291f;
  font-size: 13px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.gcs-field input,
.gcs-field select,
.gcs-field textarea,
.gcs-form input,
.gcs-form select,
.gcs-form textarea {
  min-height: 48px;
  border-radius: 4px;
  border-color: rgba(96, 76, 44, 0.26);
  background: #fffaf0;
  font-size: 15px;
  text-transform: none;
}

.gcs-form textarea {
  min-height: 140px;
}

.gcs-step {
  color: #211a0e;
  background: #d7c08b;
}

.gcs-demo-cta {
  background: #171512;
  border-top: 1px solid var(--gcs-border-dark);
}

.gcs-admin-page {
  max-width: 1240px;
  padding-top: 46px;
}

.gcs-admin-page .admin-top {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(31, 26, 19, 0.1);
}

.gcs-command-nav {
  gap: 1px;
  padding: 0;
  overflow: hidden;
  background: rgba(183, 154, 96, 0.22);
  border-color: rgba(144, 118, 75, 0.26);
}

.gcs-command-nav a {
  flex: 1 1 150px;
  min-height: 48px;
  border-radius: 0;
  color: #ded3bf;
  background: #171512;
}

.gcs-command-nav a[aria-current="page"] {
  color: #171512;
  background: #d7c08b;
}

.gcs-admin-grid {
  gap: 1px;
  padding: 1px;
  background: rgba(183, 154, 96, 0.22);
}

.gcs-metric {
  border: 0;
  border-radius: 0;
  padding: 24px;
  background: #171512;
}

.gcs-metric strong {
  font-size: 46px;
}

.gcs-admin-columns,
.gcs-drafts {
  gap: 22px;
}

.gcs-panel-title {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(144, 118, 75, 0.18);
}

.gcs-status-grid {
  gap: 1px;
  border: 1px solid rgba(144, 118, 75, 0.18);
  background: rgba(144, 118, 75, 0.18);
}

.gcs-status-grid span {
  border: 0;
  border-radius: 0;
  background: #fffaf0;
}

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

.gcs-workflow {
  padding: clamp(28px, 3.6vw, 44px);
  background: #171512;
}

.gcs-workflow li {
  background: rgba(255, 255, 255, 0.025);
}

.gcs-table-wrap {
  border-radius: 8px;
  background: #fbf5e8;
}

.gcs-table-wrap table {
  border-collapse: separate;
  border-spacing: 0;
}

.gcs-table-wrap th {
  color: #342d22;
  background: #e9dcc4;
  border-bottom: 1px solid rgba(144, 118, 75, 0.22);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.gcs-table-wrap td {
  border-bottom: 1px solid rgba(144, 118, 75, 0.14);
  background: #fffaf0;
}

.gcs-table-wrap tbody tr:nth-child(even) td {
  background: #fbf5e8;
}

.gcs-copy-block,
.gcs-table-message {
  color: #2f281d;
  line-height: 1.7;
}

.gcs-copy-block {
  padding: 20px;
  background: #fffaf0;
  box-shadow: inset 3px 0 0 #d7c08b;
}

.gcs-empty-state {
  padding: 30px;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 4vw, 56px);
  color: #dbe3e7;
  background: var(--ink);
}

.footer-brand strong {
  display: block;
  font-size: 18px;
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--muted-dark);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-weight: 900;
}

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

  .gcs-hero,
  .gcs-two-col,
  .gcs-demo-layout,
  .gcs-workflow {
    grid-template-columns: 1fr;
  }

  .system-preview {
    max-width: 760px;
  }

  .service-system,
  .compare-grid,
  .gcs-leak-grid,
  .gcs-install-grid,
  .gcs-command-preview,
  .gcs-card-grid,
  .gcs-preview-grid,
  .gcs-admin-grid,
  .gcs-readiness-grid,
  .gcs-drafts.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .gcs-demo-layout .gcs-sidecar {
    position: static;
  }

  .pricing-preview,
  .pricing-note,
  .problem-section,
  .detail-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    gap: 8px;
  }

  .site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 6px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fbfbf8;
    font-size: 13px;
    overflow-wrap: anywhere;
    text-align: center;
  }

  .nav-cta {
    padding: 8px 6px;
  }

  .site-nav .nav-cta {
    color: var(--paper) !important;
    background: var(--ink);
    border-color: var(--ink);
  }

  .page-hero.split,
  .service-list article {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .service-system,
  .compare-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card,
  .price-card,
  .steps article {
    min-height: auto;
  }

  .portal-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .final-cta,
  .admin-top,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .gcs-admin-actions {
    justify-content: flex-start;
  }

  .gcs-industry-grid,
  .gcs-leak-grid,
  .gcs-install-grid,
  .gcs-command-preview,
  .gcs-card-grid,
  .gcs-preview-grid,
  .gcs-admin-grid,
  .gcs-workflow ol,
  .gcs-admin-columns,
  .gcs-drafts,
  .gcs-drafts.three,
  .gcs-status-grid,
  .gcs-readiness-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gcs-demo-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .gcs-command-preview article {
    border-left: 0;
    border-top: 1px solid var(--gcs-border-dark);
  }

  .gcs-command-preview article:first-child {
    border-top: 0;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero,
  .gcs-hero,
  .page-hero,
  .section,
  .final-cta,
  .service-list,
  .pricing-grid,
  .form-shell,
  .admin-shell,
  .admin-page,
  .flash-wrap {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    width: 100%;
    padding: 42px 14px 44px;
  }

  .gcs-public {
    width: 100%;
    padding-inline: 14px;
  }

  .gcs-hero,
  .gcs-demo-stage,
  .gcs-thanks,
  .gcs-demo-cta {
    width: 100%;
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .gcs-hero-copy,
  .gcs-hero h1,
  .gcs-hero .lead,
  .gcs-demo-copy,
  .gcs-thanks-copy {
    width: 100%;
    max-width: none;
  }

  .gcs-hero-rhythm,
  .gcs-form-section,
  .gcs-install-card {
    grid-template-columns: 1fr;
  }

  .gcs-install-card span {
    grid-row: auto;
  }

  .brand img {
    width: min(300px, 100%);
    height: 38px;
  }

  .site-nav {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1,
  .gcs-hero h1 {
    font-size: 31px;
    line-height: 1.08;
  }

  .lead,
  .wide-text,
  .argument-panel p,
  .pricing-note p {
    font-size: 17px;
  }

  .button-row,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    white-space: normal;
  }

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

  .preview-top {
    flex-direction: column;
  }

  .preview-grid,
  .card-grid,
  .service-system,
  .compare-grid,
  .steps,
  .price-preview-grid,
  .coverage-grid,
  .form-grid,
  .gcs-industry-grid,
  .gcs-leak-grid,
  .gcs-install-grid,
  .gcs-command-preview,
  .gcs-card-grid,
  .gcs-preview-grid,
  .gcs-admin-grid,
  .gcs-workflow ol,
  .gcs-admin-columns,
  .gcs-drafts,
  .gcs-drafts.three,
  .gcs-status-grid,
  .gcs-readiness-grid,
  .gcs-row-actions {
    grid-template-columns: 1fr;
  }

  .preview-tile.wide {
    grid-column: auto;
  }

  .card-index {
    padding-bottom: 26px;
  }

  .price-card {
    min-height: auto;
  }

  .review-shell form,
  .admin-card,
  .detail-card,
  .argument-panel,
  .gcs-workflow,
  .gcs-hero-panel,
  .gcs-panel {
    padding: 20px;
  }

  .admin-card {
    width: 100%;
    max-width: 100%;
  }

  .admin-note,
  .footer-brand p,
  .site-footer a {
    overflow-wrap: anywhere;
  }

  .gcs-admin-actions .button,
  .gcs-admin-actions form,
  .gcs-admin-actions input[type="submit"] {
    width: 100%;
  }

  .gcs-row-actions {
    min-width: 0;
  }

  .gcs-command-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  dl {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 400px) {
  .site-header {
    padding-inline: 14px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 30px;
    line-height: 1.06;
  }

  .hero .eyebrow {
    font-size: 12px;
    line-height: 1.35;
  }

  .preview-tile strong,
  .capability-card strong,
  .intake-summary strong {
    font-size: 20px;
  }
}

/* GCS readiness overhaul. Scoped after the base site so public/demo/admin move as one system. */
:root {
  --gcs-ivory: #f8efe0;
  --gcs-brass-soft: #d7c18b;
  --gcs-line-dark: rgba(215, 193, 139, 0.22);
}

.gcs-public,
.gcs-shell,
.gcs-admin-page {
  --gcs-black: #0b0b0a;
  --gcs-charcoal: #12110f;
  --gcs-graphite: #1a1713;
  --gcs-graphite-2: #252119;
  --gcs-ivory: #f8efe0;
  --gcs-paper: #fbf6eb;
  --gcs-panel: #efe2cc;
  --gcs-muted: #a99d8b;
  --gcs-muted-dark: #6f6556;
  --gcs-brass: #b89a5d;
  --gcs-brass-soft: #d7c18b;
  --gcs-bronze: rgba(184, 154, 93, 0.34);
  --gcs-line: rgba(82, 68, 45, 0.2);
  --gcs-line-dark: rgba(215, 193, 139, 0.22);
  color: #1b1813;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.site-header {
  min-height: 78px;
  background: rgba(251, 248, 240, 0.98);
  border-bottom: 1px solid rgba(33, 28, 20, 0.12);
  backdrop-filter: blur(10px);
}

.brand img {
  width: 310px;
  height: 44px;
}

.site-nav {
  color: #2b302c;
  font-size: 14px;
  font-weight: 800;
}

.nav-cta,
.button.primary {
  color: #fbf6eb !important;
  background: #11100e;
  border-color: #11100e;
}

.nav-cta:hover,
.button.primary:hover {
  color: #11100e !important;
  background: var(--gcs-brass-soft);
  border-color: var(--gcs-brass-soft);
}

.button {
  min-height: 46px;
  border-radius: 4px;
  font-weight: 850;
  letter-spacing: 0;
}

.button.secondary,
.button.secondary.dark {
  color: var(--gcs-ivory);
  background: transparent;
  border-color: var(--gcs-line-dark);
}

.button.secondary:hover,
.button.secondary.dark:hover {
  color: #11100e;
  background: var(--gcs-brass-soft);
  border-color: var(--gcs-brass-soft);
}

.button.primary.light {
  color: #11100e !important;
  background: var(--gcs-ivory);
  border-color: var(--gcs-ivory);
}

.button.primary.light:hover {
  color: #11100e !important;
  background: var(--gcs-brass-soft);
  border-color: var(--gcs-brass-soft);
}

.gcs-public .eyebrow,
.gcs-shell .eyebrow,
.gcs-admin-page .eyebrow {
  color: var(--gcs-brass);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.gcs-hero,
.gcs-demo-stage,
.gcs-thanks,
.gcs-demo-cta {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--gcs-ivory);
  background: var(--gcs-black);
}

.gcs-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.7fr);
  align-items: end;
  gap: clamp(36px, 6vw, 86px);
  min-height: min(760px, calc(100vh - 78px));
  padding: clamp(72px, 9vw, 132px) max(22px, calc((100% - 1220px) / 2)) clamp(56px, 7vw, 92px);
}

.gcs-hero-copy {
  max-width: 910px;
}

.gcs-wordmark {
  display: grid;
  gap: 8px;
  margin-bottom: clamp(34px, 5vw, 58px);
  padding-left: 18px;
  border-left: 2px solid var(--gcs-brass);
}

.gcs-wordmark span {
  color: var(--gcs-ivory);
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(22px, 2.4vw, 31px);
  line-height: 1.1;
}

.gcs-wordmark strong {
  color: var(--gcs-muted);
  font-size: 13px;
  font-weight: 800;
}

.gcs-hero h1,
.gcs-demo-stage h1,
.gcs-thanks h1,
.gcs-demo-cta h2 {
  max-width: 980px;
  margin: 0;
  color: var(--gcs-ivory);
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(45px, 6.2vw, 82px);
  font-weight: 500;
  line-height: 1;
}

.gcs-demo-stage h1,
.gcs-thanks h1,
.gcs-demo-cta h2 {
  font-size: clamp(38px, 5vw, 64px);
}

.gcs-hero .lead,
.gcs-demo-stage .lead,
.gcs-thanks .lead {
  max-width: 760px;
  color: #d9ccb6;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.66;
}

.gcs-command-board,
.gcs-confirmation-board,
.gcs-workflow-rail {
  color: var(--gcs-ivory);
  background: var(--gcs-graphite);
  border: 1px solid var(--gcs-line-dark);
  border-radius: 4px;
  box-shadow: none;
}

.gcs-command-board {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 3vw, 36px);
}

.gcs-board-top {
  display: grid;
  gap: 10px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--gcs-line-dark);
}

.gcs-board-top span,
.gcs-board-top em {
  color: var(--gcs-brass-soft);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gcs-board-top strong {
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.12;
}

.gcs-board-flow {
  display: grid;
  gap: 1px;
  border: 1px solid var(--gcs-line-dark);
  background: var(--gcs-line-dark);
}

.gcs-board-flow span {
  display: flex;
  justify-content: space-between;
  min-height: 58px;
  padding: 14px 16px;
  color: var(--gcs-ivory);
  background: #100f0d;
  font-weight: 850;
}

.gcs-board-flow small {
  color: var(--gcs-brass-soft);
  font-weight: 900;
}

.gcs-command-board p,
.gcs-workflow-rail p,
.gcs-confirmation-board p {
  margin: 0;
  color: #c7bba8;
  line-height: 1.7;
}

.section.gcs-shell {
  width: min(1220px, calc(100% - 48px));
  padding: clamp(76px, 8vw, 122px) 0;
}

.section.gcs-shell + .section.gcs-shell {
  border-top: 1px solid rgba(27, 23, 17, 0.1);
}

.section-heading {
  max-width: 860px;
}

.section-heading h2,
.gcs-panel h2,
.gcs-workflow h2,
.gcs-control-section h2 {
  margin: 0;
  color: #17130f;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(31px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.06;
}

.section-heading p:not(.eyebrow),
.gcs-control-section .lead {
  color: var(--gcs-muted-dark);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.72;
}

.gcs-leak-ledger,
.gcs-install-list {
  display: grid;
  margin-top: clamp(30px, 4vw, 52px);
  border-top: 1px solid var(--gcs-line);
}

.gcs-leak-ledger {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.gcs-leak-ledger article,
.gcs-install-list article {
  min-width: 0;
  padding: clamp(20px, 2.2vw, 30px) clamp(16px, 2vw, 24px);
  border-right: 1px solid var(--gcs-line);
  border-bottom: 1px solid var(--gcs-line);
}

.gcs-leak-ledger article:nth-child(7n),
.gcs-install-list article:nth-child(even) {
  border-right: 0;
}

.gcs-leak-ledger span,
.gcs-install-list span,
.gcs-confirmation-flow li span,
.gcs-workflow li span {
  color: #9c7b3d;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 22px;
}

.gcs-leak-ledger strong,
.gcs-install-list h3 {
  display: block;
  margin: 12px 0 8px;
  color: #17130f;
  font-size: 18px;
  line-height: 1.2;
}

.gcs-leak-ledger p,
.gcs-install-list p {
  margin: 0;
  color: var(--gcs-muted-dark);
  line-height: 1.68;
}

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

.gcs-install-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
}

.gcs-control-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.gcs-control-ledger {
  display: grid;
  border-top: 1px solid var(--gcs-line);
}

.gcs-control-ledger span {
  padding: 18px 0;
  color: #211b13;
  border-bottom: 1px solid var(--gcs-line);
  font-size: 18px;
  font-weight: 800;
}

.gcs-command-section {
  width: 100%;
  max-width: none;
  padding-inline: max(22px, calc((100% - 1220px) / 2));
  color: var(--gcs-ivory);
  background: var(--gcs-black);
}

.gcs-command-section .section-heading h2 {
  color: var(--gcs-ivory);
}

.gcs-command-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--gcs-line-dark);
  border: 1px solid var(--gcs-line-dark);
}

.gcs-command-preview article {
  padding: clamp(22px, 3vw, 34px);
  background: var(--gcs-graphite);
  border: 0;
}

.gcs-command-preview span {
  color: var(--gcs-brass-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gcs-command-preview strong {
  display: block;
  margin: 18px 0 10px;
  color: var(--gcs-ivory);
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.13;
}

.gcs-command-preview p {
  margin: 0;
  color: #c7bba8;
}

.gcs-industry-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  padding: 1px;
  background: var(--gcs-line);
}

.gcs-industry-grid span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: #211b13;
  background: var(--gcs-paper);
  border: 0;
  border-radius: 0;
  font-weight: 850;
}

.gcs-demo-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(56px, 7vw, 92px) max(22px, calc((100% - 1220px) / 2));
  border-top: 1px solid var(--gcs-line-dark);
}

.gcs-demo-cta div {
  max-width: 830px;
}

.gcs-demo-cta p:not(.eyebrow) {
  color: #c7bba8;
  font-size: 18px;
}

.gcs-demo-stage {
  padding: clamp(62px, 8vw, 116px) max(18px, calc((100% - 1220px) / 2));
}

.gcs-demo-copy,
.gcs-thanks-copy {
  max-width: 890px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.gcs-demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
  gap: clamp(28px, 5vw, 66px);
  align-items: start;
}

.gcs-intake-panel,
.gcs-panel,
.gcs-workflow-rail,
.gcs-confirmation-board {
  border-radius: 4px;
}

.gcs-intake-panel {
  padding: clamp(24px, 3.2vw, 42px);
  color: #17130f;
  background: var(--gcs-paper);
  border: 1px solid rgba(215, 193, 139, 0.22);
}

.form-intro h2,
.gcs-workflow-rail h2 {
  margin: 0;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.1;
}

.form-intro p:not(.eyebrow),
.gcs-form-section-label p,
.form-actions p {
  color: var(--gcs-muted-dark);
  line-height: 1.65;
}

.gcs-form {
  display: grid;
  gap: 26px;
}

.gcs-form-sections {
  display: grid;
  gap: 24px;
}

.gcs-form-section {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 32px);
  padding-top: 24px;
  border-top: 1px solid var(--gcs-line);
}

.gcs-form-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.gcs-form-section-label span {
  color: #9c7b3d;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 22px;
}

.gcs-form-section-label h3 {
  margin: 8px 0;
  color: #17130f;
  font-size: 17px;
}

.form-grid {
  gap: 16px;
}

.gcs-field {
  display: grid;
  gap: 8px;
  color: #342c20;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.gcs-field input,
.gcs-field select,
.gcs-field textarea,
.gcs-form input,
.gcs-form select,
.gcs-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: #17130f;
  background-color: #fffbf2;
  border: 1px solid rgba(82, 68, 45, 0.24);
  border-radius: 3px;
  font: 500 15px/1.4 -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.gcs-field select,
.gcs-form select {
  appearance: none;
  padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3 5l4 4 4-4' fill='none' stroke='%23544734' stroke-width='1.6'/%3E%3C/svg%3E");
  background-position: right 13px center;
  background-repeat: no-repeat;
}

.gcs-field textarea,
.gcs-form textarea {
  min-height: 132px;
  resize: vertical;
}

.gcs-field input:focus,
.gcs-field select:focus,
.gcs-field textarea:focus,
.gcs-form input:focus,
.gcs-form select:focus,
.gcs-form textarea:focus {
  outline: 2px solid rgba(184, 154, 93, 0.28);
  outline-offset: 2px;
  border-color: rgba(121, 92, 42, 0.64);
}

.gcs-field span {
  color: var(--danger);
  letter-spacing: 0;
  text-transform: none;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}

.gcs-workflow-rail {
  position: sticky;
  top: 100px;
  padding: clamp(24px, 3vw, 34px);
}

.gcs-sequence {
  display: grid;
  gap: 1px;
  margin: 24px 0 0;
  padding: 1px;
  background: var(--gcs-line-dark);
  list-style: none;
}

.gcs-sequence li {
  padding: 18px;
  background: #100f0d;
}

.gcs-sequence span {
  color: var(--gcs-brass-soft);
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 20px;
}

.gcs-sequence strong {
  display: block;
  margin: 10px 0 6px;
  color: var(--gcs-ivory);
}

.gcs-thanks {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(300px, 0.52fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: end;
  padding: clamp(62px, 8vw, 116px) max(18px, calc((100% - 1220px) / 2));
}

.gcs-confirmation-board {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3vw, 36px);
}

.gcs-confirmation-board span {
  color: var(--gcs-brass-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gcs-confirmation-board strong {
  color: var(--gcs-ivory);
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.12;
}

.gcs-confirmation-flow ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  background: transparent;
  border-top: 1px solid var(--gcs-line);
  border-left: 1px solid var(--gcs-line);
  list-style: none;
}

.gcs-confirmation-flow li {
  min-width: 0;
  padding: 22px;
  background: var(--gcs-paper);
  border-right: 1px solid var(--gcs-line);
  border-bottom: 1px solid var(--gcs-line);
}

.gcs-confirmation-flow strong {
  display: block;
  margin: 12px 0 8px;
}

.gcs-confirmation-flow p {
  margin: 0;
  color: var(--gcs-muted-dark);
}

.gcs-admin-page {
  width: min(1240px, calc(100% - 48px));
  padding-top: 42px;
  padding-bottom: 70px;
}

.gcs-admin-hero {
  padding: clamp(26px, 3vw, 38px) 0 28px;
  border-bottom: 1px solid rgba(27, 23, 17, 0.12);
}

.gcs-admin-hero h1 {
  margin: 0;
  color: #15120e;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 500;
  line-height: 1.02;
}

.admin-note {
  max-width: 780px;
  color: var(--gcs-muted-dark);
  line-height: 1.7;
}

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

.gcs-admin-actions form {
  margin: 0;
}

.gcs-command-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0;
  padding: 1px;
  overflow: hidden;
  background: rgba(82, 68, 45, 0.22);
  border: 1px solid rgba(82, 68, 45, 0.18);
  border-radius: 4px;
}

.gcs-command-nav a {
  display: grid;
  min-height: 50px;
  place-items: center;
  padding: 12px;
  color: #ede1cf;
  background: var(--gcs-graphite);
  border: 0;
  border-radius: 0;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.gcs-command-nav a[aria-current="page"] {
  color: #17130f;
  background: var(--gcs-brass-soft);
}

.gcs-admin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--gcs-line-dark);
  border: 1px solid var(--gcs-line-dark);
}

.gcs-metric {
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
  color: var(--gcs-ivory);
  background: var(--gcs-graphite);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.gcs-metric span,
.gcs-metric small {
  display: block;
  color: #c7bba8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.gcs-metric strong {
  display: block;
  margin: 16px 0 12px;
  color: var(--gcs-ivory);
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 500;
  line-height: 0.95;
}

.gcs-panel {
  padding: clamp(24px, 3vw, 34px);
  background: var(--gcs-paper);
  border: 1px solid var(--gcs-line);
  box-shadow: none;
}

.gcs-panel-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gcs-line);
}

.gcs-panel-title h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.gcs-panel-title a {
  color: #6e5121;
  font-weight: 900;
}

.gcs-admin-columns,
.gcs-drafts,
.gcs-briefing-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.gcs-briefing-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
}

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

.gcs-status,
.gcs-status-badge,
.gcs-readiness-item {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  color: #34280f;
  background: #e8d49d;
  border: 1px solid rgba(121, 92, 42, 0.28);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.gcs-status-grid,
.gcs-readiness-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--gcs-line);
}

.gcs-status-grid span,
.gcs-readiness-item {
  display: block;
  width: auto;
  min-height: 76px;
  padding: 14px;
  color: #5e5548;
  background: #fffaf0;
  border: 0;
  border-radius: 0;
  text-transform: none;
}

.gcs-status-grid strong {
  display: block;
  color: #17130f;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 500;
  line-height: 1;
}

.gcs-readiness {
  margin-top: 22px;
}

.gcs-readiness-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.gcs-readiness-item.is-ready {
  color: #312916;
  background: #efe4c8;
}

.gcs-workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(22px, 4vw, 52px);
  margin-top: 22px;
  padding: clamp(26px, 4vw, 44px);
  color: var(--gcs-ivory);
  background: var(--gcs-black);
  border: 1px solid var(--gcs-line-dark);
  border-radius: 4px;
}

.gcs-workflow h2 {
  color: var(--gcs-ivory);
}

.gcs-workflow ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: var(--gcs-line-dark);
  list-style: none;
}

.gcs-workflow li {
  min-height: 78px;
  padding: 15px;
  color: #e8ddcb;
  background: var(--gcs-graphite);
  border: 0;
  border-radius: 0;
  font-weight: 850;
}

.gcs-workflow li span {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.gcs-detail-list {
  display: grid;
  grid-template-columns: minmax(130px, 0.34fr) minmax(0, 1fr);
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--gcs-line);
}

.gcs-detail-list dt,
.gcs-detail-list dd {
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--gcs-line);
}

.gcs-detail-list dt {
  color: #6f6556;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gcs-detail-list dd {
  color: #211b13;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.gcs-decision-card {
  align-self: start;
}

.gcs-muted {
  color: var(--gcs-muted-dark);
  line-height: 1.7;
}

.gcs-copy-block {
  min-height: 154px;
  padding: 20px;
  color: #2d261a;
  background: #fffaf0;
  border: 1px solid rgba(82, 68, 45, 0.18);
  border-left: 3px solid var(--gcs-brass);
  border-radius: 3px;
  font-weight: 650;
  line-height: 1.72;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.gcs-table-wrap {
  overflow-x: auto;
  background: var(--gcs-paper);
  border: 1px solid var(--gcs-line);
  border-radius: 4px;
}

.gcs-table-wrap table {
  min-width: 1080px;
  border-collapse: separate;
  border-spacing: 0;
}

.gcs-table-wrap th,
.gcs-table-wrap td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(82, 68, 45, 0.14);
  vertical-align: top;
}

.gcs-table-wrap th {
  color: #342c20;
  background: #e8d9bc;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.gcs-table-wrap td {
  color: #2d261a;
  background: #fffaf0;
}

.gcs-table-wrap tbody tr:nth-child(even) td {
  background: #f8efe0;
}

.gcs-table-message {
  max-width: 380px;
  max-height: 160px;
  overflow: auto;
  color: #2d261a;
  line-height: 1.65;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.gcs-empty-state {
  display: grid;
  gap: 10px;
  max-width: 620px;
  padding: 28px;
}

.gcs-empty-state strong {
  color: #17130f;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.gcs-empty-state p {
  margin: 0;
  color: var(--gcs-muted-dark);
}

.gcs-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  color: #342c20;
  font-size: 13px;
  font-weight: 850;
}

.gcs-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: #9c7b3d;
}

.gcs-prospect-form-card,
.gcs-related-tasks {
  margin-top: 22px;
}

.gcs-queue-list {
  display: grid;
  gap: 16px;
}

.gcs-task-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.32fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
}

.gcs-task-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.gcs-task-meta span {
  padding: 6px 8px;
  color: #5d513e;
  background: #f0e4ca;
  border: 1px solid rgba(82, 68, 45, 0.14);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gcs-task-card h2 {
  margin-bottom: 8px;
  font-size: clamp(26px, 3vw, 38px);
}

.gcs-task-main > p,
.gcs-task-decision p {
  color: var(--gcs-muted-dark);
  line-height: 1.7;
}

.gcs-task-decision {
  display: grid;
  gap: 16px;
  padding-top: 4px;
}

.gcs-row-actions {
  display: grid;
  gap: 10px;
}

.gcs-row-actions .button {
  width: 100%;
  white-space: normal;
}

@media (max-width: 1120px) {
  .gcs-hero,
  .gcs-demo-layout,
  .gcs-thanks,
  .gcs-control-section,
  .gcs-workflow,
  .gcs-briefing-layout,
  .gcs-task-card {
    grid-template-columns: 1fr;
  }

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

  .gcs-leak-ledger article:nth-child(7n) {
    border-right: 1px solid var(--gcs-line);
  }

  .gcs-command-preview,
  .gcs-confirmation-flow ol,
  .gcs-admin-grid,
  .gcs-readiness-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gcs-workflow-rail {
    position: static;
  }
}

@media (max-width: 820px) {
  .brand img {
    width: min(310px, 100%);
  }

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

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

  .gcs-command-nav a:first-child,
  .gcs-command-nav a:last-child {
    grid-column: 1 / -1;
  }

  .gcs-leak-ledger,
  .gcs-install-list,
  .gcs-command-preview,
  .gcs-industry-grid,
  .gcs-confirmation-flow ol,
  .gcs-admin-grid,
  .gcs-status-grid,
  .gcs-readiness-grid,
  .gcs-workflow ol,
  .gcs-admin-columns,
  .gcs-drafts,
  .gcs-drafts.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gcs-demo-cta {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .gcs-public,
  .gcs-hero,
  .gcs-demo-stage,
  .gcs-thanks,
  .gcs-demo-cta,
  .gcs-command-section {
    padding-inline: 16px;
  }

  .section.gcs-shell,
  .gcs-admin-page {
    width: min(100% - 28px, 1220px);
  }

  .gcs-hero {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .gcs-hero h1,
  .gcs-demo-stage h1,
  .gcs-thanks h1,
  .gcs-demo-cta h2 {
    font-size: 34px;
    line-height: 1.05;
  }

  .gcs-demo-stage,
  .gcs-thanks,
  .gcs-demo-cta {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .button-row,
  .form-actions,
  .gcs-admin-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .gcs-admin-actions form,
  .gcs-admin-actions input[type="submit"] {
    width: 100%;
  }

  .gcs-leak-ledger,
  .gcs-install-list,
  .gcs-command-preview,
  .gcs-industry-grid,
  .gcs-confirmation-flow ol,
  .gcs-admin-grid,
  .gcs-status-grid,
  .gcs-readiness-grid,
  .gcs-workflow ol,
  .gcs-admin-columns,
  .gcs-drafts,
  .gcs-drafts.three,
  .gcs-form-section,
  .gcs-detail-list {
    grid-template-columns: 1fr;
  }

  .gcs-install-list article {
    grid-template-columns: 1fr;
  }

  .gcs-leak-ledger article,
  .gcs-install-list article {
    border-right: 0;
  }

  .gcs-panel,
  .gcs-intake-panel,
  .gcs-workflow,
  .gcs-workflow-rail,
  .gcs-command-board,
  .gcs-confirmation-board {
    padding: 20px;
  }

  .gcs-panel-title {
    display: grid;
  }

  .gcs-table-wrap table {
    min-width: 860px;
  }

  .gcs-detail-list dt {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .gcs-detail-list dd {
    padding-top: 0;
  }
}
