:root {
  --gc-bg: #081325;
  --gc-bg-deep: #040b17;
  --gc-panel: #131f36;
  --gc-panel-soft: #1a2842;
  --gc-panel-strong: #22314d;
  --gc-text: #f6f7fb;
  --gc-muted: #b6c0d5;
  --gc-muted-strong: #d6dcf0;
  --gc-accent: #47f1e4;
  --gc-accent-strong: #1fd3c7;
  --gc-outline: rgba(145, 169, 209, 0.18);
  --gc-outline-strong: rgba(145, 169, 209, 0.32);
  --gc-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

html {
  scroll-behavior: smooth;
}

body.gc-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(71, 241, 228, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(26, 64, 120, 0.22), transparent 30%),
    linear-gradient(180deg, #071122 0%, #091427 42%, #081120 100%);
  color: var(--gc-text);
  font-family: 'Inter', system-ui, sans-serif;
}

body.gc-body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(128, 157, 202, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 157, 202, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 88%);
  pointer-events: none;
  z-index: 0;
}

main,
.gc-header,
.gc-footer {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
}

.gc-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.gc-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 17, 34, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(91, 114, 155, 0.14);
}

.gc-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5rem;
}

.gc-brand,
.gc-brand:visited {
  color: var(--gc-text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.gc-brand-footer {
  display: inline-block;
  margin-bottom: 1rem;
}

.gc-nav-panel,
.gc-nav-links,
.gc-nav-actions {
  display: flex;
  align-items: center;
}

.gc-nav-panel {
  flex: 1;
  justify-content: space-between;
  gap: 2rem;
}

.gc-nav-links {
  gap: 1.75rem;
  margin: 0 auto;
}

.gc-nav-links a,
.gc-footer a {
  color: var(--gc-muted);
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.gc-nav-links a:hover,
.gc-footer a:hover {
  color: var(--gc-text);
}

.gc-nav-actions {
  gap: 0.9rem;
}

.gc-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(145, 169, 209, 0.18);
  background: rgba(15, 28, 50, 0.72);
}

.gc-nav-icon svg,
.gc-card-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.gc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.35rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.gc-button-primary {
  background: linear-gradient(135deg, var(--gc-accent) 0%, var(--gc-accent-strong) 100%);
  color: #031a22;
  box-shadow: 0 14px 36px rgba(71, 241, 228, 0.18);
}

.gc-button-secondary {
  border-color: rgba(145, 169, 209, 0.32);
  background: rgba(20, 30, 50, 0.46);
  color: var(--gc-text);
}

.gc-button-secondary:hover,
.gc-nav-icon:hover {
  border-color: rgba(145, 169, 209, 0.44);
  background: rgba(26, 40, 66, 0.8);
}

.gc-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.gc-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--gc-text);
}

.gc-hero {
  padding: 4rem 0 6rem;
}

.gc-hero-grid,
.gc-manifesto-grid,
.gc-footer-grid {
  display: grid;
  gap: 2.5rem;
}

.gc-hero-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  align-items: center;
  min-height: calc(100vh - 5rem);
}

.gc-eyebrow,
.gc-kicker {
  margin: 0 0 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(211, 220, 240, 0.7);
}

.gc-kicker {
  position: relative;
  width: 2.8rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gc-accent), transparent);
}

.gc-hero-copy h1,
.gc-section-heading h2 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.gc-hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.5rem, 8vw, 5.7rem);
  line-height: 0.94;
}

.gc-hero-copy h1 span,
.gc-section-heading h2 span {
  color: var(--gc-accent);
}

.gc-lead,
.gc-section-copy,
.gc-card p,
.gc-manifesto-list span,
.gc-footer-copy,
.gc-testimonial-meta span {
  color: var(--gc-muted);
}

.gc-lead {
  max-width: 35rem;
  margin: 1.6rem 0 0;
  font-size: 1.06rem;
  line-height: 1.72;
}

.gc-action-row,
.gc-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.gc-action-row {
  margin-top: 2rem;
}

.gc-proof-strip {
  margin-top: 1.6rem;
}

.gc-proof-strip span {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(145, 169, 209, 0.12);
  background: rgba(19, 31, 54, 0.74);
  color: var(--gc-muted-strong);
  font-size: 0.82rem;
}

.gc-hero-stage {
  position: relative;
  min-height: 40rem;
}

.gc-stage-halo {
  position: absolute;
  inset: 5% 8% auto auto;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(71, 241, 228, 0.18), rgba(71, 241, 228, 0.02) 48%, transparent 72%);
  filter: blur(10px);
}

.gc-stage-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(8, 16, 31, 0.1), rgba(8, 16, 31, 0.72)),
    radial-gradient(circle at 50% 24%, rgba(132, 148, 188, 0.34), rgba(12, 20, 36, 0.08) 16%, transparent 20%),
    radial-gradient(circle at 50% 42%, rgba(74, 91, 126, 0.68), rgba(8, 16, 31, 0.1) 28%, transparent 45%),
    radial-gradient(ellipse at 50% 78%, rgba(28, 39, 63, 0.86), transparent 42%),
    linear-gradient(145deg, #0b1730 0%, #071121 100%);
  box-shadow: var(--gc-shadow);
}

.gc-stage-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 19, 37, 0.88) 0%, rgba(8, 19, 37, 0.42) 24%, rgba(8, 19, 37, 0.14) 42%, rgba(8, 19, 37, 0.54) 100%);
}

.gc-stage-grid,
.gc-stage-silhouette,
.gc-stage-rings,
.gc-stage-nodes {
  position: absolute;
  inset: 0;
}

.gc-stage-grid {
  background-image:
    linear-gradient(rgba(93, 121, 170, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 121, 170, 0.12) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black 32%, transparent 72%);
  opacity: 0.35;
}

.gc-stage-silhouette::before,
.gc-stage-silhouette::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}

.gc-stage-silhouette::before {
  top: 14%;
  width: 43%;
  height: 42%;
  background:
    radial-gradient(circle at 50% 22%, rgba(208, 216, 238, 0.08), transparent 28%),
    radial-gradient(circle at 50% 46%, rgba(18, 25, 44, 0.18), transparent 48%),
    radial-gradient(circle at 50% 50%, rgba(6, 10, 20, 0.88), rgba(6, 10, 20, 0.98) 66%);
  filter: blur(0.5px);
}

.gc-stage-silhouette::after {
  bottom: -8%;
  width: 76%;
  height: 58%;
  background: radial-gradient(ellipse at center top, rgba(21, 30, 49, 0.7), rgba(5, 10, 20, 0.96) 58%);
}

.gc-stage-rings span {
  position: absolute;
  left: 50%;
  top: 38%;
  border-radius: 50%;
  border: 1px solid rgba(71, 241, 228, 0.18);
  transform: translate(-50%, -50%);
}

.gc-stage-rings span:nth-child(1) {
  width: 18rem;
  height: 18rem;
}

.gc-stage-rings span:nth-child(2) {
  width: 25rem;
  height: 25rem;
  border-color: rgba(104, 132, 186, 0.18);
}

.gc-stage-rings span:nth-child(3) {
  width: 32rem;
  height: 32rem;
  border-color: rgba(104, 132, 186, 0.1);
}

.node {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--gc-accent);
  box-shadow: 0 0 0 0.45rem rgba(71, 241, 228, 0.08);
}

.node-a { top: 18%; left: 68%; }
.node-b { top: 28%; left: 25%; }
.node-c { top: 49%; left: 74%; }
.node-d { top: 56%; left: 17%; }
.node-e { top: 73%; left: 56%; }

.gc-stage-caption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  width: min(19rem, 70%);
  padding: 1rem 1.15rem;
  border: 1px solid rgba(145, 169, 209, 0.16);
  border-radius: 1rem;
  background: rgba(14, 23, 40, 0.76);
  backdrop-filter: blur(14px);
  color: var(--gc-muted-strong);
  line-height: 1.55;
}

.gc-section {
  padding: 5.5rem 0;
}

.gc-section-muted {
  background: linear-gradient(180deg, rgba(19, 31, 54, 0.86), rgba(15, 24, 42, 0.72));
}

.gc-section-centered {
  text-align: center;
}

.gc-section-heading {
  margin-bottom: 2.4rem;
}

.gc-section-heading-left {
  max-width: 42rem;
}

.gc-section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1;
}

.gc-section-copy {
  max-width: 38rem;
  margin-top: 1rem;
  line-height: 1.72;
}

.gc-section-copy-centered {
  margin-left: auto;
  margin-right: auto;
}

.gc-card-grid,
.gc-suite-grid,
.gc-testimonial-grid {
  display: grid;
  gap: 1.25rem;
}

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

.gc-card,
.gc-suite-card,
.gc-testimonial {
  border-radius: 1rem;
  background: rgba(19, 31, 54, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.gc-card {
  min-height: 15rem;
  padding: 1.5rem;
  transition: transform 180ms ease, background 180ms ease;
}

.gc-card:hover,
.gc-suite-card:hover,
.gc-testimonial:hover {
  transform: translateY(-2px);
  background: rgba(26, 40, 66, 0.96);
}

.gc-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.3rem;
  border-radius: 0.75rem;
  color: var(--gc-accent);
  background: rgba(71, 241, 228, 0.08);
}

.gc-card h3,
.gc-manifesto-list strong,
.gc-footer h3,
.gc-testimonial-meta strong {
  color: var(--gc-text);
}

.gc-card h3 {
  margin: 0 0 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
}

.gc-card p,
.gc-testimonial p,
.gc-suite-card span {
  margin: 0;
  line-height: 1.7;
}

.gc-manifesto-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  align-items: center;
}

.gc-manifesto-list {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.gc-manifesto-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.85rem 1rem;
  padding: 0.2rem 0;
}

.gc-manifesto-list li::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gc-accent) 0%, var(--gc-accent-strong) 55%, rgba(71, 241, 228, 0.16) 56%);
  box-shadow: 0 0 0 0.32rem rgba(71, 241, 228, 0.08);
}

.gc-manifesto-list strong,
.gc-manifesto-list span {
  grid-column: 2;
  display: block;
}

.gc-manifesto-stage {
  display: grid;
  place-items: center;
  min-height: 32rem;
}

.gc-pillars {
  position: relative;
  width: min(31rem, 100%);
  height: 27rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.35rem;
  padding: 0 1rem 1rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(16, 22, 35, 0.12) 18%, rgba(10, 16, 29, 0.6) 100%),
    #f0f1f4;
  box-shadow: var(--gc-shadow);
}

.gc-pillars::before,
.gc-pillars::after {
  content: "";
  position: absolute;
  left: 2rem;
  right: 2rem;
  border-radius: 999px;
  background: rgba(29, 34, 45, 0.1);
}

.gc-pillars::before {
  bottom: 2.2rem;
  height: 0.9rem;
}

.gc-pillars::after {
  bottom: 0.8rem;
  height: 1.15rem;
}

.gc-pillar {
  position: relative;
  width: 25%;
  min-width: 4.8rem;
  height: 72%;
  border-radius: 0.8rem 0.8rem 0.45rem 0.45rem;
  background:
    linear-gradient(90deg, #3d3d3d 0%, #111 16%, #5f5f5f 28%, #1f1f1f 42%, #8b8b8b 56%, #191919 70%, #686868 100%);
  box-shadow: inset -8px 0 18px rgba(255, 255, 255, 0.12), inset 8px 0 18px rgba(0, 0, 0, 0.35), 0 12px 28px rgba(0, 0, 0, 0.28);
}

.gc-pillar::before,
.gc-pillar::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 126%;
  border-radius: 1rem;
  background: linear-gradient(180deg, #8e8e8e, #1b1b1b);
}

.gc-pillar::before {
  top: -1.4rem;
  height: 1.6rem;
}

.gc-pillar::after {
  bottom: -1.35rem;
  height: 1.5rem;
}

.gc-pillar-left,
.gc-pillar-right {
  height: 61%;
  width: 19%;
}

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

.gc-suite-card {
  min-height: 7rem;
  display: grid;
  place-items: center;
  padding: 1.3rem;
}

.gc-suite-card span {
  position: relative;
  color: var(--gc-text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.gc-suite-card span::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2px;
  margin: 0.75rem auto 0;
  background: rgba(71, 241, 228, 0.72);
}

.gc-proof-heading {
  margin-bottom: 2rem;
}

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

.gc-testimonial {
  padding: 1.7rem;
}

.gc-testimonial p {
  margin-bottom: 1.35rem;
  color: var(--gc-text);
  font-size: 1.06rem;
  font-style: italic;
}

.gc-testimonial-meta strong,
.gc-testimonial-meta span {
  display: block;
}

.gc-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(91, 114, 155, 0.14);
}

.gc-footer-grid {
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.gc-footer h3 {
  margin: 0 0 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
}

.gc-footer-copy {
  max-width: 19rem;
  line-height: 1.7;
}

.gc-footer a {
  display: block;
  margin-bottom: 0.75rem;
}

.gc-footer-text {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--gc-muted);
}

.gc-internal-body {
  min-height: 100vh;
  background: #06111f;
  color: #e7eef8;
}

.gc-internal-nav {
  border-bottom: 1px solid rgba(71, 241, 228, 0.18);
  background: rgba(6, 17, 31, 0.92);
}

.gc-internal-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
}

.gc-internal-brand {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
}

.gc-internal-subtitle {
  margin: 0.2rem 0 0;
  color: #8ca3bd;
  font-size: 0.9rem;
}

.gc-internal-links {
  display: flex;
  gap: 1rem;
}

.gc-internal-links a {
  color: #9db8d6;
}

.gc-internal-user {
  display: grid;
  justify-items: end;
  gap: 0.15rem;
  font-size: 0.9rem;
}

.gc-internal-user span {
  color: #8ca3bd;
}

.gc-internal-main {
  padding: 2.5rem 0 4rem;
}

.gc-admin-shell {
  display: grid;
  gap: 2rem;
}

.gc-admin-hero,
.gc-admin-panel {
  border: 1px solid rgba(71, 241, 228, 0.18);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(12, 23, 38, 0.98), rgba(7, 15, 27, 0.96));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.gc-admin-hero {
  padding: 2rem;
}

.gc-admin-kicker {
  margin: 0 0 0.5rem;
  color: #47f1e4;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.gc-admin-hero h1,
.gc-admin-panel h2 {
  color: #ffffff;
}

.gc-admin-copy,
.gc-admin-panel-header p,
.gc-admin-muted {
  color: #8ca3bd;
}

.gc-admin-panel {
  padding: 1.5rem;
}

.gc-admin-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.gc-admin-table-wrap {
  overflow-x: auto;
}

.gc-admin-table {
  width: 100%;
  border-collapse: collapse;
}

.gc-admin-table th,
.gc-admin-table td {
  padding: 0.9rem 0.75rem;
  border-bottom: 1px solid rgba(140, 163, 189, 0.18);
  text-align: left;
  vertical-align: top;
}

.gc-admin-table th {
  color: #9db8d6;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gc-admin-table td {
  color: #e7eef8;
}

.gc-admin-table a {
  color: #47f1e4;
}

.gc-admin-actions {
  white-space: nowrap;
}

.gc-delete-lead-button {
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 135, 135, 0.35);
  border-radius: 999px;
  background: rgba(255, 135, 135, 0.08);
  color: #ffb3b3;
  cursor: pointer;
}

.gc-delete-lead-button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.gc-admin-empty-state {
  padding: 2rem 1rem;
  text-align: center;
  color: #8ca3bd;
}

.gc-admin-feedback {
  min-height: 1.4rem;
  margin: 1rem 0 0;
  color: #47f1e4;
}

.gc-admin-feedback[data-state="error"] {
  color: #ffb3b3;
}

@media (max-width: 900px) {
  .gc-internal-nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .gc-internal-user {
    justify-items: start;
  }
}

.gc-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(91, 114, 155, 0.14);
  color: var(--gc-muted);
  font-size: 0.9rem;
}

.gc-footer-bottom p,
.gc-footer-bottom div {
  margin: 0;
}

.gc-footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

@media (max-width: 1023px) {
  .gc-nav-toggle {
    display: inline-flex;
  }

  .gc-nav-panel {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid rgba(145, 169, 209, 0.12);
    border-radius: 1rem;
    background: rgba(11, 21, 38, 0.96);
    box-shadow: var(--gc-shadow);
  }

  .gc-nav-panel.is-open {
    display: flex;
  }

  .gc-nav-links,
  .gc-nav-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .gc-nav-links {
    gap: 0.1rem;
    margin: 0;
  }

  .gc-nav-links a,
  .gc-nav-actions .gc-button,
  .gc-nav-icon {
    justify-content: center;
    width: 100%;
  }

  .gc-nav-links a {
    padding: 0.8rem 0.9rem;
    border-radius: 0.7rem;
  }

  .gc-nav-links a:hover {
    background: rgba(26, 40, 66, 0.72);
  }

  .gc-hero {
    padding-top: 2.5rem;
  }

  .gc-hero-grid,
  .gc-manifesto-grid,
  .gc-footer-grid,
  .gc-card-grid,
  .gc-suite-grid,
  .gc-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .gc-hero-grid {
    min-height: auto;
  }

  .gc-hero-copy h1 {
    max-width: 12ch;
  }

  .gc-hero-stage {
    min-height: 28rem;
  }

  .gc-stage-rings span:nth-child(1) {
    width: 14rem;
    height: 14rem;
  }

  .gc-stage-rings span:nth-child(2) {
    width: 19rem;
    height: 19rem;
  }

  .gc-stage-rings span:nth-child(3) {
    width: 24rem;
    height: 24rem;
  }

  .gc-footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .gc-shell {
    width: min(100% - 1.25rem, 100%);
  }

  .gc-header {
    position: static;
  }

  .gc-nav {
    min-height: 4.4rem;
  }

  .gc-hero {
    padding: 1.5rem 0 4rem;
  }

  .gc-hero-copy h1 {
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

  .gc-lead,
  .gc-section-copy,
  .gc-card p,
  .gc-testimonial p {
    font-size: 0.98rem;
  }

  .gc-stage-caption {
    left: 1rem;
    right: 1rem;
    width: auto;
  }

  .gc-card,
  .gc-testimonial,
  .gc-suite-card {
    padding: 1.25rem;
  }

  .gc-manifesto-stage {
    min-height: 22rem;
  }

  .gc-pillars {
    height: 20rem;
  }

  .gc-footer-bottom div {
    gap: 0.9rem;
  }
}
