:root {
  color-scheme: dark;
  --ink: #070809;
  --ink-soft: #0d1118;
  --paper: #f4f0e8;
  --muted: #a9adb6;
  --line: rgba(255, 255, 255, 0.13);
  --gold: #d2a874;
  --gold-bright: #f0d2a8;
  --blue: #2c6dff;
  --max: 1440px;
  --header-height: 76px;
  --ease: cubic-bezier(0.2, 0.72, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: 1rem;
  transform: translateY(-200%);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
}

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 8, 0.84);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100%, var(--max));
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 210, 168, 0.2);
  background: #0b0b0c;
}

.brand-mark img {
  width: 54px;
  height: 35px;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0.18em;
}

.brand-copy small {
  margin-top: 0.48rem;
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2vw, 2.4rem);
}

.desktop-nav a {
  position: relative;
  color: rgba(244, 240, 232, 0.72);
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 220ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 220ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active {
  color: var(--paper);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 1.2rem;
  border: 1px solid rgba(240, 210, 168, 0.45);
  border-radius: 999px;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: #15100b;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--header-height);
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
  background: #060708;
}

.hero-media,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: var(--header-height) 0 0;
}

.hero-media {
  z-index: -4;
  overflow: hidden;
  background: #060708 url("assets/gkt-hero-global-film-network.webp") center / cover no-repeat;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
  filter: saturate(0.96) contrast(1.06) brightness(0.86);
}

.hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, #060708 0%, rgba(6, 7, 8, 0.98) 23%, rgba(6, 7, 8, 0.68) 54%, rgba(6, 7, 8, 0.12) 77%),
    linear-gradient(180deg, rgba(3, 5, 9, 0.08) 40%, #060708 100%);
}

.hero-grid {
  z-index: -2;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.84) 48%, transparent 82%);
}

.hero-inner {
  width: min(100%, var(--max));
  flex: 1;
  margin: 0 auto;
  padding: clamp(5rem, 9vh, 8.5rem) 2rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-copy {
  width: min(860px, 70vw);
}

.eyebrow {
  margin: 0 0 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.42rem 0.8rem;
  border: 1px solid rgba(210, 168, 116, 0.35);
  border-radius: 999px;
  background: rgba(31, 19, 12, 0.42);
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.eyebrow span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(210, 168, 116, 0.85);
}

.hero h1 {
  max-width: 8.6em;
  margin: 0;
  font-size: clamp(4.4rem, 7.1vw, 7.25rem);
  font-weight: 720;
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

@media (min-width: 721px) {
  .hero h1 {
    white-space: nowrap;
  }
}

.hero h1 em {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.91em;
  font-weight: 400;
}

.hero-lede {
  margin: 2.1rem 0 0;
  color: rgba(244, 240, 232, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.9;
}

.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  min-height: 52px;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease, border-color 220ms ease;
}

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

.button-primary {
  background: var(--paper);
  color: #101114;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-bright);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.055);
  color: var(--paper);
  backdrop-filter: blur(10px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.hero-side-note {
  position: absolute;
  right: 1.1rem;
  bottom: 9.7rem;
  margin: 0;
  display: flex;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.hero-stats {
  width: min(100%, var(--max));
  margin: auto auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.stat {
  min-height: 116px;
  padding: 1.25rem 2rem;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(5, 7, 10, 0.66);
  backdrop-filter: blur(14px);
}

.stat strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1;
}

.stat span {
  margin-top: 0.7rem;
  color: rgba(244, 240, 232, 0.55);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.scroll-progress {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(7rem, 11vw, 10rem) 0;
  border-top: 1px solid var(--line);
}

.section-dark {
  background: var(--ink);
}

.section-blue {
  background:
    radial-gradient(circle at 86% 10%, rgba(44, 109, 255, 0.18), transparent 36%),
    linear-gradient(125deg, #06101c 0%, #071528 52%, #091b38 100%);
}

.section-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(123, 194, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 194, 255, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000, transparent 72%);
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 2rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.section-kicker {
  margin: 0.7rem 0 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.section-kicker span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 400;
}

.section-kicker::after {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.section-heading h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(3rem, 5.35vw, 5.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.section-heading > div > p {
  max-width: 760px;
  margin: 2rem 0 0;
  color: rgba(244, 240, 232, 0.66);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.9;
}

.mini-label {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.brand-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.68fr);
  border: 1px solid var(--line);
}

.brand-stage-card {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #0b0b0d;
}

.brand-stage-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(2, 3, 4, 0.88) 100%);
  pointer-events: none;
}

.brand-stage-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 500ms ease;
}

.brand-stage-card:hover img {
  transform: scale(1.025);
  filter: brightness(1.08);
}

.brand-stage-card figcaption {
  position: absolute;
  z-index: 1;
  right: 2rem;
  bottom: 1.6rem;
  left: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.story-principle {
  min-height: 560px;
  padding: clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 100% 0%, rgba(210, 168, 116, 0.16), transparent 36%),
    #0c0e12;
}

.story-principle blockquote {
  margin: auto 0;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  font-weight: 650;
  line-height: 1.24;
  letter-spacing: -0.055em;
}

.story-principle > p:last-child {
  margin: 0;
  color: rgba(244, 240, 232, 0.56);
  line-height: 1.9;
}

.service-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-right: 1px solid var(--line);
}

.service-card {
  min-height: 245px;
  padding: 2rem;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #090a0c;
  transition: background 240ms ease, color 240ms ease;
}

.service-card:hover {
  background: var(--paper);
  color: var(--ink);
}

.service-card > span,
.pillar-number,
.agent-card > span,
.project-card > span,
.flywheel-steps span,
.location-card > span,
.team-card > span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
}

.service-card h3 {
  margin: 3rem 0 0.7rem;
  font-size: 1.42rem;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  color: rgba(244, 240, 232, 0.55);
  line-height: 1.8;
}

.service-card:hover p {
  color: rgba(7, 8, 9, 0.68);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(123, 194, 255, 0.22);
  border-right: 1px solid rgba(123, 194, 255, 0.22);
}

.pillar-card {
  position: relative;
  min-height: 350px;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(123, 194, 255, 0.22);
  border-left: 1px solid rgba(123, 194, 255, 0.22);
  background: rgba(3, 11, 22, 0.34);
  transition: background 260ms ease, transform 260ms var(--ease);
}

.pillar-card:hover {
  background: rgba(22, 67, 130, 0.24);
}

.pillar-card .pillar-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #7bc2ff;
  font-size: 1.2rem;
}

.pillar-card h3 {
  max-width: 11ch;
  margin: 4.3rem 0 1rem;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.pillar-card > p:not(.mini-label) {
  max-width: 38rem;
  margin: 0;
  color: rgba(244, 240, 232, 0.6);
  line-height: 1.8;
}

.pillar-card > strong {
  position: absolute;
  right: 2rem;
  bottom: 1.8rem;
  color: #8bc9ff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.system-visual {
  position: relative;
  min-height: 610px;
  margin: clamp(5rem, 8vw, 8rem) 0 0;
  overflow: hidden;
  border: 1px solid rgba(123, 194, 255, 0.22);
  background: #020713;
}

.system-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 6, 14, 0.94) 0%, rgba(1, 6, 14, 0.68) 42%, rgba(1, 6, 14, 0.05) 78%);
}

.system-visual img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.system-visual figcaption {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: clamp(2rem, 6vw, 6rem);
  max-width: 560px;
  transform: translateY(-50%);
}

.system-visual h3 {
  margin: 1rem 0 1.4rem;
  font-size: clamp(3.2rem, 5.6vw, 5.7rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.system-visual figcaption > p:last-child {
  max-width: 490px;
  margin: 0;
  color: rgba(244, 240, 232, 0.68);
  font-size: 1.08rem;
  line-height: 1.85;
}

.agent-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-right: 1px solid rgba(123, 194, 255, 0.22);
}

.agent-card {
  min-height: 180px;
  padding: 1.8rem 2rem;
  border-bottom: 1px solid rgba(123, 194, 255, 0.22);
  border-left: 1px solid rgba(123, 194, 255, 0.22);
  background: rgba(2, 8, 18, 0.58);
}

.agent-card > span {
  color: #7bc2ff;
}

.agent-card h3 {
  margin: 2.3rem 0 0.35rem;
  font-size: 1.4rem;
}

.agent-card p {
  margin: 0;
  color: rgba(244, 240, 232, 0.5);
  font-size: 0.88rem;
}

.pipeline-intro {
  min-height: 300px;
  padding: clamp(2rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 40%, rgba(44, 109, 255, 0.21), transparent 42%),
    #0a0e16;
}

.pipeline-intro strong {
  display: block;
  margin-top: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(6rem, 12vw, 12rem);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.pipeline-intro > p {
  max-width: 560px;
  margin: 0 0 0.3rem auto;
  color: rgba(244, 240, 232, 0.63);
  font-size: 1.06rem;
  line-height: 1.9;
}

.project-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-right: 1px solid var(--line);
}

.project-card {
  position: relative;
  min-height: 250px;
  padding: 2rem;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #090a0c;
  transition: background 240ms ease;
}

.project-card:hover {
  background: #111725;
}

.project-card--visual {
  isolation: isolate;
  overflow: hidden;
  background: #07101b;
}

.project-card--visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 7, 12, 0.34) 0%, rgba(3, 7, 12, 0.18) 42%, rgba(3, 7, 12, 0.94) 100%),
    linear-gradient(90deg, rgba(3, 7, 12, 0.7), transparent 76%);
}

.project-card-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.82;
  transition: transform 650ms var(--ease), opacity 300ms ease;
}

.project-card--visual:hover .project-card-media {
  transform: scale(1.045);
  opacity: 0.98;
}

.project-card--visual h3 {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9);
}

.project-card--visual small {
  color: rgba(244, 240, 232, 0.86);
}

.project-card h3 {
  margin: 4rem 0 2.5rem;
  font-size: clamp(1.25rem, 1.65vw, 1.75rem);
  line-height: 1.35;
}

.project-card small {
  position: absolute;
  bottom: 1.7rem;
  color: rgba(244, 240, 232, 0.68);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.flywheel-panel {
  margin-top: clamp(5rem, 8vw, 8rem);
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  border: 1px solid var(--line);
}

.flywheel-copy {
  padding: clamp(2.2rem, 5vw, 5rem);
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 20%, rgba(210, 168, 116, 0.17), transparent 40%),
    #0b0d11;
}

.flywheel-copy h3 {
  margin: 3.5rem 0 1.6rem;
  font-size: clamp(2.6rem, 4.4vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.flywheel-copy > p:last-child {
  max-width: 32rem;
  margin: 0;
  color: rgba(244, 240, 232, 0.55);
  line-height: 1.9;
}

.flywheel-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.flywheel-steps li {
  min-height: 155px;
  padding: 1.8rem 2rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flywheel-steps li:nth-child(even) {
  border-right: 0;
}

.flywheel-steps strong {
  font-size: 1.15rem;
}

.flywheel-steps .loop {
  grid-column: 1 / -1;
  min-height: 130px;
  border-right: 0;
  background: linear-gradient(90deg, rgba(44, 109, 255, 0.26), rgba(210, 168, 116, 0.16));
}

.flywheel-steps .loop span {
  font-size: 1.6rem;
}

.revenue-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-right: 1px solid var(--line);
}

.revenue-strip p {
  min-height: 150px;
  margin: 0;
  padding: 1.6rem;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(244, 240, 232, 0.55);
  font-size: 0.86rem;
}

.revenue-strip span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.global-statement {
  margin: -1.2rem 0 clamp(4rem, 7vw, 7rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 3rem);
  color: rgba(244, 240, 232, 0.88);
  font-size: clamp(1.5rem, 3.7vw, 3.8rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  text-align: center;
}

.global-statement i {
  width: clamp(1.5rem, 5vw, 5rem);
  height: 1px;
  background: #7bc2ff;
  opacity: 0.45;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(123, 194, 255, 0.22);
  border-right: 1px solid rgba(123, 194, 255, 0.22);
}

.location-card {
  min-height: 430px;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(123, 194, 255, 0.22);
  border-left: 1px solid rgba(123, 194, 255, 0.22);
  background: rgba(1, 8, 18, 0.48);
}

.location-card > span {
  color: #7bc2ff;
}

.location-card h3 {
  margin: 4rem 0 0;
  font-size: clamp(3.6rem, 6vw, 6rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.location-card > p {
  margin: 1rem 0 2rem;
  color: #8bc9ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.location-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.location-card li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(123, 194, 255, 0.12);
  color: rgba(244, 240, 232, 0.61);
}

.roadmap {
  margin-top: clamp(5rem, 8vw, 8rem);
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  border: 1px solid rgba(123, 194, 255, 0.22);
  background: rgba(2, 9, 20, 0.62);
}

.roadmap-intro {
  padding: clamp(2.2rem, 5vw, 5rem);
  border-right: 1px solid rgba(123, 194, 255, 0.22);
}

.roadmap-intro h3 {
  margin: 4rem 0 1.5rem;
  font-size: clamp(2.8rem, 4.5vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.roadmap-intro > p:last-child {
  color: rgba(244, 240, 232, 0.52);
}

.roadmap-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-list li {
  min-height: 150px;
  padding: 2rem clamp(1.5rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(123, 194, 255, 0.18);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  align-items: center;
}

.roadmap-list li:last-child {
  border-bottom: 0;
}

.roadmap-list time {
  color: #8bc9ff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.roadmap-list strong {
  font-size: 1.2rem;
}

.roadmap-list p {
  margin: 0.5rem 0 0;
  color: rgba(244, 240, 232, 0.52);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.team-card {
  min-height: 250px;
  padding: 2rem;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #090a0c;
  transition: background 240ms ease;
}

.team-card:hover {
  background: #111319;
}

.team-card h3 {
  margin: 3.8rem 0 0.6rem;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.2;
}

.team-card p {
  margin: 0;
  color: rgba(244, 240, 232, 0.48);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
}

.team-card small {
  display: block;
  margin-top: 1.4rem;
  color: rgba(244, 240, 232, 0.66);
}

.company {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--line);
  background: #05070b;
}

.company-media,
.company-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.company-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8) brightness(0.72);
}

.company-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 7, 13, 0.98) 0%, rgba(4, 7, 13, 0.74) 48%, rgba(4, 7, 13, 0.16) 78%),
    linear-gradient(180deg, rgba(4, 7, 13, 0.08) 40%, rgba(4, 7, 13, 0.92) 100%);
}

.company-inner {
  width: min(100%, var(--max));
  min-height: 920px;
  margin: 0 auto;
  padding: clamp(7rem, 11vw, 10rem) 2rem 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.company-callout {
  align-self: start;
}

.company-callout h2 {
  max-width: none;
  margin: 1.6rem 0 2.3rem;
  font-size: clamp(4rem, 6.2vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

@media (min-width: 721px) {
  .company-callout h2 {
    white-space: nowrap;
  }
}

.company-details {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(5, 8, 13, 0.66);
  backdrop-filter: blur(20px);
}

.company-details > div {
  padding: 1.35rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
}

.company-details dt {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.company-details dd {
  margin: 0;
  color: rgba(244, 240, 232, 0.82);
  font-size: 0.92rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050607;
}

.footer-inner,
.footer-bottom {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.footer-inner {
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-inner > p {
  margin: 0;
  color: rgba(244, 240, 232, 0.5);
  line-height: 1.8;
}

.footer-inner nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 2rem;
}

.footer-inner nav a {
  color: rgba(244, 240, 232, 0.62);
  font-size: 0.86rem;
}

.footer-inner nav a:hover,
.footer-inner nav a:focus-visible {
  color: var(--gold-bright);
}

.footer-inner nav .footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  color: var(--gold);
}

.footer-social-link [aria-hidden="true"] {
  transition: transform 220ms ease;
}

.footer-social-link:hover [aria-hidden="true"],
.footer-social-link:focus-visible [aria-hidden="true"] {
  transform: translate(0.18rem, -0.18rem);
}

.footer-bottom {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(244, 240, 232, 0.66);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.footer-legal a {
  transition: color 220ms ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--gold-bright);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    justify-self: end;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
  }

  .menu-button span {
    width: 18px;
    height: 1px;
    background: var(--paper);
    transition: transform 220ms var(--ease);
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    z-index: 1;
    top: 100%;
    right: 0;
    left: 0;
    height: calc(100svh - var(--header-height));
    padding: 2rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: rgba(5, 6, 8, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.75rem);
    transition: opacity 220ms ease, transform 220ms var(--ease);
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: clamp(1.5rem, 5vw, 2.3rem);
    font-weight: 700;
    letter-spacing: -0.035em;
  }

  .service-grid,
  .agent-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-list,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .revenue-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-inner {
    grid-template-columns: 1fr;
    align-content: space-between;
  }
}

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

  .header-inner {
    padding: 0 1rem;
  }

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

  .brand-copy strong {
    font-size: 0.86rem;
  }

  .brand-copy small {
    margin-top: 0.36rem;
    font-size: 0.48rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media video {
    object-position: 73% center;
    opacity: 0.64;
    filter: saturate(0.9) contrast(1.08) brightness(0.72);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 7, 10, 0.18) 0%, rgba(5, 7, 10, 0.3) 38%, #060708 78%),
      linear-gradient(90deg, rgba(5, 7, 10, 0.9) 0%, rgba(5, 7, 10, 0.28) 88%);
  }

  .hero-grid {
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.7) 62%, transparent 92%);
  }

  .hero-inner {
    padding: 7.5rem 1rem 2.25rem;
    align-items: flex-end;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 1.1rem;
    font-size: 0.68rem;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 16vw, 5.4rem);
    line-height: 0.98;
  }

  .hero-lede {
    margin-top: 1.4rem;
    font-size: 1rem;
    line-height: 1.75;
  }

  .desktop-only {
    display: none;
  }

  .hero-actions {
    margin-top: 1.5rem;
  }

  .button {
    width: 100%;
  }

  .hero-side-note {
    display: none;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    border-right: 0;
  }

  .stat {
    min-height: 98px;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .stat strong {
    font-size: 2rem;
  }

  .section {
    padding: 5.5rem 0;
  }

  .section-inner,
  .company-inner,
  .footer-inner,
  .footer-bottom {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin-bottom: 3.2rem;
  }

  .section-heading h2 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
    line-height: 1.08;
  }

  .section-heading > div > p {
    margin-top: 1.4rem;
  }

  .brand-story-grid,
  .pillar-grid,
  .flywheel-panel,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .brand-stage-card,
  .brand-stage-card img {
    min-height: 390px;
  }

  .brand-stage-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-stage-card figcaption {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    flex-direction: column;
    gap: 0.25rem;
  }

  .story-principle {
    min-height: 430px;
    padding: 2rem;
  }

  .service-grid,
  .agent-grid,
  .project-list,
  .location-grid,
  .team-grid,
  .revenue-strip {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 220px;
  }

  .pillar-card {
    min-height: 330px;
  }

  .system-visual,
  .system-visual img {
    min-height: 650px;
    height: 650px;
  }

  .system-visual::after {
    background: linear-gradient(180deg, rgba(1, 6, 14, 0.12) 0%, rgba(1, 6, 14, 0.93) 68%);
  }

  .system-visual img {
    object-position: 66% center;
  }

  .system-visual figcaption {
    top: auto;
    right: 1.5rem;
    bottom: 2rem;
    left: 1.5rem;
    transform: none;
  }

  .system-visual h3 {
    font-size: 3.5rem;
  }

  .pipeline-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pipeline-intro > p {
    margin-left: 0;
  }

  .flywheel-copy,
  .roadmap-intro {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .flywheel-steps {
    grid-template-columns: 1fr;
  }

  .flywheel-steps li,
  .flywheel-steps li:nth-child(even) {
    border-right: 0;
  }

  .flywheel-steps .loop {
    grid-column: auto;
  }

  .global-statement {
    flex-direction: column;
    gap: 1rem;
  }

  .global-statement i {
    width: 1px;
    height: 28px;
  }

  .location-card {
    min-height: 350px;
  }

  .roadmap-list li {
    grid-template-columns: 82px 1fr;
    gap: 1rem;
    padding: 1.6rem 1.3rem;
  }

  .roadmap-list time {
    font-size: 1.5rem;
  }

  .company {
    min-height: 980px;
  }

  .company-media img {
    object-position: 30% center;
  }

  .company-overlay {
    background: linear-gradient(180deg, rgba(4, 7, 13, 0.22) 0%, rgba(4, 7, 13, 0.94) 66%);
  }

  .company-inner {
    min-height: 980px;
    padding-top: 5.5rem;
    padding-bottom: 1.5rem;
  }

  .company-callout h2 {
    font-size: clamp(3rem, 12vw, 4.3rem);
  }

  .company-details > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner nav {
    grid-template-columns: 1fr 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-media video {
    display: none;
  }
}
