﻿:root {
  --carbon: #050608;
  --ice: #f4f7fa;
  --cyan: #00e5ff;
  --red: #ff2a3d;
  --asphalt: #20242a;
  --silver: #bfc7d5;
  --line: rgba(244, 247, 250, 0.14);
  --glass: rgba(244, 247, 250, 0.07);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --cursor-x: 50vw;
  --cursor-y: 50vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 0%, rgba(0, 229, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 10% 24%, rgba(255, 42, 61, 0.09), transparent 24rem),
    var(--carbon);
  color: var(--ice);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

img,
video {
  max-width: 100%;
}

main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.ambient-scene {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.ambient-scene::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(244, 247, 250, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 247, 250, 0.026) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  mask-image: radial-gradient(circle at var(--cursor-x) var(--cursor-y), #000 0, transparent 46rem);
}

.ambient-scene span {
  position: absolute;
  width: 38rem;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.28;
  filter: blur(78px);
  transform: translate3d(0, 0, 0);
  animation: ambientDrift 18s ease-in-out infinite alternate;
}

.ambient-scene span:nth-child(1) {
  top: -12rem;
  right: -8rem;
  background: rgba(0, 229, 255, 0.52);
}

.ambient-scene span:nth-child(2) {
  bottom: 10%;
  left: -14rem;
  background: rgba(255, 42, 61, 0.34);
  animation-duration: 22s;
}

.ambient-scene span:nth-child(3) {
  right: 18%;
  bottom: -18rem;
  background: rgba(191, 199, 213, 0.24);
  animation-duration: 26s;
}

.cursor-glow {
  position: fixed;
  left: var(--cursor-x);
  top: var(--cursor-y);
  z-index: 0;
  width: 18rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.14), transparent 64%);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease;
}

body.is-pointer-active .cursor-glow {
  opacity: 1;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--red));
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.42);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
}

.page-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.site-nav {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 24px));
  min-height: 62px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(244, 247, 250, 0.18);
  border-radius: 10px;
  background: rgba(5, 6, 8, 0.78);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.site-brand {
  display: grid;
  grid-template-columns: 38px auto;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-brand__mark {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(244, 247, 250, 0.16);
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.12);
}

.site-brand__text {
  display: grid;
  gap: 1px;
}

.site-brand span {
  color: var(--ice);
  font-size: 1.06rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.site-brand small {
  color: var(--silver);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}

.site-nav__links a {
  min-height: 38px;
  padding: 9px 11px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(244, 247, 250, 0.72);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-nav.is-scrolled {
  border-color: rgba(0, 229, 255, 0.24);
  background: rgba(5, 6, 8, 0.9);
  box-shadow: 0 18px 66px rgba(0, 0, 0, 0.48), 0 0 34px rgba(0, 229, 255, 0.1);
}

.site-nav__links a:hover,
.site-nav__links a.is-active {
  border-color: rgba(0, 229, 255, 0.35);
  background: rgba(0, 229, 255, 0.1);
  color: var(--ice);
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.14);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 94vh;
  overflow: hidden;
  padding: 158px 0 92px;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(244, 247, 250, 0.08) 45%, transparent 58%),
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(0, 229, 255, 0.14), transparent 22rem);
  content: "";
  opacity: 0.45;
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateX(-18%);
  animation: heroSweep 9s ease-in-out infinite alternate;
}

.hero--compact {
  min-height: 36vh;
  padding: 96px 0 42px;
}

.hero--home {
  isolation: isolate;
  background:
    linear-gradient(105deg, rgba(5, 6, 8, 0.96), rgba(5, 6, 8, 0.7) 54%, rgba(0, 229, 255, 0.18)),
    linear-gradient(145deg, rgba(255, 42, 61, 0.13), rgba(0, 229, 255, 0.08));
}

.hero--home::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(95deg, rgba(5, 6, 8, 0.98) 0%, rgba(5, 6, 8, 0.86) 45%, rgba(5, 6, 8, 0.18) 72%, rgba(5, 6, 8, 0.72) 100%),
    radial-gradient(circle at 72% 48%, rgba(0, 229, 255, 0.18), transparent 24rem),
    var(--home-hero-image) calc(100% - 96px) center / min(480px, 32vw) auto no-repeat;
  content: "";
  opacity: 0.92;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 56% 92% at 70% 50%, #000 0%, #000 30%, rgba(0, 0, 0, 0.72) 58%, rgba(0, 0, 0, 0.28) 82%, transparent 100%);
  mask-image: radial-gradient(ellipse 56% 92% at 70% 50%, #000 0%, #000 30%, rgba(0, 0, 0, 0.72) 58%, rgba(0, 0, 0, 0.28) 82%, transparent 100%);
}

.hero--3d {
  isolation: isolate;
  background: linear-gradient(120deg, rgba(5, 6, 8, 0.96), rgba(0, 229, 255, 0.18)), #090d11;
}

.hero--3d::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(680px, 52vw);
  height: min(430px, 64%);
  background:
    radial-gradient(circle at 62% 42%, rgba(0, 229, 255, 0.36), transparent 48%),
    linear-gradient(135deg, rgba(0, 229, 255, 0.16), rgba(255, 42, 61, 0.12));
  content: "";
  filter: blur(4px);
  pointer-events: none;
}

.hero--photo {
  background: linear-gradient(120deg, rgba(5, 6, 8, 0.96), rgba(191, 199, 213, 0.22)), #090a0d;
}

.hero--image-bg {
  isolation: isolate;
}

.hero--image-bg::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.98) 0%, rgba(5, 6, 8, 0.86) 38%, rgba(5, 6, 8, 0.3) 74%, rgba(5, 6, 8, 0.82) 100%),
    var(--hero-bg-image) right center / min(680px, 54vw) auto no-repeat;
  content: "";
  opacity: 0.86;
  pointer-events: none;
}

.hero--cyan {
  background: linear-gradient(120deg, rgba(5, 6, 8, 0.96), rgba(0, 229, 255, 0.24)), #061014;
}

.hero--ocean {
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 28%, rgba(111, 235, 255, 0.36), transparent 24rem),
    radial-gradient(circle at 94% 80%, rgba(0, 89, 124, 0.62), transparent 32rem),
    radial-gradient(circle at 8% 12%, rgba(0, 229, 255, 0.14), transparent 24rem),
    linear-gradient(118deg, rgba(2, 13, 25, 0.98) 0%, rgba(4, 48, 72, 0.92) 42%, rgba(0, 122, 158, 0.72) 100%),
    #02101d;
}

.hero--ocean .motion-grid {
  opacity: 0.16;
  background-size: 78px 78px;
  mask-image: linear-gradient(120deg, transparent, #000 18%, #000 78%, transparent);
}

.discipline-page--ocean {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(111, 235, 255, 0.28), transparent 30rem),
    radial-gradient(circle at 8% 22%, rgba(0, 229, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 18% 86%, rgba(0, 76, 112, 0.52), transparent 36rem),
    radial-gradient(circle at 78% 92%, rgba(0, 139, 176, 0.32), transparent 32rem),
    linear-gradient(135deg, #020a13 0%, #032032 34%, #064763 64%, #02101d 100%);
}

.discipline-page--ocean::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(244, 247, 250, 0.08), transparent 42rem),
    linear-gradient(90deg, rgba(0, 229, 255, 0.08), transparent 28%, rgba(111, 235, 255, 0.06));
  content: "";
  pointer-events: none;
}

.discipline-page--ocean > * {
  position: relative;
  z-index: 1;
}

.discipline-page--ocean .stat-strip div,
.discipline-page--ocean .empty-state,
.discipline-page--ocean .image-tile,
.discipline-page--ocean .path-note {
  background: rgba(0, 52, 76, 0.36);
  border-color: rgba(111, 235, 255, 0.2);
}

.hero--red,
.hero--gallery {
  background: linear-gradient(120deg, rgba(5, 6, 8, 0.96), rgba(255, 42, 61, 0.24)), #12070a;
}

.hero--silver {
  background: linear-gradient(120deg, rgba(5, 6, 8, 0.96), rgba(191, 199, 213, 0.18)), #111417;
}

.hero--ember {
  background: linear-gradient(120deg, rgba(5, 6, 8, 0.96), rgba(255, 114, 37, 0.26)), #170c08;
}

.hero--golf {
  background:
    radial-gradient(circle at 84% 28%, rgba(0, 229, 255, 0.16), transparent 24rem),
    radial-gradient(circle at 78% 78%, rgba(255, 42, 61, 0.14), transparent 30rem),
    linear-gradient(120deg, rgba(5, 6, 8, 0.98), rgba(32, 36, 42, 0.74)),
    #080a0d;
}

.discipline-page--golf {
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 229, 255, 0.11), transparent 30rem),
    radial-gradient(circle at 10% 86%, rgba(255, 42, 61, 0.1), transparent 34rem),
    linear-gradient(140deg, #050608 0%, #11151a 52%, #07090c 100%);
}

.motion-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(244, 247, 250, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 247, 250, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(120deg, transparent, #000 22%, #000 68%, transparent);
  animation: drift 18s linear infinite;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-54px, 54px, 0); }
}

@keyframes ambientDrift {
  from { transform: translate3d(-2rem, -1rem, 0) scale(0.96); }
  to { transform: translate3d(3rem, 2rem, 0) scale(1.08); }
}

@keyframes heroSweep {
  from { transform: translateX(-22%); }
  to { transform: translateX(18%); }
}

.hero__content {
  position: relative;
  z-index: 4;
}

.hero-profile {
  position: absolute;
  right: clamp(28px, 6vw, 92px);
  bottom: clamp(18px, 4vw, 48px);
  z-index: 2;
  width: min(520px, 39vw);
  height: min(580px, 78%);
  border: 1px solid rgba(111, 235, 255, 0.28);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(111, 235, 255, 0.24), rgba(244, 247, 250, 0.05)),
    rgba(3, 34, 54, 0.72);
  box-shadow:
    0 0 0 1px rgba(244, 247, 250, 0.05),
    -28px 18px 90px rgba(0, 229, 255, 0.22),
    0 34px 120px rgba(0, 0, 0, 0.58);
  overflow: hidden;
}

.hero-profile::before {
  position: absolute;
  inset: -1px;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(2, 13, 25, 0.58), transparent 34%),
    linear-gradient(180deg, rgba(111, 235, 255, 0.12), transparent 42%, rgba(3, 16, 24, 0.2));
  content: "";
  pointer-events: none;
}

.hero-profile::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at 50% 45%, transparent 38%, rgba(2, 13, 25, 0.22) 78%),
    linear-gradient(180deg, transparent 58%, rgba(3, 16, 24, 0.74));
  content: "";
  pointer-events: none;
}

.hero-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.16) contrast(1.08) brightness(1.02);
}

.hero__background-card {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: min(700px, 54vw);
  max-height: 88%;
  object-fit: contain;
  object-position: right bottom;
  opacity: 0.76;
  filter:
    drop-shadow(0 34px 56px rgba(0, 0, 0, 0.66))
    drop-shadow(0 0 28px rgba(0, 229, 255, 0.22));
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2rem, 6vw, 5.9rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow: 0 0 38px rgba(0, 229, 255, 0.14), 0 18px 52px rgba(0, 0, 0, 0.48);
}

.hero__lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(244, 247, 250, 0.76);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.58;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 9px;
  isolation: isolate;
  color: #fff;
  font-weight: 950;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.38);
  transform: translateY(0);
  transition: box-shadow 180ms ease, filter 180ms ease, transform 180ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.44), transparent 56%);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.button::before {
  position: absolute;
  inset: 1px 2px auto;
  z-index: -1;
  height: 48%;
  border-radius: 8px 8px 5px 5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  content: "";
}

.button:hover,
.button:focus-visible {
  filter: brightness(1.16) saturate(1.12);
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
}

.button--primary {
  background: linear-gradient(180deg, #58f4ff 0%, var(--cyan) 45%, #00798a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), inset 0 -5px 0 rgba(0, 42, 48, 0.34), 0 8px 0 #003640, 0 0 30px rgba(0, 229, 255, 0.26);
}

.button--ghost {
  background: linear-gradient(180deg, #4a515c 0%, var(--asphalt) 52%, #0d1014 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -5px 0 rgba(0, 0, 0, 0.32), 0 8px 0 #07090c, 0 20px 32px rgba(0, 0, 0, 0.34);
}

.button--ember {
  background: linear-gradient(180deg, #ff8a38 0%, var(--red) 54%, #8c0c19 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36), inset 0 -5px 0 rgba(86, 12, 20, 0.3), 0 8px 0 #520713, 0 0 30px rgba(255, 42, 61, 0.28);
}

.home-intro {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin: 22px 0 28px;
}

.home-intro p {
  max-width: 900px;
  margin: 0;
  color: rgba(244, 247, 250, 0.82);
  font-size: clamp(1rem, 1.55vw, 1.28rem);
  font-weight: 650;
  line-height: 1.75;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: -38px;
  position: relative;
  z-index: 3;
}

.stat-strip div {
  min-height: 108px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(244, 247, 250, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.stat-strip div:hover {
  border-color: rgba(0, 229, 255, 0.34);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.12), var(--shadow);
  transform: translateY(-3px);
}

.stat-strip strong {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  line-height: 1;
}

.stat-strip span {
  display: block;
  margin-top: 10px;
  color: var(--silver);
  font-weight: 850;
}

.section-grid,
.gallery-overview,
.image-grid,
.video-grid {
  display: grid;
  gap: 18px;
  padding: 64px 0;
}

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

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

.feature-panel,
.gallery-card,
.asset-card,
.empty-state {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(244, 247, 250, 0.1), rgba(244, 247, 250, 0.04));
  box-shadow: var(--shadow);
}

.feature-panel,
.gallery-card {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 26px;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.feature-panel::before,
.gallery-card::before,
.image-tile::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(0, 229, 255, 0.2), transparent 16rem),
    linear-gradient(115deg, transparent 0%, rgba(244, 247, 250, 0.12) 42%, transparent 58%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.feature-panel:hover::before,
.gallery-card:hover::before,
.image-tile:hover::before {
  opacity: 1;
}

.feature-panel > *,
.gallery-card > * {
  position: relative;
  z-index: 2;
}

.feature-panel--media {
  background:
    linear-gradient(145deg, rgba(5, 6, 8, 0.86), rgba(5, 6, 8, 0.42)),
    var(--panel-image) center / cover no-repeat;
}

.feature-panel--media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.12), rgba(5, 6, 8, 0.78)),
    radial-gradient(circle at 24% 16%, rgba(0, 229, 255, 0.22), transparent 18rem);
  content: "";
}

.feature-panel:hover,
.gallery-card:hover,
.asset-card:hover {
  border-color: rgba(0, 229, 255, 0.42);
  box-shadow: 0 0 36px rgba(0, 229, 255, 0.12), var(--shadow);
  transform: translateY(-4px);
}

.feature-panel span,
.gallery-card span,
.asset-card span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.feature-panel h2,
.gallery-card h2,
.editorial-split h2,
.empty-state h2 {
  margin: 14px 0 0;
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.feature-panel p,
.gallery-card p,
.editorial-split p,
.empty-state p {
  color: rgba(244, 247, 250, 0.68);
  font-size: 1rem;
  line-height: 1.68;
}

.feature-panel--red span,
.feature-panel--ember span {
  color: var(--red);
}

.feature-panel--silver span {
  color: var(--silver);
}

.feature-panel--golf span {
  color: #8cf3b0;
}

.gallery-card img,
.asset-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-top: 22px;
  border-radius: 8px;
  object-fit: cover;
  transition: filter 260ms ease, transform 260ms ease;
}

.gallery-card:hover img,
.asset-card:hover img {
  filter: saturate(1.18) contrast(1.05);
  transform: scale(1.025);
}

.asset-card__placeholder {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-top: 22px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--silver);
  background: repeating-linear-gradient(135deg, rgba(244, 247, 250, 0.08), rgba(244, 247, 250, 0.08) 1px, transparent 1px, transparent 12px);
  font-weight: 950;
}

.editorial-split,
.discipline-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  padding: 24px 0 78px;
}

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

.asset-card {
  display: grid;
  gap: 12px;
  padding: 12px;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.media-stack {
  display: grid;
  gap: 18px;
}

.path-note {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.08);
}

.image-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.image-grid--compact {
  padding: 0;
}

.image-tile {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(244, 247, 250, 0.07);
  color: var(--ice);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.image-tile > * {
  position: relative;
  z-index: 2;
}

.image-tile:hover {
  border-color: rgba(0, 229, 255, 0.38);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.12), var(--shadow);
  transform: translateY(-4px);
}

.image-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  background: #111;
  transition: transform 320ms ease, filter 320ms ease;
}

.image-tile:hover img {
  filter: saturate(1.14) contrast(1.05);
  transform: scale(1.035);
}

.image-tile span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--silver);
  font-weight: 850;
}

.video-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

video {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #000;
  box-shadow: var(--shadow);
}

.empty-state {
  min-height: 260px;
  padding: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  background: rgba(5, 6, 8, 0.78);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0;
  color: rgba(244, 247, 250, 0.7);
  font-weight: 850;
}

.site-footer a {
  color: var(--cyan);
  text-decoration: none;
}

.site-footer a:hover {
  text-shadow: 0 0 18px rgba(0, 229, 255, 0.44);
}

.legal-page {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 64px 0 90px;
}

.legal-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(244, 247, 250, 0.11), rgba(244, 247, 250, 0.045)),
    rgba(5, 6, 8, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.legal-card--wide {
  grid-column: 1 / -1;
}

.legal-card span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-card h2 {
  margin: 16px 0 12px;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1;
}

.legal-card p {
  color: rgba(244, 247, 250, 0.78);
  line-height: 1.68;
}

.legal-muted {
  color: rgba(244, 247, 250, 0.62) !important;
}

@media (max-width: 920px) {
  .site-nav {
    align-items: stretch;
    flex-direction: column;
  }

  .site-nav__links {
    justify-content: flex-start;
  }

  .section-grid,
  .gallery-overview,
  .editorial-split,
  .discipline-layout,
  .legal-page {
    grid-template-columns: 1fr;
  }

  .legal-card--wide {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 188px;
  }

  .stat-strip,
  .asset-rail {
    grid-template-columns: 1fr;
  }

  .site-nav__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav__links a {
    text-align: center;
  }

  .hero__background-card {
    right: -118px;
    width: 520px;
    opacity: 0.32;
  }

  .hero-profile {
    right: -64px;
    bottom: 18px;
    width: 330px;
    height: 54%;
    opacity: 0.5;
  }
}

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

/* Bright 3D-print focused refresh */
:root {
  --carbon: #f7fbff;
  --ice: #14212b;
  --cyan: #009ec3;
  --red: #ff6b4a;
  --asphalt: #e8f0f5;
  --silver: #617281;
  --line: rgba(31, 56, 72, 0.13);
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 70px rgba(62, 96, 116, 0.16);
}

body {
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 205, 120, 0.28), transparent 25rem),
    radial-gradient(circle at 86% 4%, rgba(74, 201, 230, 0.26), transparent 28rem),
    linear-gradient(180deg, #fbfdff 0%, #eef8fb 48%, #fff8ef 100%);
  color: var(--ice);
}

.ambient-scene span:nth-child(1) {
  background: rgba(58, 196, 226, 0.38);
}

.ambient-scene span:nth-child(2) {
  background: rgba(255, 183, 94, 0.32);
}

.ambient-scene span:nth-child(3) {
  background: rgba(138, 222, 176, 0.26);
}

.ambient-scene::after,
.motion-grid {
  opacity: 0.22;
}

.site-nav {
  border-color: rgba(31, 56, 72, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 52px rgba(46, 84, 104, 0.14);
}

.site-nav.is-scrolled {
  border-color: rgba(0, 158, 195, 0.22);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 66px rgba(46, 84, 104, 0.18);
}

.site-brand__mark {
  border-color: rgba(0, 158, 195, 0.18);
  box-shadow: 0 10px 26px rgba(0, 158, 195, 0.16);
}

.site-brand span {
  color: #102331;
}

.site-brand small,
.site-nav__links a {
  color: rgba(20, 33, 43, 0.68);
}

.site-nav__links a:hover,
.site-nav__links a.is-active {
  border-color: rgba(0, 158, 195, 0.28);
  background: rgba(0, 158, 195, 0.1);
  color: #102331;
  box-shadow: 0 10px 22px rgba(0, 158, 195, 0.12);
}

.hero {
  border-bottom-color: rgba(31, 56, 72, 0.11);
}

.hero--print {
  min-height: 92vh;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 46%, rgba(233, 250, 253, 0.62) 100%),
    linear-gradient(145deg, rgba(255, 191, 102, 0.2), rgba(72, 198, 226, 0.2));
}

.hero--print::before {
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.62) 45%, transparent 58%),
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(0, 158, 195, 0.12), transparent 22rem);
  mix-blend-mode: normal;
}

.hero--print::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 50%, rgba(255, 255, 255, 0.3) 72%, rgba(255, 255, 255, 0.76) 100%),
    radial-gradient(circle at 74% 42%, rgba(0, 158, 195, 0.2), transparent 22rem),
    radial-gradient(circle at 82% 76%, rgba(255, 183, 94, 0.18), transparent 24rem),
    var(--home-hero-image) calc(100% - 44px) center / min(500px, 34vw) auto no-repeat;
  content: "";
  opacity: 1;
  pointer-events: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero--print .hero__content {
  max-width: 650px;
}

.hero--print h1 {
  max-width: 640px;
  color: #0c2231;
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
}

.hero--print .hero__lead {
  max-width: 610px;
  color: rgba(12, 34, 49, 0.76);
}

.eyebrow {
  color: #008cad;
}

h1 {
  color: #11293a;
  text-shadow: 0 16px 36px rgba(74, 116, 138, 0.16);
}

.hero__lead,
.home-intro p,
.feature-panel p,
.gallery-card p,
.editorial-split p,
.empty-state p {
  color: rgba(20, 33, 43, 0.72);
}

.home-intro {
  max-width: 610px;
  margin: 18px 0 30px;
}

.home-intro p {
  font-weight: 600;
  color: rgba(12, 34, 49, 0.74);
}

.button {
  color: #fff;
  text-shadow: none;
}

.button--primary {
  background: linear-gradient(180deg, #22c8e4 0%, #00a8c8 48%, #087994 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52), inset 0 -5px 0 rgba(0, 70, 88, 0.22), 0 8px 0 #07647a, 0 18px 36px rgba(0, 158, 195, 0.22);
}

.button--ghost {
  color: #143040;
  background: linear-gradient(180deg, #ffffff 0%, #eef8fb 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 158, 195, 0.18), 0 8px 0 #d7e8ef, 0 18px 32px rgba(46, 84, 104, 0.14);
}

.button--ember {
  background: linear-gradient(180deg, #ffb15f 0%, #ff7654 54%, #ce4b35 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.44), inset 0 -5px 0 rgba(128, 53, 22, 0.18), 0 8px 0 #b8452f, 0 18px 36px rgba(255, 118, 84, 0.22);
}

.stat-strip--print {
  margin-top: -46px;
}

.stat-strip div,
.feature-panel,
.gallery-card,
.asset-card,
.empty-state,
.legal-card,
.image-tile {
  border-color: rgba(31, 56, 72, 0.12);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.stat-strip strong,
.feature-panel h2,
.gallery-card h2,
.editorial-split h2,
.empty-state h2,
.legal-card h2 {
  color: #102331;
}

.stat-strip span {
  color: var(--silver);
}

.focus-section {
  padding: 86px 0 34px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  color: #102331;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(20, 33, 43, 0.68);
  font-size: 1.08rem;
  line-height: 1.7;
}

.section-heading--small h2 {
  font-size: clamp(1.7rem, 3.4vw, 3.1rem);
}

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

.print-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(31, 56, 72, 0.12);
  border-radius: 10px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 45, 59, 0.06), rgba(7, 45, 59, 0.84)),
    var(--panel-image) center / cover no-repeat,
    linear-gradient(135deg, #e3f8fc, #fff3dc);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.print-card:first-child {
  min-height: 430px;
  grid-row: span 2;
}

.print-card:hover {
  box-shadow: 0 28px 80px rgba(0, 126, 156, 0.22);
  transform: translateY(-5px);
}

.print-card span,
.sidework-card span {
  color: #64e9ff;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.print-card h3 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.95;
}

.print-card p {
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.62;
}

.sidework-section {
  padding: 42px 0 86px;
}

.print-roadmap {
  padding: 44px 0 96px;
}

.manager-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(0, 140, 173, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(233, 250, 253, 0.82)),
    radial-gradient(circle at 86% 10%, rgba(0, 229, 255, 0.18), transparent 22rem);
  box-shadow: 0 26px 70px rgba(24, 51, 65, 0.12);
}

.manager-panel span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #008cad;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.manager-panel h3 {
  margin: 0 0 12px;
  color: #10283a;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1;
}

.manager-panel p,
.manager-panel li {
  color: rgba(16, 40, 58, 0.74);
  line-height: 1.7;
}

.manager-panel ul {
  display: grid;
  gap: 12px;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.manager-panel li {
  position: relative;
  padding-left: 28px;
  font-weight: 720;
}

.manager-panel li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00a7c8, #ff8d2f);
  content: "";
}

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

.sidework-card {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(31, 56, 72, 0.1);
  border-radius: 10px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(12, 34, 46, 0.08), rgba(12, 34, 46, 0.72)),
    var(--panel-image) center / cover no-repeat,
    #dceff4;
  box-shadow: 0 18px 46px rgba(62, 96, 116, 0.12);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.sidework-card:hover {
  box-shadow: 0 26px 70px rgba(62, 96, 116, 0.2);
  transform: translateY(-4px);
}

.sidework-card h2 {
  margin: 10px 0 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
}

.sidework-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.feature-panel--media {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.18)),
    var(--panel-image) center / cover no-repeat;
}

.feature-panel--media::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(10, 45, 58, 0.72)),
    radial-gradient(circle at 24% 16%, rgba(0, 158, 195, 0.18), transparent 18rem);
}

.site-footer {
  border-top-color: rgba(31, 56, 72, 0.11);
  background: rgba(255, 255, 255, 0.72);
}

.site-footer__inner {
  color: rgba(20, 33, 43, 0.68);
}

@media (max-width: 1020px) {
  .print-grid,
  .sidework-grid,
  .manager-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .print-card:first-child {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .hero--print::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
      var(--home-hero-image) center bottom / 86vw auto no-repeat;
    opacity: 0.34;
  }

  .print-grid,
  .sidework-grid,
  .manager-panel {
    grid-template-columns: 1fr;
  }

  .print-card,
  .print-card:first-child {
    min-height: 310px;
  }
}

.hero--print.hero--build-bg {
  background: #050608;
  color: var(--ice);
}

.hero--print.hero--build-bg::after {
  background:
    var(--home-hero-image) center center / cover no-repeat;
  opacity: 1;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero--print.hero--build-bg::before {
  opacity: 0;
}

.hero--print.hero--build-bg .motion-grid {
  display: none;
}

.hero--print.hero--build-bg h1,
.hero--print.hero--build-bg h2,
.hero--print.hero--build-bg .eyebrow {
  color: #f4f7fa;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.82), 0 18px 44px rgba(0, 0, 0, 0.5);
}

.hero--print.hero--build-bg .hero__lead,
.hero--print.hero--build-bg .home-intro p {
  color: rgba(244, 247, 250, 0.82);
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.72);
}

.hero--print.hero--build-bg .home-intro {
  max-width: 640px;
}

@media (max-width: 640px) {
  .hero--print.hero--build-bg::after {
    background:
      var(--home-hero-image) center center / cover no-repeat;
    opacity: 1;
  }
}

.hero--compact:not(.hero--print) h1 {
  color: #f4f7fa;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.9), 0 0 38px rgba(0, 158, 195, 0.34);
}

.hero--compact:not(.hero--print) .hero__lead {
  color: rgba(244, 247, 250, 0.86);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.58);
}

.hero--compact:not(.hero--print) .eyebrow {
  color: #7befff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.62);
}

.legal-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 250, 253, 0.94)),
    rgba(255, 255, 255, 0.96);
  color: #102331;
}

.legal-card p,
.legal-card a {
  color: rgba(16, 35, 49, 0.9);
}

.legal-card span {
  color: #007f9d;
}

.legal-muted {
  color: rgba(16, 35, 49, 0.66) !important;
}

@media (max-width: 640px) {
  .hero--compact {
    min-height: 34vh;
    padding: 126px 0 38px;
  }
}
