.cg-form-body {
  margin: 0;
  min-height: 100vh;
  background: #0e0f0d;
  color: #eceae4;
}
.cg-form-body .cg-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(14, 15, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cg-form-body .cg-nav-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.cg-form-body .cg-nav .nav_logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  width: auto;
  height: auto;
  aspect-ratio: auto;
}
.cg-form-body .nav_wordmark {
  font-family: var(--_typography---heading-1--font), "Space Grotesk", Inter, sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.cg-form-body .cg-nav-actions .btn.cc-secondary {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
}
.cg-form-shell {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 4.5rem 0 6rem;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: start;
}
.cg-kicker {
  font-family: Inter, Helvetica, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f26430;
  margin: 0 0 1rem;
}
.cg-form-shell h1 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 1.25rem;
  color: #fff;
}
.cg-lede {
  font-family: Inter, sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(236, 234, 228, 0.72);
  max-width: 36rem;
  margin: 0;
}
.cg-card {
  background: #161714;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
}
.cg-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cg-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.cg-field label,
.cg-check {
  font-family: Inter, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(236, 234, 228, 0.7);
}
.cg-field input,
.cg-field select,
.cg-field textarea {
  width: 100%;
  box-sizing: border-box;
  min-height: 3rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: #0e0f0d;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 1rem;
}
.cg-field textarea { min-height: 8rem; resize: vertical; }
.cg-field input:focus,
.cg-field select:focus,
.cg-field textarea:focus {
  outline: none;
  border-color: #f26430;
}
.cg-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
}
.cg-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  color: #eceae4;
  cursor: pointer;
}
.cg-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.05rem !important;
  height: 1.05rem !important;
  min-height: 0 !important;
  min-width: 1.05rem !important;
  max-width: 1.05rem !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  background: #0e0f0d !important;
  border-radius: 0;
  box-shadow: none;
}
.cg-check input[type="checkbox"]:checked {
  background: #f26430;
  border-color: #f26430;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path fill='none' stroke='white' stroke-width='2' d='M2 6.5l2.5 2.5L10 3'/></svg>");
  background-size: 0.75rem;
  background-repeat: no-repeat;
  background-position: center;
}
.cg-submit {
  appearance: none;
  border: 0;
  min-height: 3rem;
  padding: 0.85rem 1.4rem;
  background: #f26430;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.5rem;
}
.cg-submit:hover { background: #f58c66; }
.cg-success {
  display: none;
  padding: 2.5rem 0 1rem;
}
.cg-success.is-visible { display: block; }
.cg-form.is-hidden { display: none; }
.cg-success h2 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  color: #fff;
}
.cg-success p {
  font-family: Inter, sans-serif;
  color: rgba(236, 234, 228, 0.72);
  line-height: 1.5;
}
.cg-success a { color: #f26430; }
@media (max-width: 860px) {
  .cg-form-shell,
  .cg-row,
  .cg-checks { grid-template-columns: 1fr; }
  .cg-form-shell { padding-top: 2.5rem; gap: 2rem; }
}
