:root {
  --ink: #101115;
  --muted: #626a73;
  --paper: #f5f7f8;
  --surface: #ffffff;
  --line: rgba(16, 17, 21, 0.12);
  --green: #00b887;
  --red: #ff5a4f;
  --cyan: #2db7d7;
  --gold: #c9953f;
  --violet: #6e5df7;
  --shadow: 0 28px 80px rgba(16, 17, 21, 0.14);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 30;
  transform: translateY(-130%);
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
  transition: transform 160ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(245, 247, 248, 0) 0, #f5f7f8 700px),
    var(--paper);
}

body::selection {
  color: #fff;
  background: var(--ink);
}

a {
  color: inherit;
}

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

#heroCanvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background: #101115;
}

#heroCanvas::after {
  content: "";
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(210px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #fff;
  background: rgba(16, 17, 21, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  grid-template-columns: 48px minmax(0, auto);
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  font-weight: 950;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-copy strong {
  font-size: 15px;
  white-space: nowrap;
}

.brand-copy em {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-style: normal;
}

.top-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  min-width: 0;
}

.top-nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-weight: 750;
  font-size: 14px;
  transition: color 180ms ease;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: #fff;
}

.header-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  padding: 0 18px;
  text-decoration: none;
  font-weight: 850;
  border: 1px solid transparent;
  white-space: nowrap;
}

.header-cta {
  color: var(--ink);
  background: #fff;
}

.hero-section {
  min-height: min(760px, calc(100vh - 140px));
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(58px, 9vh, 96px) clamp(18px, 4vw, 54px) clamp(50px, 8vh, 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  color: #fff;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-copy h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(58px, 10vw, 132px);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-action {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.secondary-action {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.primary-action.light {
  color: var(--ink);
  background: #fff;
  box-shadow: none;
}

.hero-panel {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: end;
  gap: 26px;
}

.orbit-label {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hub-orbit {
  position: relative;
  min-height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.hub-orbit::before {
  content: "GIC";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-weight: 950;
  box-shadow: 0 0 80px rgba(255, 255, 255, 0.24);
}

.hub-orbit span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translate(var(--x), var(--y));
  display: grid;
  place-items: center;
  min-width: 68px;
  height: 36px;
  padding: 0 10px;
  color: #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 850;
  animation: floatTag 4.8s ease-in-out infinite;
  animation-delay: calc(var(--i) * -320ms);
}

.hub-orbit span:nth-child(1) {
  --x: 130px;
  --y: 0;
}

.hub-orbit span:nth-child(2) {
  --x: 65px;
  --y: -92px;
}

.hub-orbit span:nth-child(3) {
  --x: -65px;
  --y: -92px;
}

.hub-orbit span:nth-child(4) {
  --x: -130px;
  --y: 0;
}

.hub-orbit span:nth-child(5) {
  --x: -65px;
  --y: 92px;
}

.hub-orbit span:nth-child(6) {
  --x: 65px;
  --y: 92px;
}

@keyframes floatTag {
  50% {
    transform: translate(-50%, -50%) translate(var(--x), calc(var(--y) - 8px));
  }
}

.hero-stats {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-stats div {
  min-width: 0;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats dt {
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.projects-section,
.focus-section,
.contact-section {
  background: var(--paper);
}

.projects-section {
  padding: clamp(58px, 8vw, 98px) clamp(18px, 4vw, 54px);
}

.section-head {
  max-width: 1240px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}

.section-head.compact {
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.96;
  letter-spacing: 0;
}

.project-tools {
  width: min(340px, 100%);
}

.search-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 50px;
  gap: 10px;
  padding: 0 14px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.search-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  font: inherit;
  background: transparent;
  color: var(--ink);
}

.filter-tabs {
  max-width: 1240px;
  margin: 0 auto 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  padding: 0 16px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.filter-tabs button.is-active,
.filter-tabs button[aria-pressed="true"] {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.project-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

noscript .static-grid {
  margin-top: 18px;
}

.project-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(16, 17, 21, 0.07);
  display: grid;
  grid-template-rows: auto 1fr;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.project-card:hover,
.project-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(16, 17, 21, 0.22);
}

.project-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d9dee2;
}

.project-media-link {
  color: inherit;
  text-decoration: none;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.project-card:hover .project-media img {
  transform: scale(1.04);
}

.project-status {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: #fff;
  border-radius: 999px;
  background: rgba(16, 17, 21, 0.74);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.project-body {
  min-width: 0;
  display: grid;
  gap: 18px;
  padding: 20px;
  overflow: hidden;
}

.project-kicker {
  color: var(--accent, var(--green));
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.project-body h3 {
  margin: 0;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.02;
  letter-spacing: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.project-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  min-width: 0;
  overflow-wrap: anywhere;
}

.project-proof {
  padding: 12px 14px;
  color: #303741;
  background: #f4f6f7;
  border-left: 3px solid var(--accent, var(--green));
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 720;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.project-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #323841;
  background: #f1f3f4;
  font-size: 12px;
  font-weight: 780;
}

.project-card-footer {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.project-url {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: var(--radius);
  padding: 0 14px;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
  font-weight: 900;
}

.empty-state {
  grid-column: 1 / -1;
  min-height: 180px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.52);
}

.focus-section {
  padding: clamp(54px, 7vw, 88px) clamp(18px, 4vw, 54px);
}

.focus-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.focus-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.focus-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
  font-weight: 950;
}

.focus-grid h3 {
  margin: 24px 0 10px;
  font-size: 24px;
}

.focus-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.contact-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
}

.contact-section h2 {
  margin: 0;
  font-size: clamp(32px, 4.8vw, 62px);
  line-height: 0.96;
}

.contact-section p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: #5d646c;
  background: var(--paper);
  font-size: 14px;
}

@media (max-width: 1050px) {
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-section {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    gap: 12px;
  }

  .top-nav {
    display: none;
  }

  .brand-copy strong {
    white-space: normal;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
  }

  /* Mobile hero compacting for short browser panes. */
  .hero-section {
    min-height: auto;
    padding-top: 30px;
    padding-bottom: 22px;
  }

  .hero-lead {
    margin-top: 22px;
  }

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

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

  .hero-panel {
    display: none;
  }

  .hub-orbit {
    min-height: 240px;
  }

  .hub-orbit span {
    min-width: 54px;
    height: 32px;
    font-size: 11px;
  }

  .hub-orbit span:nth-child(1) {
    --x: 96px;
    --y: 0;
  }

  .hub-orbit span:nth-child(2) {
    --x: 48px;
    --y: -70px;
  }

  .hub-orbit span:nth-child(3) {
    --x: -48px;
    --y: -70px;
  }

  .hub-orbit span:nth-child(4) {
    --x: -96px;
    --y: 0;
  }

  .hub-orbit span:nth-child(5) {
    --x: -48px;
    --y: 70px;
  }

  .hub-orbit span:nth-child(6) {
    --x: 48px;
    --y: 70px;
  }

  .hero-stats,
  .focus-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .contact-section {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .project-tools {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand {
    grid-template-columns: 42px minmax(0, auto);
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy em {
    display: none;
  }

  .header-cta {
    font-size: 13px;
  }

  .hero-actions {
    display: grid;
  }
}

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

.not-found-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(22px, 5vw, 54px);
  color: #fff;
  background:
    radial-gradient(circle at 26% 18%, rgba(0, 184, 135, 0.22), transparent 28%),
    radial-gradient(circle at 78% 28%, rgba(255, 90, 79, 0.18), transparent 30%),
    #101115;
}

.not-found-shell {
  width: min(760px, 100%);
  display: grid;
  gap: 24px;
}

.not-found-shell .brand {
  color: #fff;
  justify-self: start;
}

.not-found-shell h1 {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(58px, 11vw, 118px);
  line-height: 0.9;
}

.not-found-shell p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.55;
}

