:root {
  --v2-bg: #272520;
  --v2-bg-deep: #1d1b18;
  --v2-surface: #312e29;
  --v2-surface-2: #39352f;
  --v2-line: rgba(255, 248, 232, 0.12);
  --v2-line-strong: rgba(220, 176, 92, 0.42);
  --v2-text: #f6efe1;
  --v2-muted: #bcb3a2;
  --v2-soft: #ddd0b8;
  --v2-brass: #d6a84d;
  --v2-brass-2: #f0d18a;
  --v2-green: #8fd4a4;
  --v2-red: #ff9b86;
  --v2-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --v2-radius: 8px;
  --v2-max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body.gcs-v2-body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(214, 168, 77, 0.15), transparent 34rem),
    linear-gradient(180deg, var(--v2-bg), var(--v2-bg-deep));
  background-color: var(--v2-bg);
  color: var(--v2-text);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.gcs-v2-body a {
  color: inherit;
}

.gcs-v2-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.gcs-v2-main {
  flex: 1;
}

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

.gcs-v2-narrow {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
}

.gcs-v2-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 248, 232, 0.08);
  background: rgba(31, 29, 25, 0.86);
  backdrop-filter: blur(18px);
}

.gcs-v2-topbar-inner {
  width: min(var(--v2-max), calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.gcs-v2-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.gcs-v2-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(240, 209, 138, 0.62);
  border-radius: 8px;
  color: var(--v2-brass-2);
  font-family: Georgia, ui-serif, serif;
  font-size: 19px;
  background: linear-gradient(135deg, rgba(214, 168, 77, 0.13), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.gcs-v2-brand-name {
  display: block;
  color: var(--v2-text);
  font-family: Georgia, ui-serif, serif;
  font-size: 18px;
  line-height: 1.05;
}

.gcs-v2-brand-sub {
  display: block;
  color: var(--v2-muted);
  font-size: 10px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.gcs-v2-nav,
.gcs-v2-app-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gcs-v2-nav a,
.gcs-v2-app-nav a,
.gcs-v2-link-button {
  border: 0;
  border-radius: var(--v2-radius);
  padding: 9px 12px;
  color: var(--v2-muted);
  background: transparent;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.gcs-v2-nav a:hover,
.gcs-v2-app-nav a:hover,
.gcs-v2-nav a.is-active,
.gcs-v2-app-nav a.is-active {
  color: var(--v2-text);
  background: rgba(255, 248, 232, 0.06);
}

.gcs-v2-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gcs-v2-context {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--v2-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.gcs-v2-context::before {
  content: "";
  width: 1px;
  height: 22px;
  background: var(--v2-line);
}

.gcs-v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  padding: 10px 15px;
  background: rgba(255, 248, 232, 0.04);
  color: var(--v2-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: none;
}

.gcs-v2-btn:hover {
  border-color: rgba(255, 248, 232, 0.24);
  transform: translateY(-1px);
}

.gcs-v2-btn-primary {
  border-color: rgba(214, 168, 77, 0.62);
  background: linear-gradient(135deg, #f0d18a, #d2a044);
  color: #211d18;
}

.gcs-v2-body .gcs-v2-btn-primary,
.gcs-v2-body a.gcs-v2-btn-primary {
  background: linear-gradient(135deg, #f0d18a, #d2a044) !important;
  background-color: #d6a84d !important;
  color: #211d18 !important;
}

.gcs-v2-btn.button,
.gcs-v2-btn.button.primary {
  width: auto;
  min-width: 0;
  margin: 0;
  box-shadow: none;
  white-space: normal;
}

.gcs-v2-btn-ghost {
  background: transparent;
}

.gcs-v2-btn-small {
  min-height: 36px;
  padding: 8px 11px;
  font-size: 13px;
}

.gcs-v2-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 76px;
}

.gcs-v2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 27, 24, 0.95), rgba(29, 27, 24, 0.62) 52%, rgba(29, 27, 24, 0.88)),
    radial-gradient(circle at 78% 18%, rgba(214, 168, 77, 0.18), transparent 26rem);
  pointer-events: none;
}

.gcs-v2-hero .gcs-v2-container {
  position: relative;
}

.gcs-v2-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: 58px;
}

.gcs-v2-kicker,
.gcs-v2-eyebrow {
  margin: 0;
  color: var(--v2-brass-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gcs-v2-h1,
.gcs-v2-h2,
.gcs-v2-h3 {
  margin: 0;
  color: var(--v2-text);
  font-family: Georgia, ui-serif, serif;
  font-weight: 500;
  letter-spacing: 0;
}

.gcs-v2-h1 {
  max-width: 760px;
  margin-top: 20px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
}

.gcs-v2-h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.gcs-v2-h3 {
  font-size: 22px;
  line-height: 1.15;
}

.gcs-v2-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--v2-muted);
  font-size: 18px;
  line-height: 1.7;
}

.gcs-v2-actions,
.gcs-v2-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.gcs-v2-actions {
  margin-top: 34px;
}

.gcs-v2-note {
  margin: 18px 0 0;
  color: var(--v2-muted);
  font-size: 14px;
}

.gcs-v2-section {
  padding: 74px 0;
  border-top: 1px solid rgba(255, 248, 232, 0.06);
}

.gcs-v2-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 28px;
}

.gcs-v2-section-head p {
  max-width: 610px;
  margin: 12px 0 0;
  color: var(--v2-muted);
}

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

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

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

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

.gcs-v2-card,
.gcs-v2-panel,
.gcs-v2-next-action {
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  background: rgba(49, 46, 41, 0.86);
  box-shadow: var(--v2-shadow);
}

.gcs-v2-card,
.gcs-v2-panel {
  padding: 24px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.gcs-v2-card > span,
.gcs-v2-muted-label {
  display: block;
  margin-bottom: 10px;
  color: var(--v2-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gcs-v2-result-proof .gcs-v2-card > span {
  letter-spacing: 0;
  text-transform: none;
}

.gcs-v2-card p,
.gcs-v2-panel p {
  color: var(--v2-muted);
}

.gcs-v2-card strong {
  display: block;
  color: var(--v2-text);
}

.gcs-v2-card .gcs-v2-card-count {
  color: var(--v2-brass-2);
  font-family: Georgia, ui-serif, serif;
  font-size: 28px;
  line-height: 1;
}

.gcs-v2-workbench-list {
  display: grid;
  gap: 14px;
}

.gcs-v2-workbench-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid var(--v2-line);
}

.gcs-v2-workbench-row:first-child {
  border-top: 0;
}

.gcs-v2-workbench-row p {
  margin: 8px 0 0;
  color: var(--v2-muted);
}

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

.gcs-v2-proof-strip article {
  border-top: 1px solid var(--v2-line);
  padding-top: 14px;
}

.gcs-v2-proof-strip span,
.gcs-v2-work-meta span {
  display: block;
  color: var(--v2-muted);
  font-size: 12px;
  font-weight: 800;
}

.gcs-v2-proof-strip span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gcs-v2-proof-strip strong {
  display: block;
  margin-top: 6px;
  color: var(--v2-text);
  font-size: 22px;
}

.gcs-v2-work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 14px;
}

.gcs-v2-prepared-body {
  color: var(--v2-text);
  font-size: 16px;
  line-height: 1.72;
  white-space: normal;
}

.gcs-v2-copybox {
  width: 100%;
  min-height: 260px;
  resize: vertical;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  padding: 16px;
  background: rgba(29, 27, 24, 0.72);
  color: var(--v2-text);
  font: inherit;
  line-height: 1.55;
}

.gcs-v2-brass-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 168, 77, 0.62), transparent);
}

.gcs-v2-proof-panel {
  min-height: 380px;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(214, 168, 77, 0.12), rgba(255, 255, 255, 0.02)),
    var(--v2-surface);
}

.gcs-v2-proof-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--v2-line);
}

.gcs-v2-proof-row span {
  color: var(--v2-muted);
}

.gcs-v2-proof-row strong {
  text-align: right;
}

.gcs-v2-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  border: 1px solid var(--v2-line);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--v2-soft);
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 800;
}

.gcs-v2-status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--v2-brass);
}

.gcs-v2-status-success::before {
  background: var(--v2-green);
}

.gcs-v2-status-danger::before {
  background: var(--v2-red);
}

.gcs-v2-status-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
}

.gcs-v2-status-strip article {
  min-width: 0;
  padding: 18px;
  background: rgba(49, 46, 41, 0.86);
  border-right: 1px solid var(--v2-line);
}

.gcs-v2-status-strip article:last-child {
  border-right: 0;
}

.gcs-v2-status-strip span {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--v2-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gcs-v2-status-strip strong {
  display: block;
  margin-top: 8px;
  color: var(--v2-text);
  font-family: Georgia, ui-serif, serif;
  font-size: 24px;
  overflow-wrap: anywhere;
}

.gcs-v2-next-action {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.gcs-v2-next-action::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 168, 77, 0.2), transparent 68%);
  pointer-events: none;
}

.gcs-v2-next-action-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

.gcs-v2-next-action h2 {
  margin: 8px 0;
  font-family: Georgia, ui-serif, serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
}

.gcs-v2-next-action p {
  max-width: 640px;
  margin: 0;
  color: var(--v2-muted);
}

.gcs-v2-page {
  padding: 58px 0 88px;
}

.gcs-v2-auth {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
}

.gcs-v2-auth-art {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 100vh;
  padding: 48px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(214, 168, 77, 0.17), transparent 42%),
    var(--v2-bg-deep);
}

.gcs-v2-auth-art::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(214, 168, 77, 0.16);
  border-radius: 16px;
  transform: rotate(-4deg);
}

.gcs-v2-auth-form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.gcs-v2-form-stack {
  width: min(430px, 100%);
}

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

.gcs-v2-field + .gcs-v2-field,
.gcs-v2-form-stack .gcs-v2-btn,
.gcs-v2-form-stack .gcs-v2-panel {
  margin-top: 18px;
}

.gcs-v2-label,
.gcs-v2-field label {
  color: var(--v2-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gcs-v2-input,
.gcs-v2-textarea,
.gcs-v2-select,
.gcs-v2-field input,
.gcs-v2-field textarea,
.gcs-v2-field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--v2-text);
  font: inherit;
}

.gcs-v2-roi-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  border: 0;
}

.gcs-v2-roi-plan {
  position: relative;
  min-width: 0;
  min-height: 112px;
  display: grid;
  align-items: stretch;
  border: 1px solid rgba(255, 248, 232, 0.2);
  border-radius: var(--v2-radius);
  background: #2f2b26;
  color: #f6efe1;
  cursor: pointer;
}

.gcs-v2-roi-plan input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gcs-v2-roi-plan span {
  display: grid;
  align-content: center;
  gap: 8px;
  min-width: 0;
  padding: 16px;
  border-radius: var(--v2-radius);
  color: inherit;
}

.gcs-v2-roi-plan strong,
.gcs-v2-roi-plan small {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  color: inherit;
}

.gcs-v2-roi-plan strong {
  font-size: 17px;
  line-height: 1.2;
}

.gcs-v2-roi-plan small {
  font-size: 14px;
  font-weight: 800;
}

.gcs-v2-roi-plan:has(input:checked) {
  border-color: rgba(240, 209, 138, 0.84);
  background: #f0d18a;
  color: #211d18;
  box-shadow: inset 0 0 0 1px rgba(33, 29, 24, 0.18);
}

.gcs-v2-roi-plan:has(input:focus-visible) {
  outline: 2px solid rgba(240, 209, 138, 0.82);
  outline-offset: 3px;
}

.gcs-v2-field textarea,
.gcs-v2-textarea {
  min-height: 104px;
  resize: vertical;
}

.gcs-v2-field input:focus,
.gcs-v2-field textarea:focus,
.gcs-v2-field select:focus,
.gcs-v2-input:focus,
.gcs-v2-textarea:focus {
  outline: 2px solid rgba(214, 168, 77, 0.42);
  outline-offset: 2px;
}

.gcs-v2-error {
  color: var(--v2-red);
  font-size: 13px;
}

.gcs-v2-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--v2-soft);
}

.gcs-v2-checkbox input {
  margin-top: 4px;
}

.gcs-v2-body .gcs-v2-checkbox,
.gcs-v2-body .gcs-v2-checkbox span,
.gcs-v2-body .gcs-v2-checkbox a {
  color: var(--v2-soft) !important;
}

.gcs-v2-wizard-page {
  min-height: 100vh;
}

.gcs-v2-wizard-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 248, 232, 0.08);
  background: rgba(31, 29, 25, 0.9);
  backdrop-filter: blur(18px);
}

.gcs-v2-wizard-topbar-inner {
  width: min(780px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.gcs-v2-progress {
  width: min(780px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding-bottom: 12px;
}

.gcs-v2-progress span {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.gcs-v2-progress span.is-active {
  background: linear-gradient(135deg, #f0d18a, #d2a044);
}

.gcs-v2-wizard {
  width: min(780px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 84px;
}

.gcs-v2-wizard-stage[hidden] {
  display: none !important;
}

.gcs-v2-wizard-stage {
  animation: gcs-v2-rise 0.28s ease-out both;
}

@keyframes gcs-v2-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gcs-v2-stage-body {
  margin-top: 32px;
}

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

.gcs-v2-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

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

.gcs-v2-choice-card,
.gcs-v2-chip {
  position: relative;
  display: grid;
  gap: 8px;
  min-width: 0;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  padding: 15px;
  background: #312e29;
  color: var(--v2-text);
  cursor: pointer;
}

.gcs-v2-choice-card {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  min-height: 148px;
  padding: 17px 46px 17px 16px;
}

.gcs-v2-choice-card:not(:has(.gcs-v2-choice-icon)) {
  grid-template-columns: minmax(0, 1fr);
}

.gcs-v2-choice-card *,
.gcs-v2-chip * {
  color: inherit;
}

.gcs-v2-choice-card input,
.gcs-v2-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gcs-v2-choice-card strong,
.gcs-v2-chip span {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.gcs-v2-choice-card small,
.gcs-v2-chip small {
  color: #f6efe1;
  font-size: 13px;
  line-height: 1.4;
}

.gcs-v2-choice-card.is-selected,
.gcs-v2-chip.is-selected {
  border-color: var(--v2-line-strong);
  background: #3f3524;
  color: #fff8e8;
  box-shadow: inset 0 0 0 1px rgba(214, 168, 77, 0.12);
}

.gcs-v2-choice-card.is-selected::after,
.gcs-v2-chip.is-selected::after {
  content: "\2713";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--v2-brass);
  color: #211d18;
  font-size: 13px;
  font-weight: 900;
}

.gcs-v2-choice-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: var(--v2-brass-2);
}

.gcs-v2-choice-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gcs-v2-choice-content {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.gcs-v2-choice-title,
.gcs-v2-choice-detail {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.gcs-v2-choice-title {
  padding-top: 1px;
  font-weight: 900;
  line-height: 1.25;
}

.gcs-v2-choice-detail {
  color: var(--v2-soft);
  font-size: 13px;
  line-height: 1.4;
}

.gcs-v2-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gcs-v2-chip {
  display: inline-grid;
  width: auto;
  max-width: 100%;
  padding-right: 40px;
}

.gcs-v2-advanced {
  margin-top: 24px;
}

details.gcs-v2-preset-drawer:not([open]) .gcs-v2-choice-grid,
details.gcs-v2-preset-drawer:not([open]) [data-custom-for] {
  display: none;
}

.gcs-v2-preset-summary {
  width: max-content;
  max-width: 100%;
  list-style: none;
}

.gcs-v2-preset-summary::-webkit-details-marker {
  display: none;
}

.gcs-v2-preset-summary::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid currentColor;
}

details.gcs-v2-preset-drawer[open] .gcs-v2-preset-summary::before {
  transform: rotate(90deg);
}

.gcs-v2-advanced summary {
  cursor: pointer;
  color: var(--v2-brass-2);
  font-weight: 800;
}

.gcs-v2-advanced > div {
  margin-top: 18px;
}

.gcs-v2-wizard-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--v2-line);
}

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

.gcs-v2-recommendation-panel {
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  padding: 22px;
  background: rgba(49, 46, 41, 0.78);
  box-shadow: var(--v2-shadow);
}

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

.gcs-v2-recommendation-facts div {
  min-width: 0;
  border: 1px solid rgba(255, 248, 232, 0.1);
  border-radius: var(--v2-radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.gcs-v2-recommendation-facts span,
.gcs-v2-recommendation-section .gcs-v2-eyebrow {
  display: block;
  margin-bottom: 6px;
}

.gcs-v2-recommendation-facts span {
  color: var(--v2-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gcs-v2-recommendation-facts strong,
.gcs-v2-recommendation-pill strong,
.gcs-v2-alternative strong {
  display: block;
  min-width: 0;
  color: var(--v2-text);
  overflow-wrap: anywhere;
}

.gcs-v2-recommendation-section {
  margin-top: 22px;
}

.gcs-v2-recommendation-pills,
.gcs-v2-replace-targets,
.gcs-v2-alternative-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gcs-v2-recommendation-pill {
  display: inline-grid;
  gap: 4px;
  max-width: 100%;
  border: 1px solid rgba(214, 168, 77, 0.34);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(214, 168, 77, 0.11);
  color: var(--v2-text);
}

.gcs-v2-recommendation-pill small,
.gcs-v2-alternative small {
  color: var(--v2-soft);
  font-size: 12px;
  line-height: 1.35;
}

.gcs-v2-recommendation-editor {
  margin-top: 18px;
}

.gcs-v2-recommendation-editor summary {
  width: max-content;
  max-width: 100%;
  list-style: none;
}

.gcs-v2-recommendation-editor summary::-webkit-details-marker {
  display: none;
}

.gcs-v2-recommendation-editor-body {
  display: grid;
  gap: 16px;
  margin-top: 14px;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.gcs-v2-replace-pill,
.gcs-v2-alternative {
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  background: rgba(255, 248, 232, 0.04);
  color: var(--v2-text);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.gcs-v2-replace-pill {
  padding: 8px 10px;
}

.gcs-v2-replace-pill.is-active {
  border-color: var(--v2-line-strong);
  background: rgba(214, 168, 77, 0.16);
  color: var(--v2-brass-2);
}

.gcs-v2-alternative {
  display: grid;
  gap: 4px;
  max-width: 100%;
  padding: 11px 12px;
  text-align: left;
}

.gcs-v2-license-summary {
  margin-bottom: 18px;
}

.gcs-v2-result-checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gcs-v2-result-checklist li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--v2-soft);
  min-width: 0;
  overflow-wrap: anywhere;
}

.gcs-v2-page .gcs-v2-narrow > .gcs-v2-icon-tile:first-child {
  font-size: 0 !important;
}

.gcs-v2-page .gcs-v2-narrow > .gcs-v2-icon-tile:first-child::before {
  content: "OK";
  font-size: 13px;
  font-weight: 900;
}

.gcs-v2-result-checklist li::before {
  content: "OK";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(214, 168, 77, 0.16);
  color: var(--v2-brass-2);
}

.gcs-v2-legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  min-width: 0;
}

.gcs-v2-toc {
  position: sticky;
  top: 90px;
  align-self: start;
}

.gcs-v2-toc a {
  display: block;
  padding: 8px 0;
  color: var(--v2-muted);
  text-decoration: none;
  font-size: 14px;
}

.gcs-v2-toc a:hover {
  color: var(--v2-text);
}

.gcs-v2-legal-body {
  display: grid;
  gap: 34px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.gcs-v2-legal-body p,
.gcs-v2-legal-body li {
  color: var(--v2-soft);
  min-width: 0;
  overflow-wrap: anywhere;
}

.gcs-v2-flash-wrap {
  width: min(var(--v2-max), calc(100% - 40px));
  margin: 18px auto 0;
  display: grid;
  gap: 8px;
}

.gcs-v2-flash {
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--v2-soft);
}

.gcs-v2-flash-error {
  border-color: rgba(255, 155, 134, 0.38);
}

.gcs-v2-footer {
  border-top: 1px solid rgba(255, 248, 232, 0.08);
  background: rgba(25, 23, 20, 0.72);
}

.gcs-v2-footer-inner {
  width: min(var(--v2-max), calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--v2-muted);
  font-size: 13px;
}

.gcs-v2-mobile-menu {
  display: none;
}

.gcs-v2-intake-shell .gcs-v2-topbar-inner {
  width: min(760px, calc(100% - 32px));
}

@media (max-width: 980px) {
  .gcs-v2-hero-grid,
  .gcs-v2-auth,
  .gcs-v2-legal-layout {
    grid-template-columns: 1fr;
  }

  .gcs-v2-auth-art {
    display: none;
  }

  .gcs-v2-grid-3,
  .gcs-v2-grid-4,
  .gcs-v2-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gcs-v2-section-head,
  .gcs-v2-next-action-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .gcs-v2-status-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--v2-line);
  }

  .gcs-v2-toc {
    position: static;
  }
}

@media (max-width: 820px) {
  .gcs-v2-nav,
  .gcs-v2-app-nav,
  .gcs-v2-top-actions {
    display: none;
  }

  .gcs-v2-mobile-menu {
    display: block;
  }

  .gcs-v2-mobile-menu summary {
    list-style: none;
  }

  .gcs-v2-mobile-menu[open] summary {
    color: var(--v2-brass-2);
  }

  .gcs-v2-mobile-panel {
    position: absolute;
    right: 16px;
    top: 66px;
    width: min(300px, calc(100vw - 32px));
    display: grid;
    gap: 6px;
    border: 1px solid var(--v2-line);
    border-radius: var(--v2-radius);
    padding: 12px;
    background: var(--v2-surface);
    box-shadow: var(--v2-shadow);
  }

  .gcs-v2-mobile-panel a {
    padding: 11px;
    color: var(--v2-soft);
    text-decoration: none;
  }

  .gcs-v2-context {
    display: none;
  }

  .gcs-v2-hero {
    padding: 64px 0 56px;
  }

  .gcs-v2-grid-2,
  .gcs-v2-grid-3,
  .gcs-v2-grid-4,
  .gcs-v2-choice-grid,
  .gcs-v2-roi-plans,
  .gcs-v2-form-grid,
  .gcs-v2-summary-grid,
  .gcs-v2-recommendation-facts,
  .gcs-v2-proof-strip {
    grid-template-columns: 1fr;
  }

  .gcs-v2-workbench-row {
    grid-template-columns: 1fr;
  }

  .gcs-v2-footer-inner,
  .gcs-v2-wizard-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gcs-v2-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .gcs-v2-container,
  .gcs-v2-narrow,
  .gcs-v2-flash-wrap {
    width: calc(100% - 24px);
  }

  .gcs-v2-topbar-inner,
  .gcs-v2-wizard-topbar-inner,
  .gcs-v2-progress {
    width: calc(100% - 24px);
    gap: 10px;
  }

  .gcs-v2-brand {
    min-width: 0;
  }

  .gcs-v2-brand-name,
  .gcs-v2-brand-sub {
    overflow-wrap: anywhere;
  }

  .gcs-v2-h1 {
    font-size: 36px;
    overflow-wrap: anywhere;
  }

  .gcs-v2-page {
    padding: 44px 0 68px;
  }
}
