@font-face {
  font-family: 'Involve';
  src: url('../fonts/involve-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Involve';
  src: url('../fonts/involve-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ggc-void: #f7fbfb;
  --ggc-deep: #eaf6f6;
  --ggc-panel: #ffffff;
  --ggc-panel-alt: #f1f8f8;
  --ggc-rim: #d7e7e8;
  --ggc-accent-a: #fc5c64;
  --ggc-accent-b: #2b9297;
  --ggc-accent-c: #0f2645;
  --ggc-glow: rgba(252,92,100,0.16);
  --ggc-glow-b: rgba(43,146,151,0.16);
  --ggc-text-primary: #1f2f38;
  --ggc-text-secondary: #54656d;
  --ggc-text-muted: #7a8b93;
  --ggc-text-bright: #0f2645;
  --ggc-border: rgba(15,38,69,0.14);
  --ggc-border-soft: rgba(15,38,69,0.08);
  --ggc-radius-sm: 6px;
  --ggc-radius-md: 12px;
  --ggc-radius-lg: 20px;
  --ggc-radius-xl: 32px;
  --ggc-space-1: clamp(4px,0.5vw,8px);
  --ggc-space-2: clamp(8px,1vw,16px);
  --ggc-space-3: clamp(12px,1.5vw,24px);
  --ggc-space-4: clamp(16px,2vw,32px);
  --ggc-space-5: clamp(24px,3vw,48px);
  --ggc-space-6: clamp(32px,4vw,64px);
  --ggc-space-7: clamp(48px,6vw,96px);
  --ggc-space-8: clamp(64px,8vw,128px);
  --ggc-max-w: 1280px;
  --ggc-font: 'Involve', 'Segoe UI', 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --ggc-transition: 220ms cubic-bezier(0.4,0,0.2,1);
  --ggc-shadow-panel: 0 18px 48px rgba(15,38,69,0.08), 0 0 0 1px var(--ggc-border);
  --ggc-shadow-glow: 0 0 24px var(--ggc-glow);
}

*,*::before,*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--ggc-void);
  color: var(--ggc-text-primary);
  font-family: var(--ggc-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  background-color: var(--ggc-void);
  overflow-x: hidden;
}

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

a {
  color: var(--ggc-accent-a);
  text-decoration: none;
  transition: color var(--ggc-transition);
}

a:hover { color: var(--ggc-accent-b); }

a:focus-visible {
  outline: 2px solid var(--ggc-accent-a);
  outline-offset: 3px;
  border-radius: 3px;
}

ul, ol { list-style: none; }

button {
  font-family: var(--ggc-font);
  cursor: pointer;
  border: none;
  background: none;
}

button:focus-visible {
  outline: 2px solid var(--ggc-accent-a);
  outline-offset: 3px;
  border-radius: 3px;
}

h1,h2,h3,h4,h5,h6 {
  line-height: 1.25;
  color: var(--ggc-text-bright);
  font-weight: 700;
}

h1 { font-size: clamp(2rem,5vw,3.5rem); }
h2 { font-size: clamp(1.5rem,3.5vw,2.5rem); }
h3 { font-size: clamp(1.2rem,2.5vw,1.75rem); }
h4 { font-size: clamp(1rem,2vw,1.25rem); }

p { color: var(--ggc-text-secondary); font-size: clamp(0.9rem,1.5vw,1.05rem); line-height: 1.7; }

main { flex: 1; }

.ggc-container {
  width: 100%;
  max-width: var(--ggc-max-w);
  margin-inline: auto;
  padding-inline: clamp(16px,4vw,48px);
}

.ggc-section {
  padding-block: var(--ggc-space-7);
}

.ggc-section--alt {
  background-color: var(--ggc-deep);
}

.ggc-section--panel {
  background-color: var(--ggc-panel);
}

.ggc-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ggc-accent-b);
  padding: 4px 12px;
  border: 1px solid rgba(6,182,212,0.3);
  border-radius: 100px;
  margin-bottom: var(--ggc-space-3);
}

.ggc-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--ggc-accent-b);
  box-shadow: 0 0 8px var(--ggc-accent-b);
}

.ggc-heading-block {
  margin-bottom: var(--ggc-space-5);
}

.ggc-heading-block p {
  max-width: 60ch;
  margin-top: var(--ggc-space-2);
}

.ggc-heading-block--center {
  text-align: center;
}

.ggc-heading-block--center p {
  margin-inline: auto;
}

.ggc-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--ggc-accent-a), var(--ggc-accent-b));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: opacity var(--ggc-transition), transform var(--ggc-transition), box-shadow var(--ggc-transition);
  box-shadow: 0 4px 20px rgba(59,130,246,0.35);
  text-decoration: none;
}

.ggc-cta-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59,130,246,0.5);
  color: #fff;
}

.ggc-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ggc-accent-b);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 11px 24px;
  border-radius: 100px;
  border: 1px solid rgba(6,182,212,0.45);
  cursor: pointer;
  transition: background var(--ggc-transition), color var(--ggc-transition), box-shadow var(--ggc-transition);
  text-decoration: none;
}

.ggc-cta-secondary:hover {
  background: rgba(6,182,212,0.1);
  box-shadow: 0 0 16px var(--ggc-glow-b);
  color: var(--ggc-accent-b);
}

.ggc-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ggc-text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--ggc-transition);
}

.ggc-cta-ghost:hover { color: var(--ggc-accent-b); }

.lp-z9-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 113px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 180px;
  background: #FFFFFF;
}

.u-logo-wrapper {
  width: 81px;
  height: 81px;
  flex-shrink: 0;
}

.u-logo-wrapper a,
.u-logo-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
}

.u-logo-wrapper img {
  object-fit: contain;
}

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

.nav-m-links a {
  text-decoration: none;
  color: #0F2645;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  transition: opacity 0.3s;
}

.nav-m-links a:hover {
  color: #0F2645;
  opacity: 0.7;
}

.ggc-auth-open {
  overflow: hidden;
}

.ggc-auth-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ggc-auth-nav__btn,
.ggc-auth-mobile__btn,
.ggc-auth-submit,
.ggc-auth-switch {
  font-family: var(--ggc-font);
}

.ggc-auth-nav__btn,
.ggc-auth-mobile__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(15,38,69,0.14);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: transform var(--ggc-transition), opacity var(--ggc-transition), box-shadow var(--ggc-transition), background var(--ggc-transition);
}

.ggc-auth-nav__icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.ggc-auth-nav__btn:hover,
.ggc-auth-mobile__btn:hover,
.ggc-auth-submit:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.ggc-auth-nav__btn--ghost,
.ggc-auth-mobile__btn--ghost {
  background: #fff;
  color: var(--ggc-accent-c);
}

.ggc-auth-nav__btn--primary,
.ggc-auth-mobile__btn--primary,
.ggc-auth-submit {
  background: linear-gradient(135deg, var(--ggc-accent-a), var(--ggc-accent-b));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(43,146,151,0.16);
}

.ggc-auth-mobile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(320px, 100%);
}

.ggc-auth-mobile__btn {
  gap: 10px;
}

.ggc-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.ggc-auth-modal[hidden] {
  display: none;
}

.ggc-auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,17,31,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ggc-auth-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: min(90vh, 900px);
  overflow: hidden;
  border-radius: 28px;
  background: var(--ggc-panel);
  box-shadow: 0 24px 80px rgba(15,38,69,0.28);
  animation: ggc-auth-rise 220ms ease;
}

.ggc-auth-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--ggc-border);
  color: var(--ggc-accent-c);
  font-size: 1.8rem;
  line-height: 1;
}

.ggc-auth-modal__content {
  padding: 56px 40px 40px;
  overflow-y: auto;
}

.ggc-auth-modal__panel {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.ggc-auth-modal__panel.is-active {
  display: flex;
}

.ggc-auth-modal__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ggc-accent-b);
  font-weight: 800;
}

.ggc-auth-modal__panel h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.ggc-auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 6px;
}

.ggc-auth-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ggc-auth-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ggc-text-bright);
}

.ggc-auth-form input,
.ggc-auth-form textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 16px;
  border: 1px solid var(--ggc-border);
  background: #f8fbfd;
  color: var(--ggc-text-primary);
  font-size: 1rem;
}

.ggc-auth-form textarea {
  min-height: 110px;
  resize: vertical;
}

.ggc-auth-form input:focus,
.ggc-auth-form textarea:focus {
  outline: none;
  border-color: var(--ggc-accent-b);
  box-shadow: 0 0 0 4px rgba(43,146,151,0.12);
}

.ggc-auth-form__message {
  min-height: 24px;
  font-size: 0.85rem;
  font-weight: 700;
}

.ggc-auth-form__message.is-error {
  color: #c8354b;
}

.ggc-auth-form__message.is-success {
  color: var(--ggc-accent-b);
}

.ggc-auth-submit {
  min-height: 54px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
}

.ggc-auth-switch {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(15,38,69,0.14);
  background: #fff;
  color: var(--ggc-accent-c);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--ggc-transition), opacity var(--ggc-transition), box-shadow var(--ggc-transition), background var(--ggc-transition);
}

.ggc-auth-switch:hover {
  transform: translateY(-1px);
  opacity: 0.96;
  box-shadow: 0 10px 24px rgba(15,38,69,0.08);
}

@keyframes ggc-auth-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.burger-v1 {
  display: none;
  width: 32px;
  height: 24px;
  cursor: pointer;
  position: relative;
  z-index: 2001;
  flex-shrink: 0;
}

.burger-v1 span {
  display: block;
  width: 100%;
  height: 3px;
  margin-bottom: 6px;
  background-color: #0F2645;
  transition: all 0.3s ease;
}

.burger-v1 span:last-child {
  margin-bottom: 0;
}

.mobile-overlay-x {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 100px 24px 40px;
  background: rgba(255,255,255,0.98);
  transition: right 0.4s ease-in-out;
}

.mobile-overlay-x.active {
  right: 0;
}

.mobile-overlay-x a {
  font-size: 32px;
  color: #0F2645;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
}

.close-m-btn {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  color: #0F2645;
}

main {
  padding-top: 113px;
}

.f-footer-z8 {
  background: linear-gradient(112deg, #2b9297 0%, #fc5c64 100%);
  padding: 72px 48px 24px;
  color: #ffffff;
}

.f-main-v2 {
  display: grid;
  grid-template-columns: auto minmax(160px, 220px) 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.f-logo-x1 {
  width: 128px;
  height: 128px;
}

.f-logo-x1 a,
.f-logo-x1 img {
  display: block;
  width: 100%;
  height: 100%;
}

.f-logo-x1 img {
  object-fit: contain;
}

.f-links-f5 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.f-links-f5 a,
.f-legal-x2 a {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
}

.f-links-f5 a:hover,
.f-legal-x2 a:hover {
  color: rgba(255,255,255,0.82);
}

.f-info-z3 h4,
.f-disc-x4 h4 {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.f-info-z3 p,
.f-disc-x4 p {
  color: rgba(255,255,255,0.9);
  font-size: 0.98rem;
  line-height: 1.7;
}

.f-bottom-v9 {
  border-top: 1px solid rgba(255,255,255,0.28);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.f-legal-x2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
}

.f-copy-f9 {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .lp-z9-nav {
    padding-left: 80px;
    padding-right: 80px;
  }

  .nav-m-links {
    gap: 18px;
  }

  .nav-m-links a {
    font-size: 18px;
  }

  .f-footer-z8 {
    padding-inline: 24px;
  }

  .f-main-v2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .ggc-auth-nav {
    display: none;
  }

  .ggc-auth-modal {
    padding: 0;
  }

  .ggc-auth-modal__dialog {
    width: 100%;
    height: 100vh;
    max-height: none;
    border-radius: 0;
  }

  .ggc-auth-modal__content {
    padding: 32px 20px 24px;
  }

  .ggc-auth-form__grid {
    grid-template-columns: 1fr;
  }

  .lp-z9-nav {
    height: 80px;
    padding: 0 20px;
  }

  .u-logo-wrapper {
    width: 56px;
    height: 56px;
  }

  .nav-m-links {
    display: none;
  }

  .burger-v1 {
    display: block;
  }

  main {
    padding-top: 80px;
  }

  .f-footer-z8 {
    padding: 56px 20px 24px;
  }

  .f-main-v2 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .f-logo-x1 {
    margin: 0 auto;
  }

  .f-links-f5 {
    align-items: center;
  }

  .f-info-z3 h4,
  .f-disc-x4 h4 {
    font-size: 1.35rem;
  }

  .f-legal-x2 {
    flex-direction: column;
    gap: 12px;
  }
}

nav.orb-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ggc-border);
}

.orb-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ggc-space-3);
  height: 64px;
}

.orb-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.orb-nav__brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ggc-accent-a), var(--ggc-accent-c));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 0 14px var(--ggc-glow);
  flex-shrink: 0;
}

.orb-nav__brand-text {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ggc-text-bright);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.orb-nav__brand-text span {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--ggc-accent-b);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.orb-nav__links {
  display: flex;
  align-items: center;
  gap: var(--ggc-space-1);
  flex-wrap: nowrap;
}

.orb-nav__links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ggc-text-secondary);
  padding: 6px 10px;
  border-radius: var(--ggc-radius-sm);
  transition: color var(--ggc-transition), background var(--ggc-transition);
  white-space: nowrap;
  text-decoration: none;
}

.orb-nav__links a:hover,
.orb-nav__links a[aria-current="page"] {
  color: var(--ggc-accent-b);
  background: rgba(6,182,212,0.08);
}

.orb-nav__mobile-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--ggc-radius-sm);
  border: 1px solid var(--ggc-border);
  background: transparent;
  color: var(--ggc-text-primary);
  cursor: pointer;
  transition: background var(--ggc-transition);
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.orb-nav__mobile-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  transition: transform var(--ggc-transition), opacity var(--ggc-transition);
}

.orb-nav__mobile-btn:hover { background: rgba(59,130,246,0.1); }

.orb-nav__mobile-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.orb-nav__mobile-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.orb-nav__mobile-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.orb-nav__drawer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 clamp(16px,4vw,48px);
  border-top: 0 solid var(--ggc-border);
  background-color: rgba(255,255,255,0.98);
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms cubic-bezier(0.4,0,0.2,1),
              padding 280ms cubic-bezier(0.4,0,0.2,1),
              border-top-width 280ms step-end;
}

.orb-nav__drawer.is-open {
  max-height: 600px;
  overflow: visible;
  padding: var(--ggc-space-3) clamp(16px,4vw,48px);
  border-top-width: 1px;
}

.orb-nav__drawer a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ggc-text-secondary);
  padding: 10px 12px;
  border-radius: var(--ggc-radius-sm);
  transition: color var(--ggc-transition), background var(--ggc-transition);
  text-decoration: none;
}

.orb-nav__drawer a:hover,
.orb-nav__drawer a[aria-current="page"] {
  color: var(--ggc-accent-b);
  background: rgba(6,182,212,0.08);
}

@media (max-width: 900px) {
  .orb-nav__links { display: none; }
  .orb-nav__mobile-btn { display: flex; }
}

.panel-hero {
  position: relative;
  min-height: clamp(560px, 80vh, 860px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.panel-hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--ggc-void);
  z-index: 0;
}

.panel-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(59,130,246,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 60%, rgba(6,182,212,0.08) 0%, transparent 60%);
}

.panel-hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.1);
}

.panel-hero__ring--1 {
  width: 480px;
  height: 480px;
  top: -120px;
  right: -80px;
}

.panel-hero__ring--2 {
  width: 700px;
  height: 700px;
  top: -240px;
  right: -200px;
  border-color: rgba(6,182,212,0.07);
}

.panel-hero__ring--3 {
  width: 240px;
  height: 240px;
  bottom: 40px;
  left: -60px;
  border-color: rgba(129,140,248,0.12);
}

.panel-hero__inner {
  position: relative;
  z-index: 1;
}

.panel-hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ggc-space-6);
  align-items: center;
}

.panel-hero__content {
  padding-block: var(--ggc-space-7);
}

.panel-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ggc-accent-b);
  margin-bottom: var(--ggc-space-3);
}

.panel-hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--ggc-accent-b);
  box-shadow: 0 0 10px var(--ggc-accent-b), 0 0 20px rgba(6,182,212,0.4);
  animation: orb-pulse 2.4s ease-in-out infinite;
}

@keyframes orb-pulse {
  0%,100% { box-shadow: 0 0 10px var(--ggc-accent-b), 0 0 20px rgba(6,182,212,0.4); }
  50% { box-shadow: 0 0 16px var(--ggc-accent-b), 0 0 32px rgba(6,182,212,0.6); }
}

.panel-hero__title {
  font-size: clamp(2.2rem,5.5vw,4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ggc-text-bright);
  margin-bottom: var(--ggc-space-3);
}

.panel-hero__title-accent {
  background: linear-gradient(90deg, var(--ggc-accent-a), var(--ggc-accent-b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.panel-hero__body {
  color: var(--ggc-text-secondary);
  font-size: clamp(1rem,1.8vw,1.1rem);
  line-height: 1.7;
  margin-bottom: var(--ggc-space-4);
  max-width: 52ch;
}

.panel-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ggc-space-2);
  align-items: center;
  margin-bottom: var(--ggc-space-5);
}

.panel-hero__stats {
  display: flex;
  gap: var(--ggc-space-4);
  flex-wrap: wrap;
}

.panel-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.panel-hero__stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--ggc-text-bright);
  line-height: 1;
}

.panel-hero__stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ggc-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-hero__visual {
  position: relative;
}

.panel-hero__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--ggc-radius-lg);
  overflow: hidden;
  border: 1px solid var(--ggc-border);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px var(--ggc-border), inset 0 0 60px rgba(59,130,246,0.05);
}

.panel-hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-hero__badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background-color: var(--ggc-panel);
  border: 1px solid var(--ggc-border);
  border-radius: var(--ggc-radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--ggc-shadow-panel);
  z-index: 2;
}

.panel-hero__badge-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--ggc-radius-sm);
  background: linear-gradient(135deg, var(--ggc-accent-a), var(--ggc-accent-c));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.panel-hero__badge-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.panel-hero__badge-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ggc-text-bright);
}

.panel-hero__badge-sub {
  font-size: 0.68rem;
  color: var(--ggc-text-muted);
}

.orb-methodology {
  position: relative;
}

.orb-methodology__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--ggc-space-3);
  margin-top: var(--ggc-space-5);
}

.orb-methodology__step {
  background-color: var(--ggc-panel);
  border: 1px solid var(--ggc-border-soft);
  border-radius: var(--ggc-radius-md);
  padding: var(--ggc-space-4);
  position: relative;
  transition: border-color var(--ggc-transition), box-shadow var(--ggc-transition);
}

.orb-methodology__step:hover {
  border-color: var(--ggc-border);
  box-shadow: var(--ggc-shadow-glow);
}

.orb-methodology__num {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(59,130,246,0.15);
  line-height: 1;
  margin-bottom: var(--ggc-space-2);
  font-variant-numeric: tabular-nums;
}

.orb-methodology__step h4 { margin-bottom: 6px; }
.orb-methodology__step p { font-size: 0.875rem; }

.panel-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ggc-space-3);
  margin-top: var(--ggc-space-5);
}

.panel-comparison__col {
  background-color: var(--ggc-panel);
  border: 1px solid var(--ggc-border-soft);
  border-radius: var(--ggc-radius-lg);
  overflow: hidden;
}

.panel-comparison__header {
  padding: var(--ggc-space-3) var(--ggc-space-4);
  border-bottom: 1px solid var(--ggc-border-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel-comparison__icon {
  width: 32px;
  height: 32px;
  border-radius: var(--ggc-radius-sm);
  background: rgba(59,130,246,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.panel-comparison__col:nth-child(2) .panel-comparison__icon {
  background: rgba(6,182,212,0.15);
}

.panel-comparison__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ggc-text-bright);
}

.panel-comparison__body {
  padding: var(--ggc-space-4);
}

.panel-comparison__card {
  background-color: var(--ggc-panel);
  border: 1px solid var(--ggc-border-soft);
  border-radius: var(--ggc-radius-lg);
  box-shadow: var(--ggc-shadow-panel);
}

.panel-comparison__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel-comparison__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--ggc-text-secondary);
}

.panel-comparison__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(6,182,212,0.15);
  border: 1px solid rgba(6,182,212,0.3);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--ggc-accent-b);
}

.signal-games {
  position: relative;
}

.signal-games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--ggc-space-3);
  margin-top: var(--ggc-space-5);
}

.signal-games__card {
  background-color: var(--ggc-panel);
  border: 1px solid var(--ggc-border-soft);
  border-radius: var(--ggc-radius-md);
  overflow: hidden;
  transition: transform var(--ggc-transition), box-shadow var(--ggc-transition), border-color var(--ggc-transition);
}

.signal-games__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px var(--ggc-border);
}

.signal-games__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.signal-games__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ggc-transition);
}

.signal-games__card:hover .signal-games__img img {
  transform: scale(1.04);
}

.signal-games__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(6,11,20,0.85);
  border: 1px solid var(--ggc-border);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ggc-accent-b);
}

.signal-games__body {
  padding: var(--ggc-space-3) var(--ggc-space-4);
}

.signal-games__body h4 { margin-bottom: 6px; font-size: 1rem; }
.signal-games__body p { font-size: 0.85rem; color: var(--ggc-text-muted); }

.signal-games__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--ggc-space-3);
  padding-top: var(--ggc-space-2);
  border-top: 1px solid var(--ggc-border-soft);
}

.signal-games__platform {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ggc-text-muted);
}

.signal-games__difficulty {
  display: flex;
  gap: 3px;
}

.signal-games__diff-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--ggc-border-soft);
}

.signal-games__diff-dot.active {
  background-color: var(--ggc-accent-a);
}

.orb-checklist {
  margin-top: var(--ggc-space-5);
}

.orb-checklist__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--ggc-space-3);
}

.orb-checklist__item {
  background-color: var(--ggc-panel-alt);
  border: 1px solid var(--ggc-border-soft);
  border-radius: var(--ggc-radius-md);
  padding: var(--ggc-space-4);
  display: flex;
  gap: var(--ggc-space-3);
  align-items: flex-start;
  transition: border-color var(--ggc-transition);
}

.orb-checklist__item:hover {
  border-color: var(--ggc-border);
}

.orb-checklist__marker {
  width: 40px;
  height: 40px;
  border-radius: var(--ggc-radius-sm);
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(6,182,212,0.2));
  border: 1px solid rgba(59,130,246,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.orb-checklist__text h4 { font-size: 0.95rem; margin-bottom: 4px; }
.orb-checklist__text p { font-size: 0.82rem; }

.orb-timeline {
  position: relative;
  margin-top: var(--ggc-space-5);
}

.orb-timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--ggc-accent-a), var(--ggc-accent-b), transparent);
}

.orb-timeline__items {
  display: flex;
  flex-direction: column;
  gap: var(--ggc-space-4);
  padding-left: 56px;
}

.orb-timeline__item {
  position: relative;
}

.orb-timeline__dot {
  position: absolute;
  left: -56px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ggc-void);
  border: 2px solid var(--ggc-accent-a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.orb-timeline__dot::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--ggc-accent-b);
}

.orb-timeline__content {
  background-color: var(--ggc-panel);
  border: 1px solid var(--ggc-border-soft);
  border-radius: var(--ggc-radius-md);
  padding: var(--ggc-space-3) var(--ggc-space-4);
}

.orb-timeline__content h4 { margin-bottom: 4px; font-size: 0.95rem; }
.orb-timeline__content p { font-size: 0.85rem; }

.panel-glossary {
  margin-top: var(--ggc-space-5);
}

.panel-glossary__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--ggc-space-3);
}

.panel-glossary__term {
  background-color: var(--ggc-panel);
  border: 1px solid var(--ggc-border-soft);
  border-left: 3px solid var(--ggc-accent-a);
  border-radius: 0 var(--ggc-radius-md) var(--ggc-radius-md) 0;
  padding: var(--ggc-space-3);
}

.panel-glossary__word {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ggc-accent-a);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.panel-glossary__def {
  font-size: 0.82rem;
  color: var(--ggc-text-secondary);
  line-height: 1.5;
}

.orb-faq {
  margin-top: var(--ggc-space-5);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.orb-faq__item {
  background-color: var(--ggc-panel);
  border: 1px solid var(--ggc-border-soft);
  border-radius: var(--ggc-radius-md);
  overflow: hidden;
  transition: border-color var(--ggc-transition);
}

.orb-faq__item.is-open {
  border-color: var(--ggc-border);
}

.orb-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ggc-space-3);
  padding: var(--ggc-space-3) var(--ggc-space-4);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--ggc-text-bright);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--ggc-font);
  transition: color var(--ggc-transition);
}

.orb-faq__question:hover { color: var(--ggc-accent-b); }

.orb-faq__chevron {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--ggc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--ggc-transition), background var(--ggc-transition);
  font-size: 0.6rem;
  color: var(--ggc-text-muted);
}

.orb-faq__item.is-open .orb-faq__chevron {
  transform: rotate(180deg);
  background: rgba(6,182,212,0.1);
  border-color: var(--ggc-accent-b);
  color: var(--ggc-accent-b);
}

.orb-faq__answer {
  display: none;
  padding: 0 var(--ggc-space-4) var(--ggc-space-3);
  color: var(--ggc-text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.orb-faq__item.is-open .orb-faq__answer {
  display: block;
}

.form-enquiry {
  background-color: var(--ggc-panel);
  border: 1px solid var(--ggc-border);
  border-radius: var(--ggc-radius-lg);
  padding: var(--ggc-space-5) var(--ggc-space-5);
  box-shadow: var(--ggc-shadow-panel);
  max-width: 680px;
}

.form-enquiry__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ggc-space-3);
}

.form-enquiry__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-enquiry__field--full {
  grid-column: 1 / -1;
}

.form-enquiry label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ggc-text-secondary);
}

.form-enquiry input,
.form-enquiry select,
.form-enquiry textarea {
  background-color: var(--ggc-panel-alt);
  border: 1px solid var(--ggc-border-soft);
  border-radius: var(--ggc-radius-sm);
  padding: 10px 14px;
  color: var(--ggc-text-primary);
  font-family: var(--ggc-font);
  font-size: 0.9rem;
  transition: border-color var(--ggc-transition), box-shadow var(--ggc-transition);
  width: 100%;
}

.form-enquiry input:focus,
.form-enquiry select:focus,
.form-enquiry textarea:focus {
  outline: none;
  border-color: var(--ggc-accent-a);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.form-enquiry select option {
  background-color: var(--ggc-panel);
}

.form-enquiry textarea {
  min-height: 120px;
  resize: vertical;
}

.form-enquiry__submit {
  margin-top: var(--ggc-space-4);
}

.form-enquiry__note {
  margin-top: var(--ggc-space-2);
  font-size: 0.78rem;
  color: var(--ggc-text-muted);
}

.orb-disclaimer {
  background-color: var(--ggc-panel-alt);
  border: 1px solid var(--ggc-border-soft);
  border-left: 3px solid var(--ggc-accent-c);
  border-radius: 0 var(--ggc-radius-md) var(--ggc-radius-md) 0;
  padding: var(--ggc-space-3) var(--ggc-space-4);
  margin-top: var(--ggc-space-5);
}

.orb-disclaimer p {
  font-size: 0.82rem;
  color: var(--ggc-text-muted);
  line-height: 1.6;
}

.orb-constellation {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ggc-space-2);
  margin-top: var(--ggc-space-4);
}

.orb-constellation__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background-color: var(--ggc-panel);
  border: 1px solid var(--ggc-border-soft);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ggc-text-secondary);
  text-decoration: none;
  transition: all var(--ggc-transition);
}

.orb-constellation__link::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--ggc-accent-a);
  flex-shrink: 0;
}

.orb-constellation__link:hover {
  border-color: var(--ggc-border);
  color: var(--ggc-accent-b);
  background-color: rgba(6,182,212,0.06);
}

.ggc-footer {
  background: linear-gradient(112deg, var(--ggc-accent-b) 0%, var(--ggc-accent-a) 100%);
  border-top: none;
  padding-block: var(--ggc-space-6);
}

.ggc-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--ggc-space-5);
  margin-bottom: var(--ggc-space-5);
}

.ggc-footer__brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.ggc-footer__brand-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin-bottom: var(--ggc-space-3);
}

.ggc-footer__contact {
  font-size: 0.82rem;
  color: #ffffff;
}

.ggc-footer__col-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: var(--ggc-space-3);
}

.ggc-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ggc-footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: color var(--ggc-transition);
}

.ggc-footer__links a:hover { color: #ffffff; }

.ggc-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.28);
  padding-top: var(--ggc-space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--ggc-space-2);
}

.ggc-footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.84);
}

.ggc-footer__legal {
  display: flex;
  gap: var(--ggc-space-3);
}

.ggc-footer__legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: color var(--ggc-transition);
}

.ggc-footer__legal a:hover { color: #ffffff; }

.ggc-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: rgba(255,255,255,0.96);
  border-top: 1px solid var(--ggc-border);
  box-shadow: 0 -8px 32px rgba(15,38,69,0.12);
  padding: var(--ggc-space-3) 0;
}

.ggc-cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ggc-space-3);
  flex-wrap: wrap;
}

.ggc-cookie-banner__text {
  font-size: 0.85rem;
  color: var(--ggc-text-secondary);
  flex: 1;
  min-width: 200px;
}

.ggc-cookie-banner__text a {
  color: var(--ggc-accent-b);
  text-decoration: underline;
}

.ggc-cookie-banner__actions {
  display: flex;
  gap: var(--ggc-space-2);
  flex-shrink: 0;
  flex-wrap: wrap;
}

.ggc-cookie-banner__accept {
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--ggc-accent-a), var(--ggc-accent-b));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: opacity var(--ggc-transition);
}

.ggc-cookie-banner__accept:hover { opacity: 0.85; }

.ggc-cookie-banner__reject {
  padding: 7px 18px;
  background: transparent;
  color: var(--ggc-text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid var(--ggc-border-soft);
  cursor: pointer;
  transition: color var(--ggc-transition), border-color var(--ggc-transition);
}

.ggc-cookie-banner__reject:hover {
  color: var(--ggc-text-primary);
  border-color: var(--ggc-border);
}

.legal-page__content {
  max-width: 780px;
}

.legal-page__content h2 {
  font-size: clamp(1.2rem,2.5vw,1.6rem);
  margin-bottom: var(--ggc-space-2);
  margin-top: var(--ggc-space-5);
  color: var(--ggc-text-bright);
}

.legal-page__content h2:first-of-type { margin-top: 0; }

.legal-page__content p {
  margin-bottom: var(--ggc-space-3);
  font-size: 0.95rem;
}

.legal-page__content ul {
  list-style: disc;
  padding-left: 1.4em;
  margin-bottom: var(--ggc-space-3);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-page__content ul li {
  color: var(--ggc-text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

.legal-page__content a { color: var(--ggc-accent-b); text-decoration: underline; }

.legal-page__updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--ggc-text-muted);
  margin-bottom: var(--ggc-space-5);
}

.panel-angled {
  position: relative;
  background-color: var(--ggc-deep);
  padding-block: var(--ggc-space-7);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  margin-block: -3%;
}

.panel-criteria {
  margin-top: var(--ggc-space-5);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: var(--ggc-space-3);
}

.panel-criteria__card {
  background-color: var(--ggc-panel);
  border: 1px solid var(--ggc-border-soft);
  border-radius: var(--ggc-radius-md);
  padding: var(--ggc-space-4);
  transition: border-color var(--ggc-transition);
}

.panel-criteria__card:hover { border-color: var(--ggc-border); }

.panel-criteria__number {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--ggc-accent-a), var(--ggc-accent-b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}

.panel-criteria__card h4 { margin-bottom: 6px; font-size: 0.95rem; }
.panel-criteria__card p { font-size: 0.82rem; }

.orb-band {
  background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, rgba(6,182,212,0.08) 50%, rgba(129,140,248,0.06) 100%);
  border-block: 1px solid var(--ggc-border);
  padding-block: var(--ggc-space-6);
}

.orb-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ggc-space-6);
  align-items: center;
}

.orb-band__img {
  aspect-ratio: 3/2;
  border-radius: var(--ggc-radius-md);
  overflow: hidden;
  border: 1px solid var(--ggc-border);
}

.orb-band__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signal-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ggc-space-6);
  align-items: start;
  margin-top: var(--ggc-space-5);
}

.signal-intro__text p + p { margin-top: var(--ggc-space-3); }

.signal-intro__aside {
  background-color: var(--ggc-panel);
  border: 1px solid var(--ggc-border);
  border-radius: var(--ggc-radius-lg);
  overflow: hidden;
}

.signal-intro__aside-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.signal-intro__aside-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signal-intro__aside-body {
  padding: var(--ggc-space-4);
}

.signal-intro__aside-body h4 { margin-bottom: 6px; }
.signal-intro__aside-body p { font-size: 0.85rem; }

.panel-highlight {
  background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(6,182,212,0.08));
  border: 1px solid var(--ggc-border);
  border-radius: var(--ggc-radius-lg);
  padding: var(--ggc-space-5);
  margin-top: var(--ggc-space-5);
}

.panel-highlight h3 { margin-bottom: var(--ggc-space-3); }

.panel-highlight ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: var(--ggc-space-3);
}

.panel-highlight ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--ggc-text-secondary);
}

.panel-highlight ul li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(6,182,212,0.2);
  border: 1px solid rgba(6,182,212,0.4);
  flex-shrink: 0;
  margin-top: 2px;
}

.success-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  gap: var(--ggc-space-4);
}

.success-wrap__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(6,182,212,0.2));
  border: 2px solid rgba(6,182,212,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.success-wrap p {
  font-size: 1.1rem;
  color: var(--ggc-text-secondary);
  max-width: 40ch;
}

.page-inner-hero {
  padding-block: var(--ggc-space-7);
  border-bottom: 1px solid var(--ggc-border-soft);
}

.page-inner-hero__label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ggc-accent-b);
  margin-bottom: var(--ggc-space-2);
}

.page-inner-hero p {
  font-size: clamp(1rem,1.8vw,1.15rem);
  max-width: 65ch;
  margin-top: var(--ggc-space-2);
}

.orb-splitgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ggc-space-5);
  align-items: center;
  margin-top: var(--ggc-space-5);
}

.orb-splitgrid--reverse { direction: rtl; }
.orb-splitgrid--reverse > * { direction: ltr; }

.orb-splitgrid__img {
  aspect-ratio: 4/3;
  border-radius: var(--ggc-radius-lg);
  overflow: hidden;
  border: 1px solid var(--ggc-border);
}

.orb-splitgrid__img img { width: 100%; height: 100%; object-fit: cover; }

.orb-splitgrid__text h3 { margin-bottom: var(--ggc-space-2); }
.orb-splitgrid__text p + p { margin-top: var(--ggc-space-3); }
.orb-splitgrid__text .orb-constellation { margin-top: var(--ggc-space-3); }

.glossary-full__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--ggc-space-3);
  margin-top: var(--ggc-space-5);
}

.glossary-full__entry {
  background-color: var(--ggc-panel);
  border: 1px solid var(--ggc-border-soft);
  border-radius: var(--ggc-radius-md);
  padding: var(--ggc-space-4);
  transition: border-color var(--ggc-transition);
}

.glossary-full__entry:hover { border-color: var(--ggc-border); }

.glossary-full__term {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ggc-accent-a);
  margin-bottom: 6px;
}

.glossary-full__def {
  font-size: 0.875rem;
  color: var(--ggc-text-secondary);
  line-height: 1.6;
}

.orb-session-planner {
  margin-top: var(--ggc-space-5);
}

.orb-session-planner__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--ggc-space-3);
}

.orb-session-card {
  background-color: var(--ggc-panel);
  border: 1px solid var(--ggc-border-soft);
  border-radius: var(--ggc-radius-md);
  padding: var(--ggc-space-4);
  transition: border-color var(--ggc-transition), transform var(--ggc-transition);
}

.orb-session-card:hover {
  border-color: var(--ggc-border);
  transform: translateY(-3px);
}

.orb-session-card__duration {
  font-size: 2rem;
  font-weight: 900;
  color: var(--ggc-accent-b);
  line-height: 1;
  margin-bottom: 6px;
}

.orb-session-card h4 { margin-bottom: 6px; font-size: 0.95rem; }
.orb-session-card p { font-size: 0.82rem; }

.panel-safety__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--ggc-space-3);
  margin-top: var(--ggc-space-5);
}

.panel-safety__item {
  background-color: var(--ggc-panel);
  border: 1px solid var(--ggc-border-soft);
  border-radius: var(--ggc-radius-md);
  padding: var(--ggc-space-4);
  border-top: 3px solid var(--ggc-accent-a);
  transition: box-shadow var(--ggc-transition);
}

.panel-safety__item:nth-child(even) { border-top-color: var(--ggc-accent-b); }

.panel-safety__item:hover {
  box-shadow: var(--ggc-shadow-glow);
}

.panel-safety__item h4 { margin-bottom: 8px; font-size: 0.95rem; }
.panel-safety__item p { font-size: 0.85rem; }

@media (max-width: 1024px) {
  .panel-hero__layout { grid-template-columns: 1fr; }
  .panel-hero__visual { display: none; }
  .ggc-footer__grid { grid-template-columns: 1fr 1fr; }
  .panel-comparison { grid-template-columns: 1fr; }
  .orb-band__inner { grid-template-columns: 1fr; }
  .signal-intro { grid-template-columns: 1fr; }
  .orb-splitgrid { grid-template-columns: 1fr; }
  .orb-splitgrid--reverse { direction: ltr; }
}

@media (max-width: 640px) {
  .ggc-footer__grid { grid-template-columns: 1fr; }
  .form-enquiry__grid { grid-template-columns: 1fr; }
  .form-enquiry__field--full { grid-column: 1; }
  .panel-hero__stats { flex-wrap: wrap; gap: var(--ggc-space-3); }
  .ggc-cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .ggc-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   MISSING CLASS RULES – filled in during QA pass
   ============================================================ */

/* Footer brand block (used in /) */
.ggc-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Footer column wrapper (used in /) */
.ggc-footer__col {
  display: flex;
  flex-direction: column;
}

/* signal-games__diff-dot is used both as <div> and <span>.
   Ensure it renders as a visible block in either context. */
span.signal-games__diff-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--ggc-border-soft);
  flex-shrink: 0;
}

span.signal-games__diff-dot.active {
  background-color: var(--ggc-accent-a);
}

/* panel-comparison__check is used both as <div> and <span>.
   Ensure flex layout works on span elements. */
span.panel-comparison__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(6,182,212,0.15);
  border: 1px solid rgba(6,182,212,0.3);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.6rem;
  color: var(--ggc-accent-b);
  line-height: 1;
}

/* orb-disclaimer when used with ggc-container directly (no extra wrapper) */
.orb-disclaimer.ggc-container {
  margin-inline: auto;
  border-radius: 0 var(--ggc-radius-md) var(--ggc-radius-md) 0;
}

/* orb-band used as a <section> element (browser-play uses it with aria-labelledby) */
section.orb-band {
  display: block;
}

/* ggc-heading-block used directly on an <h2> (mobile-ready line 479) */
h2.ggc-heading-block {
  margin-bottom: var(--ggc-space-3);
}

/* ============================================================
   MOBILE / NAV FIXES
   ============================================================ */

/* Ensure the nav stays above everything and has no overlap issues */
nav.orb-nav {
  isolation: isolate;
}

/* On desktop the drawer is permanently hidden regardless of is-open */
@media (min-width: 901px) {
  .orb-nav__drawer,
  .orb-nav__drawer.is-open {
    display: none !important;
  }
}

/* On mobile ensure drawer links are large enough to tap comfortably */
@media (max-width: 900px) {
  .orb-nav__drawer a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Prevent body scroll bleed when drawer open by making drawer
     fully visible in the document flow, not position:absolute */
  .orb-nav__inner {
    position: relative;
  }
}

/* ============================================================
   PRINT
   ============================================================ */

@media print {
  .orb-nav, .ggc-cookie-banner, .ggc-cta-primary, .ggc-cta-secondary { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .legal-page__content h2, .legal-page__content p, .legal-page__content li { color: #000; }
}
