:root {
  color-scheme: light;
  --ink: #11151d;
  --ink-2: #202936;
  --muted: #637083;
  --muted-2: #7b8797;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --line: #dce4ef;
  --teal: #087d78;
  --teal-soft: #d7f3f0;
  --blue: #2157d9;
  --blue-soft: #dfe8ff;
  --amber: #c4841c;
  --amber-soft: #fff0d4;
  --coral: #c94f45;
  --green: #497c3c;
  --shadow: 0 22px 70px rgba(17, 21, 29, 0.14);
  --shadow-small: 0 12px 34px rgba(17, 21, 29, 0.1);
  --radius-card: 8px;
  --header-height: 74px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface-soft);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 10000;
  width: auto;
  height: auto;
  margin: 16px;
  padding: 10px 14px;
  clip: auto;
  background: var(--surface);
  color: var(--ink);
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 228, 239, 0.92);
  backdrop-filter: blur(18px);
}

.header-shell {
  width: min(1180px, calc(100% - 36px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 760;
  font-size: 1.04rem;
  line-height: 1;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--surface);
  font-size: 0.98rem;
  box-shadow: inset 0 -10px 24px rgba(255, 255, 255, 0.12);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a,
.footer-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 680;
  padding: 10px 12px;
  border-radius: 8px;
  transition: color 160ms ease, background-color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--ink);
  background: rgba(33, 87, 217, 0.08);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 10px;
}

.nav-toggle-line {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: calc(92vh - var(--header-height));
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--surface);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 12, 18, 0.9) 0%, rgba(10, 12, 18, 0.74) 35%, rgba(10, 12, 18, 0.28) 68%, rgba(10, 12, 18, 0.12) 100%),
    linear-gradient(0deg, rgba(10, 12, 18, 0.45), rgba(10, 12, 18, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(54px, 7vw, 84px) 0 clamp(42px, 5vw, 62px);
}

.eyebrow {
  margin: 0 0 16px;
  color: #a8f0e9;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal);
}

.hero h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 1.05;
}

.hero h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(3.9rem, 10.4vw, 7.25rem);
  font-weight: 840;
}

.hero-copy {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.06rem, 0.82vw + 0.9rem, 1.28rem);
}

.hero-actions,
.contact-layout {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 760;
  line-height: 1.15;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.button-secondary {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.button-dark {
  margin-top: 10px;
  background: var(--ink);
  color: var(--surface);
  box-shadow: var(--shadow-small);
}

.button-light {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-small);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(17, 21, 29, 0.2);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: rgba(17, 21, 29, 0.42);
  background: rgba(17, 21, 29, 0.04);
}

.button-muted {
  color: var(--muted);
  background: rgba(17, 21, 29, 0.06);
  border-color: rgba(17, 21, 29, 0.08);
  cursor: default;
}

.button-muted:hover,
.button-muted:focus-visible {
  transform: none;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 730px;
  gap: 1px;
  margin: 30px 0 0;
  padding: 1px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.hero-facts div {
  min-width: 0;
  padding: 14px;
  background: rgba(12, 16, 22, 0.58);
}

.hero-facts dt {
  color: #a8f0e9;
  font-weight: 820;
  font-size: 0.84rem;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

section {
  scroll-margin-top: calc(var(--header-height) + 22px);
}

.intro-section,
.principles-section {
  padding: clamp(76px, 9vw, 116px) 0;
}

.two-column,
.product-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.05rem, 4.2vw, 4rem);
  font-weight: 820;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.22rem, 1vw + 1rem, 1.65rem);
  font-weight: 780;
}

.section-lede,
.product-copy p,
.principles-grid p,
.contact-section p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 0.36vw + 0.96rem, 1.16rem);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(34px, 5vw, 64px);
}

.portfolio-card,
.principles-grid article {
  min-height: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-small);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}

.product-tag,
.principle-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag-software {
  color: #035a56;
  background: var(--teal-soft);
}

.tag-games {
  color: #8a321f;
  background: #ffe3da;
}

.card-number {
  color: var(--muted-2);
  font-weight: 800;
}

.portfolio-card p {
  margin: 14px 0 22px;
  color: var(--muted);
}

.text-link {
  color: var(--blue);
  font-weight: 780;
}

.text-link::after {
  content: " ->";
}

.product-section {
  padding: clamp(76px, 10vw, 128px) 0;
}

.serviceopus-section {
  background: var(--surface);
}

.games-section {
  background: #edf2f7;
}

.product-copy {
  display: grid;
  gap: 22px;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}

.check-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-2);
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 4px var(--teal-soft);
}

.games-list li::before {
  background: var(--coral);
  box-shadow: inset 0 0 0 4px #ffe3da;
}

.service-visual {
  border-radius: var(--radius-card);
  padding: 16px;
  background: #121924;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.window-bar {
  display: flex;
  gap: 8px;
  padding: 4px 4px 14px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
}

.window-bar span:nth-child(1) {
  background: var(--coral);
}

.window-bar span:nth-child(2) {
  background: var(--amber);
}

.window-bar span:nth-child(3) {
  background: var(--green);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 178px 168px;
  gap: 12px;
}

.dash-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #1b2533;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
}

.panel-label {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
  font-weight: 760;
  margin-bottom: 18px;
}

.schedule-panel {
  grid-column: span 2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #1b2533;
  background-size: 38px 38px;
}

.timeline-row {
  height: 18px;
  border-radius: 6px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, var(--teal), #42b8ae);
}

.timeline-row.medium {
  width: 68%;
  margin-left: 76px;
  background: linear-gradient(90deg, var(--blue), #77a1ff);
}

.timeline-row.short {
  width: 42%;
  margin-left: 190px;
  background: linear-gradient(90deg, var(--amber), #efc66f);
}

.timeline-row.wide {
  width: 74%;
}

.timeline-row.alt {
  width: 58%;
  margin-left: 38px;
  background: linear-gradient(90deg, var(--coral), #ef8d84);
}

.route-panel {
  min-height: 168px;
}

.route-panel::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(8, 125, 120, 0.18), transparent 58%),
    linear-gradient(40deg, transparent 20%, rgba(33, 87, 217, 0.2) 21%, transparent 22%),
    #16202d;
}

.map-line {
  position: absolute;
  left: 44px;
  top: 94px;
  width: 74%;
  height: 2px;
  transform: rotate(-18deg);
  background: rgba(168, 240, 233, 0.7);
}

.map-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid #c9fffa;
}

.pin-one {
  left: 38px;
  top: 112px;
}

.pin-two {
  left: 48%;
  top: 74px;
  background: var(--amber);
  border-color: var(--amber-soft);
}

.pin-three {
  right: 32px;
  top: 104px;
  background: var(--blue);
  border-color: var(--blue-soft);
}

.metric-panel {
  display: grid;
  gap: 20px;
  align-items: end;
}

.metric-value {
  display: block;
  color: var(--surface);
  font-size: 3rem;
  line-height: 1;
  font-weight: 840;
}

.metric-label {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  margin-top: 6px;
}

.metric-bars {
  height: 72px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  align-items: end;
}

.metric-bars span {
  display: block;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #86f0e8, var(--teal));
}

.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.games-visual {
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  background: var(--ink);
}

.games-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.screenshot-stack {
  position: relative;
  min-height: 620px;
  overflow: visible;
  border-radius: 0;
  background:
    radial-gradient(circle at 64% 18%, rgba(201, 79, 69, 0.18), transparent 36%),
    radial-gradient(circle at 20% 78%, rgba(8, 125, 120, 0.2), transparent 34%),
    #11151d;
  box-shadow: none;
}

.screenshot-card {
  position: absolute;
  width: min(54%, 292px);
  aspect-ratio: 1320 / 2868;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 60px rgba(17, 21, 29, 0.34);
}

.screenshot-card-main {
  left: 7%;
  top: 8%;
  z-index: 2;
}

.screenshot-card-side {
  right: 5%;
  bottom: 7%;
  z-index: 1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.section-heading.compact {
  max-width: 840px;
  margin-top: clamp(54px, 8vw, 86px);
}

.section-heading.compact h3 {
  max-width: 760px;
  font-size: clamp(1.75rem, 2.4vw, 2.8rem);
}

.section-heading.compact p:last-child {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-feature-card {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(244, 247, 251, 0.72), rgba(255, 255, 255, 0.96)),
    var(--surface);
  box-shadow: 0 10px 28px rgba(17, 21, 29, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-feature-card:hover,
.service-feature-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(8, 125, 120, 0.34);
  box-shadow: 0 18px 42px rgba(17, 21, 29, 0.12);
  outline: none;
}

.service-feature-card span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-feature-card strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.2;
}

.service-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

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

.principle-kicker {
  margin-bottom: 26px;
  color: #123f8f;
  background: var(--blue-soft);
}

.principles-grid article:nth-child(2) .principle-kicker {
  color: #8a321f;
  background: #ffe3da;
}

.principles-grid article:nth-child(3) .principle-kicker {
  color: #775008;
  background: var(--amber-soft);
}

.principles-grid h3 {
  margin-bottom: 14px;
}

.ghc-hero {
  overflow: hidden;
  padding: clamp(32px, 4vw, 42px) 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(36, 139, 217, 0.26), transparent 32%),
    radial-gradient(circle at 8% 82%, rgba(201, 79, 69, 0.16), transparent 30%),
    linear-gradient(135deg, #11151d 0%, #172238 58%, #0f2c2a 100%);
  color: var(--surface);
}

.ghc-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.ghc-hero-copy {
  display: grid;
  gap: 20px;
}

.ghc-hero-copy h1 {
  margin: 0;
  color: var(--surface);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.8vw, 4.1rem);
  line-height: 0.98;
}

.ghc-hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 0.42vw + 1rem, 1.24rem);
}

.app-icon {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.light-muted {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.ghc-hero-screens {
  position: relative;
  min-height: 470px;
}

.ghc-hero-screens img {
  position: absolute;
  width: min(32%, 196px);
  aspect-ratio: 1320 / 2868;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.32);
}

.ghc-hero-screens img:nth-child(1) {
  left: 2%;
  top: 7%;
  z-index: 2;
}

.ghc-hero-screens img:nth-child(2) {
  left: 33%;
  top: 0;
  z-index: 3;
}

.ghc-hero-screens img:nth-child(3) {
  right: 2%;
  top: 11%;
  z-index: 1;
}

.ghc-modes-section,
.challenge-links-section,
.ghc-gallery-section {
  padding: clamp(72px, 9vw, 112px) 0;
}

.challenge-links-section {
  background: var(--surface);
}

.ghc-gallery-section {
  background: #edf2f7;
}

.no-top-margin {
  margin-top: 0;
}

.mode-grid article:nth-child(1) .principle-kicker {
  color: #123f8f;
  background: var(--blue-soft);
}

.mode-grid article:nth-child(2) .principle-kicker {
  color: #035a56;
  background: var(--teal-soft);
}

.mode-grid article:nth-child(3) .principle-kicker {
  color: #775008;
  background: var(--amber-soft);
}

.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.screenshot-gallery figure {
  margin: 0;
  display: grid;
  gap: 12px;
}

.screenshot-gallery img {
  width: 100%;
  aspect-ratio: 1320 / 2868;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(17, 21, 29, 0.1);
  box-shadow: 0 18px 48px rgba(17, 21, 29, 0.14);
}

.screenshot-gallery figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 760;
  text-align: center;
}

.ghc-cta-section {
  padding: clamp(64px, 8vw, 96px) 0;
  background: var(--ink);
  color: var(--surface);
}

.ghc-cta-section h2 {
  color: var(--surface);
}

.ghc-cta-section p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.02rem, 0.36vw + 0.96rem, 1.16rem);
}

.legal-hero {
  padding: clamp(66px, 8vw, 104px) 0;
  background:
    linear-gradient(135deg, rgba(17, 21, 29, 0.9), rgba(17, 34, 56, 0.88)),
    var(--ink);
  color: var(--surface);
}

.legal-hero h1 {
  max-width: 800px;
  margin: 0;
  color: var(--surface);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 0.98;
}

.legal-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.06rem, 0.5vw + 1rem, 1.24rem);
}

.legal-section {
  padding: clamp(60px, 8vw, 96px) 0;
  background: var(--surface-soft);
}

.legal-container {
  max-width: 920px;
}

.section-title {
  margin-bottom: 28px;
}

.section-title h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-title p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.policy-content {
  padding: clamp(24px, 4vw, 42px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-small);
}

.policy-content h3,
.policy-content h4 {
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.2;
}

.policy-content h3 {
  margin: 0 0 16px;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
}

.policy-content h4 {
  margin: 32px 0 10px;
  font-size: 1.08rem;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

.policy-content p {
  margin: 0 0 14px;
}

.policy-content ul {
  margin: 0 0 20px;
  padding-left: 1.2rem;
}

.policy-content a {
  color: var(--blue);
  font-weight: 760;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.dark-muted {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
}

.contact-section {
  padding: clamp(64px, 8vw, 96px) 0;
  background: var(--ink);
  color: var(--surface);
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) auto;
  justify-content: space-between;
}

.contact-section h2 {
  color: var(--surface);
}

.contact-section p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.74);
  margin-top: 18px;
}

.site-footer {
  padding: 28px 0;
  background: #090d13;
  color: rgba(255, 255, 255, 0.68);
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  color: var(--surface);
}

.footer-brand .brand-mark {
  background: var(--surface);
  color: var(--ink);
}

.footer-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}

.footer-layout p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-small);
    padding: 12px 20px 22px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 4px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: calc(90vh - var(--header-height));
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 12, 18, 0.9) 0%, rgba(10, 12, 18, 0.74) 58%, rgba(10, 12, 18, 0.5) 100%),
      linear-gradient(0deg, rgba(10, 12, 18, 0.55), rgba(10, 12, 18, 0.16));
  }

  .two-column,
  .product-layout,
  .reverse,
  .contact-layout,
  .ghc-hero-layout {
    grid-template-columns: 1fr;
  }

  .portfolio-grid,
  .principles-grid,
  .service-feature-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    align-items: start;
  }

  .ghc-hero-screens {
    min-height: 510px;
  }

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

  .store-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 68px;
  }

  .container,
  .header-shell {
    width: min(100% - 28px, 1140px);
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-content {
    padding: 48px 0 38px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .inline-actions {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
  }

  .hero-facts div {
    padding: 10px;
  }

  .hero-facts dt {
    font-size: 0.72rem;
  }

  .hero-facts dd {
    font-size: 0.78rem;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .screenshot-stack {
    min-height: 430px;
  }

  .screenshot-card {
    width: 54%;
    border-radius: 20px;
  }

  .screenshot-card-main {
    left: 2%;
    top: 6%;
  }

  .screenshot-card-side {
    right: 2%;
    bottom: 6%;
  }

  .ghc-hero {
    padding: 44px 0 54px;
  }

  .ghc-hero-layout {
    position: relative;
    display: block;
  }

  .ghc-hero-copy {
    position: relative;
    z-index: 2;
  }

  .ghc-hero-screens {
    position: absolute;
    top: 8px;
    right: -36px;
    width: 174px;
    height: 376px;
    min-height: 0;
    opacity: 0.36;
    pointer-events: none;
  }

  .ghc-hero-screens img {
    width: 132px;
    border-radius: 20px;
  }

  .ghc-hero-screens img:nth-child(1) {
    left: auto;
    right: 0;
    top: 0;
  }

  .ghc-hero-screens img:nth-child(2) {
    display: none;
  }

  .ghc-hero-screens img:nth-child(3) {
    display: none;
  }

  .screenshot-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .screenshot-gallery img {
    border-radius: 18px;
  }

  .schedule-panel {
    grid-column: auto;
  }

  .timeline-row.medium,
  .timeline-row.short,
  .timeline-row.alt {
    margin-left: 0;
  }

  .timeline-row,
  .timeline-row.medium,
  .timeline-row.short,
  .timeline-row.wide,
  .timeline-row.alt {
    width: 100%;
  }

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }
}

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