/* ============================================================
   GULFCITY.GG — cinematic homepage styles
   Drop into wwwroot/css/gulfcity.css
   ============================================================ */

:root {
  --gc-bg: #08080d;
  --gc-bg-2: #0c0c14;
  --gc-surface: #11111b;
  --gc-surface-soft: rgba(17, 17, 27, 0.64);
  --gc-line: rgba(255, 255, 255, 0.08);
  --gc-line-strong: rgba(255, 255, 255, 0.16);
  --gc-ink: #f2f0f7;
  --gc-ink-dim: #a39fb3;
  --gc-purple: #8b5cf6;
  --gc-violet: #a855f7;
  --gc-pink: #ff4d8d;
  --gc-orange: #ff9446;
  --gc-cyan: #35d6d0;
  --gc-grad: linear-gradient(100deg, #8b5cf6 0%, #ff4d8d 55%, #ff9446 100%);
  --gc-font: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --gc-radius: 10px;
}

* { box-sizing: border-box; }

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

body.gc-body {
  margin: 0;
  background: var(--gc-bg);
  color: var(--gc-ink);
  font-family: var(--gc-font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gc-pink); color: #fff; }

.gc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ---------- Type ---------- */

.gc-display {
  font-family: var(--gc-font);
  font-stretch: 125%;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.95;
  margin: 0;
}

.gc-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gc-pink);
  margin: 0 0 22px;
}
.gc-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gc-grad);
  flex: none;
}

.gc-h2 {
  font-size: clamp(40px, 5.6vw, 76px);
  color: var(--gc-ink);
}

.gc-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--gc-ink-dim);
  max-width: 56ch;
  margin: 20px 0 0;
  text-wrap: pretty;
}

.gc-grad-text {
  background: var(--gc-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */

.gc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-family: var(--gc-font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.gc-btn:hover { transform: translateY(-2px); }
.gc-btn:active { transform: translateY(0); }
.gc-btn:focus-visible { outline: 2px solid var(--gc-pink); outline-offset: 3px; }

.gc-btn--primary {
  background: var(--gc-grad);
  color: #fff;
}
.gc-btn--primary:hover { box-shadow: 0 12px 36px -10px rgba(255, 77, 141, 0.55); }

.gc-btn--outline {
  border-color: var(--gc-line-strong);
  color: var(--gc-ink);
  background: rgba(255, 255, 255, 0.02);
}
.gc-btn--outline:hover { border-color: rgba(255, 255, 255, 0.55); background: rgba(255, 255, 255, 0.06); }

.gc-btn--ghost {
  padding: 16px 10px;
  color: var(--gc-ink-dim);
}
.gc-btn--ghost:hover { color: var(--gc-ink); }

.gc-arrow { font-weight: 400; transform: translateY(-1px); }

/* ---------- Nav ---------- */

.gc-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
.gc-nav.is-scrolled {
  background: rgba(8, 8, 13, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--gc-line);
}

.gc-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.gc-brand {
  font-stretch: 125%;
  font-weight: 900;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--gc-ink);
}
.gc-brand .gg { color: transparent; background: var(--gc-grad); -webkit-background-clip: text; background-clip: text; }

.gc-nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gc-nav__links a {
  position: relative;
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gc-ink-dim);
  transition: color 0.25s ease;
}
.gc-nav__links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--gc-grad);
  transition: right 0.3s ease;
}
.gc-nav__links a:hover,
.gc-nav__links a.is-active { color: var(--gc-ink); }
.gc-nav__links a:hover::after,
.gc-nav__links a.is-active::after { right: 14px; }

.gc-nav__cta { display: flex; align-items: center; gap: 12px; }
.gc-nav__cta .gc-btn { padding: 11px 22px; font-size: 12px; }

.gc-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.gc-burger span {
  display: block;
  height: 2px;
  background: var(--gc-ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.gc-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gc-burger.is-open span:nth-child(2) { opacity: 0; }
.gc-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.gc-mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 auto 0;
  z-index: 99;
  background: rgba(8, 8, 13, 0.96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gc-line);
  padding: 12px 0 28px;
}
.gc-mobile-menu.is-open { display: block; }
.gc-mobile-menu a {
  display: block;
  padding: 16px clamp(20px, 4vw, 48px);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gc-ink-dim);
  border-bottom: 1px solid var(--gc-line);
}
.gc-mobile-menu a:hover { color: var(--gc-ink); }

/* ---------- Hero ---------- */

.gc-hero {
  position: relative;
  height: 240vh;
}
.gc-hero__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gc-hero__media,
.gc-hero__media video,
.gc-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gc-hero__media video {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.gc-hero__media video.is-playing { opacity: 1; }

.gc-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(8, 8, 13, 0.55) 0%, rgba(8, 8, 13, 0.1) 26%, rgba(8, 8, 13, 0.12) 55%, rgba(8, 8, 13, 0.92) 100%),
    radial-gradient(120% 90% at 50% 50%, transparent 40%, rgba(8, 8, 13, 0.55) 100%);
}

.gc-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.gc-hero__logo {
  will-change: transform;
}
.gc-hero__kicker {
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: rgba(242, 240, 247, 0.85);
  margin: 0 0 18px;
}
.gc-hero__wordmark {
  font-size: clamp(52px, 11.5vw, 196px);
  color: #fff;
  text-shadow: 0 10px 60px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
}
.gc-hero__wordmark .gg {
  background: var(--gc-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gc-hero__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(48px, 9vh, 110px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.gc-hero__title {
  font-size: clamp(26px, 3.4vw, 46px);
  margin: 0 0 14px;
}
.gc-hero__sub {
  max-width: 62ch;
  margin: 0 0 30px;
  color: rgba(242, 240, 247, 0.78);
  font-size: clamp(15px, 1.3vw, 18px);
  text-wrap: pretty;
}
.gc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}

.gc-countdown {
  display: flex;
  align-items: flex-start;
  gap: clamp(22px, 4vw, 56px);
}
.gc-countdown__cell { text-align: center; }
.gc-countdown__num {
  font-stretch: 125%;
  font-weight: 900;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: #fff;
}
.gc-countdown__label {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-transform: uppercase;
  color: var(--gc-ink-dim);
}
.gc-countdown__cell + .gc-countdown__cell { position: relative; }
.gc-countdown__cell + .gc-countdown__cell::before {
  content: ":";
  position: absolute;
  left: calc(clamp(22px, 4vw, 56px) / -2);
  top: 0;
  transform: translateX(-50%);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 40px);
  color: rgba(255, 255, 255, 0.25);
}
.gc-countdown__caption {
  width: 100%;
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 240, 247, 0.6);
}

.gc-hero__cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  text-transform: uppercase;
  color: rgba(242, 240, 247, 0.65);
}
.gc-hero__cue::after {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
  animation: gc-cue 2.2s ease-in-out infinite;
}
@keyframes gc-cue {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (prefers-reduced-motion: reduce) {
  .gc-hero__cue::after { animation: none; }
}

/* Motion-managed initial states (only when JS+GSAP active) */
html.gc-motion .gc-hero__content { opacity: 0; }

/* ---------- Sections ---------- */

.gc-section {
  position: relative;
  padding: clamp(90px, 12vw, 150px) 0;
}
.gc-section--tint { background: var(--gc-bg-2); }
.gc-section::before,
.gc-section--tint::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(53, 214, 208, 0.06), transparent 28%),
    linear-gradient(300deg, rgba(255, 77, 141, 0.08), transparent 34%);
  opacity: 0.55;
}
.gc-section > .gc-container { position: relative; z-index: 1; }

/* ---------- Cinematic scroll story ---------- */

.gc-cine {
  position: relative;
  height: 360vh;
  margin-top: -1px;
  background: #07070b;
}
.gc-cine__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.gc-cine__backdrop,
.gc-cine__bg,
.gc-cine__shade {
  position: absolute;
  inset: 0;
}
.gc-cine__backdrop { z-index: 0; }
.gc-cine__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.18);
  will-change: transform, opacity;
}
.gc-cine__bg.is-active { opacity: 1; }
.gc-cine__shade {
  z-index: 1;
  background:
    linear-gradient(to bottom, var(--gc-bg) 0%, rgba(8, 8, 13, 0.18) 20%, rgba(8, 8, 13, 0.18) 62%, var(--gc-bg) 100%),
    linear-gradient(to right, rgba(8, 8, 13, 0.92) 0%, rgba(8, 8, 13, 0.52) 42%, rgba(8, 8, 13, 0.2) 72%, rgba(8, 8, 13, 0.62) 100%);
}
.gc-cine__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 6vw, 90px);
}
.gc-cine__copy {
  position: relative;
  flex: 0 1 660px;
  width: 660px;
  max-width: 92vw;
  min-height: 420px;
  perspective: 1200px;
}
.gc-cine__panel {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  will-change: transform, opacity, filter;
}
.gc-cine__panel.is-active { opacity: 1; }
.gc-cine__title {
  max-width: 9ch;
  font-size: clamp(48px, 7.4vw, 112px);
  color: #fff;
  text-shadow: 0 16px 64px rgba(0, 0, 0, 0.45);
}
.gc-cine__text {
  max-width: 54ch;
  margin: 24px 0 0;
  color: rgba(242, 240, 247, 0.82);
  font-size: clamp(16px, 1.45vw, 20px);
  text-wrap: pretty;
}
.gc-cine__meter {
  display: grid;
  gap: 14px;
  flex: none;
}
.gc-cine__meter span {
  width: 4px;
  height: 52px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
  transform-origin: center;
  transition: background-color 0.35s ease, transform 0.35s ease;
}
.gc-cine__meter span.is-active {
  background: var(--gc-grad);
  transform: scaleY(1.35);
}

html.gc-motion .gc-cine__panel,
html.gc-motion .gc-cine__bg { opacity: 0; }

.gc-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.gc-section__headlink {
  flex: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gc-ink-dim);
  padding-bottom: 10px;
  transition: color 0.25s ease;
}
.gc-section__headlink:hover { color: var(--gc-ink); }

/* ---------- Tags ---------- */

.gc-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--gc-line-strong);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  color: var(--gc-ink-dim);
  background: rgba(8, 8, 13, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.gc-tag--official { color: #ffb1cd; border-color: rgba(255, 77, 141, 0.55); }
.gc-tag--community { color: #cdb6ff; border-color: rgba(139, 92, 246, 0.6); }
.gc-tag--update { color: #ffc79a; border-color: rgba(255, 148, 70, 0.55); }

/* ---------- News ---------- */

.gc-news-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.gc-news-feature {
  grid-column: span 7;
  position: relative;
  border-radius: var(--gc-radius);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--gc-line);
  transform-style: preserve-3d;
}
.gc-news-feature__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.gc-news-feature:hover .gc-news-feature__img { transform: scale(1.045); }
.gc-news-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 13, 0.94) 0%, rgba(8, 8, 13, 0.35) 45%, rgba(8, 8, 13, 0.05) 70%);
}
.gc-news-feature__body {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 3vw, 40px);
}
.gc-news-feature__meta,
.gc-news-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.gc-news-date {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gc-ink-dim);
}
.gc-news-feature__title {
  font-size: clamp(26px, 2.8vw, 40px);
  margin: 0 0 12px;
}
.gc-news-feature__excerpt {
  color: rgba(242, 240, 247, 0.75);
  max-width: 52ch;
  margin: 0;
}

.gc-news-side {
  grid-column: span 5;
  display: grid;
  gap: 22px;
}
.gc-news-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 2.4vw, 32px);
  border: 1px solid var(--gc-line);
  border-radius: var(--gc-radius);
  background: var(--gc-surface);
  transition: border-color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  transform-style: preserve-3d;
}
.gc-news-card:hover {
  border-color: rgba(139, 92, 246, 0.55);
  background: #14141f;
  transform: translateY(-4px);
}
.gc-news-card__title {
  font-size: clamp(18px, 1.7vw, 23px);
  margin: 0 0 8px;
}
.gc-news-card__excerpt {
  color: var(--gc-ink-dim);
  font-size: 15px;
  margin: 0;
}

/* ---------- Servers ---------- */

.gc-server-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.gc-server-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px 28px;
  border: 1px solid var(--gc-line);
  border-radius: var(--gc-radius);
  background: var(--gc-surface);
  transition: border-color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  transform-style: preserve-3d;
}
.gc-server-card::after,
.gc-news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 38%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gc-server-card:hover::after,
.gc-news-card:hover::after { opacity: 1; }
.gc-server-card:hover { border-color: var(--gc-line-strong); transform: translateY(-4px); }
.gc-server-card--flagship {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--gc-surface), var(--gc-surface)) padding-box,
    var(--gc-grad) border-box;
}
.gc-server-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.gc-server-card__type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gc-ink-dim);
}
.gc-server-card__name {
  font-size: clamp(22px, 2vw, 28px);
  margin: 0;
}
.gc-server-card__desc {
  color: var(--gc-ink-dim);
  font-size: 14.5px;
  margin: 0;
  flex: 1;
}
.gc-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.gc-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.gc-status--soon { color: #ff8db4; }
.gc-status--planning { color: #c0a6ff; }
.gc-status--concept { color: #8e8a9e; }

.gc-server-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  padding-top: 16px;
  border-top: 1px solid var(--gc-line);
}
.gc-spec { font-size: 13px; color: var(--gc-ink-dim); }
.gc-spec b { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(242, 240, 247, 0.45); margin-bottom: 3px; }
.gc-spec span { color: var(--gc-ink); font-weight: 600; }

.gc-server-card__cta {
  margin-top: 4px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gc-ink);
}
.gc-server-card__cta .gc-arrow { transition: transform 0.25s ease; display: inline-block; }
.gc-server-card:hover .gc-server-card__cta .gc-arrow { transform: translateX(5px); }

/* ---------- Featured (split) ---------- */

.gc-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  border-radius: var(--gc-radius);
  overflow: hidden;
  border: 1px solid var(--gc-line);
  background: var(--gc-surface);
}
.gc-featured__media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.gc-featured__media img {
  position: absolute;
  inset: -10% 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}
.gc-featured__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--gc-surface) 100%);
}
.gc-featured__body {
  padding: clamp(32px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gc-featured__title { font-size: clamp(34px, 3.6vw, 56px); }
.gc-featured__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin: 30px 0 34px;
  padding-top: 24px;
  border-top: 1px solid var(--gc-line);
}

/* ---------- Timeline ---------- */

.gc-timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding-left: 36px;
}
.gc-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gc-purple), var(--gc-pink) 60%, rgba(255, 148, 70, 0.15));
}
.gc-timeline__item {
  position: relative;
  padding: 0 0 clamp(36px, 4.5vw, 56px);
}
.gc-timeline__item::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gc-bg);
  border: 2px solid var(--gc-pink);
}
.gc-timeline__item--future::before { border-style: dashed; border-color: var(--gc-ink-dim); }
.gc-timeline__date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gc-pink);
  margin-bottom: 6px;
}
.gc-timeline__item--future .gc-timeline__date { color: var(--gc-ink-dim); }
.gc-timeline__title {
  font-size: clamp(20px, 2vw, 27px);
  margin: 0 0 8px;
}
.gc-timeline__text {
  color: var(--gc-ink-dim);
  max-width: 62ch;
  margin: 0;
  font-size: 15px;
}

/* ---------- Community CTA ---------- */

.gc-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(110px, 16vw, 200px) 0;
}
.gc-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.gc-cta__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--gc-bg) 0%, rgba(8, 8, 13, 0.55) 30%, rgba(8, 8, 13, 0.6) 70%, var(--gc-bg) 100%);
}
.gc-cta .gc-container { position: relative; z-index: 1; }
.gc-cta__title { font-size: clamp(44px, 7vw, 104px); color: #fff; }
.gc-cta__sub {
  max-width: 58ch;
  margin: 22px auto 38px;
  color: rgba(242, 240, 247, 0.8);
  font-size: clamp(15px, 1.4vw, 18px);
}
.gc-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ---------- Footer ---------- */

.gc-footer {
  border-top: 1px solid var(--gc-line);
  padding: 56px 0 40px;
  background: var(--gc-bg);
}
.gc-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.gc-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gc-footer__nav a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gc-ink-dim);
  transition: color 0.25s ease;
}
.gc-footer__nav a:hover { color: var(--gc-ink); }
.gc-footer__legal {
  width: 100%;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gc-line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(163, 159, 179, 0.7);
}

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .gc-news-feature { grid-column: span 12; min-height: 420px; }
  .gc-news-side { grid-column: span 12; grid-template-columns: 1fr 1fr; }
  .gc-featured { grid-template-columns: 1fr; }
  .gc-featured__media { min-height: 320px; }
  .gc-featured__media::after { background: linear-gradient(to bottom, transparent 55%, var(--gc-surface) 100%); }
  .gc-cine__stage { min-height: 620px; }
  .gc-cine__shade {
    background:
      linear-gradient(to bottom, var(--gc-bg) 0%, rgba(8, 8, 13, 0.18) 18%, rgba(8, 8, 13, 0.36) 56%, var(--gc-bg) 100%),
      linear-gradient(to right, rgba(8, 8, 13, 0.88), rgba(8, 8, 13, 0.34));
  }
}

@media (max-width: 860px) {
  .gc-nav__links, .gc-nav__cta .gc-btn--outline { display: none; }
  .gc-burger { display: flex; }
  .gc-hero { height: 200vh; }
  .gc-cine { height: 300vh; }
  .gc-cine__stage {
    min-height: 600px;
    align-items: flex-end;
    padding-bottom: 54px;
  }
  .gc-cine__inner {
    min-height: auto;
    align-items: flex-end;
  }
  .gc-cine__copy {
    flex: 0 0 calc(100vw - 40px);
    min-height: 380px;
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }
  .gc-cine__panel { justify-content: flex-end; }
  .gc-cine__title {
    max-width: 8ch;
    font-size: 52px;
  }
  .gc-cine__meter { display: none; }
  .gc-section__head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 640px) {
  .gc-news-side { grid-template-columns: 1fr; }
  .gc-hero__wordmark { white-space: normal; line-height: 0.9; }
  .gc-hero__actions .gc-btn { width: 100%; }
  .gc-hero__content { bottom: 28px; }
  .gc-countdown { gap: 26px; }
  .gc-countdown__cell + .gc-countdown__cell::before { left: -13px; }
  .gc-cine__text { font-size: 15px; }
  .gc-cine__title { font-size: 46px; }
  .gc-cine__stage { min-height: 620px; }
  .gc-timeline { padding-left: 30px; }
  .gc-timeline__item::before { left: -30px; }
}
