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

:root {
  --bg: #ffffff;
  --bg-secondary: #f7f7f7;
  --bg-tertiary: #f0f0f0;
  --text: #111111;
  --text-secondary: #555555;
  --text-muted: #888888;
  --border: #e0e0e0;
  --border-light: #ebebeb;
  --accent: #1e3a5f;
  --accent-light: #2a5a8f;
  --accent-warm: #b08d57;
  --navy: #0c1e35;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 20px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body { overflow-x: hidden; }

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

/* ============ NAV ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.75rem 6vw;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 1.1rem 6vw;
  border-bottom: 1px solid var(--border-light);
}
.nav-logo {
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  letter-spacing: 0.08em; color: var(--accent); text-decoration: none;
  text-transform: uppercase;
}
.nav-logo .logo-mark { display: none; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: 0.82rem;
  font-weight: 500; letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--accent); }
.nav-links a::after { display: none; }
.nav-mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 24px; height: 16px; position: relative;
}
.nav-mobile-toggle span {
  display: block; width: 100%; height: 1.5px; background: var(--text);
  position: absolute; left: 0; transition: all 0.3s;
}
.nav-mobile-toggle span:nth-child(1) { top: 0; }
.nav-mobile-toggle span:nth-child(2) { top: 7px; }
.nav-mobile-toggle span:nth-child(3) { top: 14px; }

/* ============ HERO ============ */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; background: var(--bg);
}
#hero-canvas { display: none; }
.hero-overlay { display: none; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 2rem;
  max-width: 1600px; width: 100%; margin: 0 auto;
  padding: 0 6vw;
}
.hero-content {
  position: relative; z-index: 2;
}
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 640px;
  justify-self: end;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}
#hero-3d {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-eyebrow { display: none; }
.hero-headline {
  font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.03em;
  color: var(--text); max-width: 700px; margin-bottom: 2rem;
}
.hero-headline .line {
  display: block;
  opacity: 0; transform: translateY(30px); animation: fadeUp 0.7s forwards;
}
.hero-headline .line:nth-child(1) { animation-delay: 0.2s; }
.hero-headline .line:nth-child(2) { animation-delay: 0.35s; }
.hero-headline .line:nth-child(3) { animation-delay: 0.5s; }
.hero-headline .accent {
  color: var(--text);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}
.hero-sub {
  font-size: 1.05rem; color: var(--text-secondary); letter-spacing: 0.01em;
  line-height: 1.65; max-width: 460px;
  display: block;
  opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s 0.7s forwards;
}
.hero-sub .dot { display: none; }
.hero-meta {
  display: flex; gap: 1.5rem; margin-top: 2.5rem;
  opacity: 0; animation: fadeUp 0.7s 0.9s forwards;
}
.hero-meta span {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-muted);
}
.hero-meta span + span::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--accent-warm);
  border-radius: 50%;
  margin-right: 1.5rem;
  vertical-align: middle;
}
.hero-scroll { display: none; }

/* ============ IMAGE BAND ============ */
.image-band { display: none; }

/* ============ SECTION HELPERS ============ */
.section-label {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--accent-warm);
  vertical-align: middle;
  margin-right: 0.6rem;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 1rem; max-width: 750px;
}
.section-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 3.5rem;
}

/* ============ HOME: OUR APPROACH ============ */
.home-approach {
  padding: 7rem 6vw;
  background: var(--bg);
  border-top: 1px solid var(--border-light);
}
.home-approach-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.home-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  margin-top: 3rem;
}
.approach-step {
  background: var(--bg);
  padding: 2.5rem;
  border-left: 3px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.approach-step:hover {
  background: var(--bg-secondary);
  border-left-color: var(--accent-warm);
}
.approach-step::before { display: none; }
.approach-icon { display: none; }
.approach-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  color: var(--accent);
}
.approach-step p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============ HOME: INDUSTRIES ============ */
.home-industries {
  padding: 7rem 6vw;
  background: var(--bg-secondary);
}
.home-industries-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.home-industries-header {
  margin-bottom: 3rem;
}
.home-industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
.industry-card {
  background: var(--bg);
  overflow: hidden;
  position: relative;
  cursor: default;
  border-left: 3px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.industry-card:hover {
  transform: none;
  background: var(--bg-secondary);
  border-left-color: var(--accent-warm);
}
.industry-image { display: none; }
.industry-overlay { display: none; }
.industry-content {
  padding: 2.5rem;
}
.industry-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  color: var(--accent);
  transition: color 0.3s;
}
.industry-card:hover .industry-content h3 {
  color: var(--accent);
}
.industry-content p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============ HOME: WHY UPPOINT ============ */
.home-why {
  padding: 7rem 6vw;
  background: var(--bg);
  border-top: 1px solid var(--border-light);
}
.home-why-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.home-why-left .section-title {
  margin-bottom: 1.5rem;
}
.home-why-body {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}
.home-why-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.why-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-point-marker {
  width: 6px;
  height: 6px;
  min-width: 6px;
  margin-top: 0.5rem;
  background: var(--accent-warm);
  border-radius: 50%;
  clip-path: none;
}
.why-point h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--accent);
}
.why-point p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ============ HOME: PERSPECTIVE QUOTE ============ */
.home-perspective {
  padding: 6rem 6vw;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
#perspective-3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.home-perspective-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.perspective-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.perspective-quote::before {
  content: '\201C';
  display: block;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--accent-warm);
  opacity: 0.25;
  margin-bottom: -1.5rem;
}
.perspective-attr {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============ HOME: CONTACT CTA ============ */
.home-contact {
  padding: 7rem 6vw;
  background: var(--bg);
  border-top: 1px solid var(--border-light);
  text-align: center;
}
.home-contact-inner {
  max-width: 560px;
  margin: 0 auto;
}
.home-contact .section-title {
  max-width: none;
}
.home-contact-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.home-contact-link {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-warm);
  text-decoration: none;
  letter-spacing: -0.01em;
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--accent-warm);
  transition: opacity 0.2s;
}
.home-contact-link:hover {
  opacity: 0.7;
}

/* ============ HOME: EXPLORE NAV ============ */
.home-explore {
  padding: 6rem 6vw 7rem;
  background: var(--bg);
}
.home-explore-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.home-explore .section-title {
  margin-bottom: 2rem;
}
.home-explore-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border-light);
}
.home-explore-grid .explore-card {
  min-height: 160px;
}

/* ============ HOME: IMPACT NUMBERS ============ */
.home-impact {
  padding: 5rem 6vw;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#impact-3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.home-impact-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.home-impact .section-label {
  color: rgba(255,255,255,0.5);
}
.home-impact .section-title {
  color: #fff;
  margin-bottom: 3rem;
}
.home-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}
.impact-item {
  padding: 2.5rem 2rem;
  background: var(--navy);
  text-align: center;
}
.impact-item:hover {
  background: rgba(255,255,255,0.03);
}
.impact-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--accent-warm);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.impact-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ============ SHARED PAGE SHELL ============ */
.page-hero {
  padding: 10rem 6vw 4rem;
  background: var(--bg);
}
.page-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.page-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.page-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--accent-warm);
  vertical-align: middle;
  margin-right: 0.6rem;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.page-copy {
  max-width: 620px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

/* ============ EXPERTISE ============ */
#expertise {
  padding: 2rem 6vw 6rem;
  max-width: 1400px;
  margin: 0 auto;
}
.exp-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.exp-num::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent-warm);
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.6rem;
}
.card-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto; }
.card-tag {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.6rem; border: 1px solid var(--border);
  color: var(--text-muted);
  transition: border-color 0.3s, color 0.3s;
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
}
.exp-card {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background 0.3s;
}
.exp-card:hover {
  background: var(--bg-secondary);
}
.exp-card-img {
  width: 100%;
  height: 190px;
  overflow: hidden;
}
.exp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.75) brightness(0.92);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.exp-card:hover .exp-card-img img {
  transform: scale(1.04);
  filter: saturate(0.9) brightness(0.97);
}
.exp-card-body {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.exp-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.exp-card-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.exp-card:hover .exp-card-title {
  color: var(--accent);
}
.exp-card:hover .card-tag {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============ VENTURES ============ */
#ventures {
  padding: 4rem 0;
}
.ventures-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 500px; position: relative;
}
.venture-panel {
  padding: 5rem 6vw;
  display: flex; flex-direction: column; justify-content: center;
}
.venture-panel:first-child { background: var(--bg); }
.venture-panel:last-child { background: var(--bg-secondary); }
.venture-panel:first-child::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 1px; height: 100%;
  background: var(--border);
}
.venture-tag {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem;
}
.venture-tag::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1.5px;
  background: var(--accent-warm);
  vertical-align: middle;
  margin-right: 0.5rem;
}
.venture-title {
  font-family: var(--font-display); font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 1.25rem;
}
.venture-desc {
  color: var(--text-secondary); font-size: 0.92rem; line-height: 1.75; max-width: 420px;
}
.venture-image {
  margin-top: 2rem; height: 200px;
  overflow: hidden; border: 1px solid var(--border-light);
}
.venture-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.75); transition: all 0.4s;
}
.venture-image:hover img {
  filter: saturate(0.9); transform: scale(1.02);
}
.venture-image .vi-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.04), transparent);
  pointer-events: none;
}
.diagonal-divider { display: none; }

/* ============ VENTURE PHILOSOPHY ============ */
.venture-philosophy {
  background: var(--bg);
  border-top: 1px solid var(--border-light);
}
.venture-philosophy-inner {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 500px;
}
.venture-philosophy-image {
  position: relative; overflow: hidden;
}
.venture-philosophy-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.7) brightness(0.88);
  transition: all 0.5s ease;
}
.venture-philosophy-image:hover img {
  filter: saturate(0.8) brightness(0.92);
  transform: scale(1.02);
}
.vp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.08), transparent 60%);
  pointer-events: none;
}
.venture-philosophy-content {
  padding: 4.5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.venture-philosophy-content .section-title { margin-bottom: 1.5rem; }
.vp-body {
  color: var(--text-secondary); font-size: 0.95rem;
  line-height: 1.8; margin-bottom: 2rem;
}
.vp-principles {
  display: flex; flex-direction: column; gap: 0.75rem;
}
.vp-principle {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.88rem; font-weight: 600; color: var(--text);
}
.vp-principle-marker {
  width: 5px; height: 5px; min-width: 5px;
  background: var(--accent-warm); border-radius: 50%;
  clip-path: none;
}

/* ============ VENTURE THESIS ============ */
.venture-thesis {
  padding: 7rem 6vw;
  background: var(--bg-secondary);
}
.venture-thesis-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.venture-thesis-left .section-title { margin-bottom: 1.5rem; }
.venture-thesis-body {
  color: var(--text-secondary); font-size: 1rem; line-height: 1.8;
}
.venture-thesis-right {
  display: flex; flex-direction: column; gap: 2rem;
}
.thesis-point {
  display: flex; gap: 1rem; align-items: flex-start;
}
.thesis-marker {
  width: 5px; height: 5px; min-width: 5px; margin-top: 0.5rem;
  background: var(--accent-warm); border-radius: 50%;
  clip-path: none;
}
.thesis-point h4 {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem;
  color: var(--accent);
}
.thesis-point p {
  font-size: 0.85rem; line-height: 1.7; color: var(--text-secondary);
}

/* ============ VENTURE FOCUS AREAS ============ */
.venture-focus {
  padding: 7rem 6vw;
  background: var(--bg);
  border-top: 1px solid var(--border-light);
}
.venture-focus-inner {
  max-width: 1400px; margin: 0 auto;
}
.focus-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border-light);
  margin-top: 2.5rem;
}
.focus-card {
  background: var(--bg);
  padding: 2.5rem;
  border-left: 3px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.focus-card:hover {
  background: var(--bg-secondary);
  border-left-color: var(--accent);
}
.focus-card::before { display: none; }
.focus-icon { display: none; }
.focus-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem;
  color: var(--accent);
}
.focus-card p {
  font-size: 0.85rem; line-height: 1.7; color: var(--text-secondary);
}

/* ============ VENTURE TRACK RECORD ============ */
.venture-track {
  padding: 5rem 6vw;
  background: var(--navy);
}
.venture-track-inner {
  max-width: 1400px; margin: 0 auto;
}
.venture-track-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.1);
}
.track-stat {
  padding: 2.5rem 2rem; text-align: center;
  background: var(--navy);
}
.track-stat:hover { background: rgba(255,255,255,0.03); }
.track-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700; color: var(--accent-warm);
  background: none; -webkit-background-clip: unset;
  -webkit-text-fill-color: unset; background-clip: unset;
  line-height: 1; margin-bottom: 0.5rem;
}
.track-label {
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
}

/* ============ ABOUT: INTRO ============ */
.about-intro {
  padding: 5rem 6vw;
  background: var(--bg);
  border-top: 1px solid var(--border-light);
}
.about-intro-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: start;
}
.about-intro-left .section-title { margin-bottom: 0; }
.about-intro-right p {
  color: var(--text-secondary);
  font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem;
}

/* ============ ABOUT: FOUR PILLARS ============ */
.about-pillars {
  padding: 7rem 6vw;
  background: var(--bg-secondary);
}
.about-pillars-inner {
  max-width: 1400px; margin: 0 auto;
}
.about-pillars .section-title { margin-bottom: 2.5rem; }
.pillars-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border-light);
}
.pillar-card {
  background: var(--bg);
  padding: 2.5rem;
  border-left: 3px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.pillar-card:hover {
  background: var(--bg);
  border-left-color: var(--accent-warm);
}
.pillar-card::before { display: none; }
.pillar-icon { display: none; }
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700; margin-bottom: 0.65rem;
  color: var(--accent);
}
.pillar-card p {
  font-size: 0.88rem; line-height: 1.75;
  color: var(--text-secondary); margin-bottom: 1.25rem;
}
.pillar-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.pillar-tags span {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.55rem; border: 1px solid var(--border);
  color: var(--text-muted);
}
.pillar-card:hover .pillar-tags span {
  border-color: var(--text-muted);
  color: var(--text-secondary);
}

/* ============ ABOUT: CONNECTION DIAGRAM ============ */
.about-connection {
  padding: 7rem 6vw;
  background: var(--bg);
  border-top: 1px solid var(--border-light);
}
.about-connection-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: center;
}
.about-connection-content .section-title { margin-bottom: 1.5rem; }
.about-connection-body {
  color: var(--text-secondary);
  font-size: 0.95rem; line-height: 1.8; margin-bottom: 0.75rem;
}
.about-connection-diagram {
  position: relative; width: 100%;
  aspect-ratio: 1; max-width: 300px; margin: 0 auto;
}
.conn-lines { position: absolute; inset: 0; z-index: 0; }
.conn-node {
  position: absolute;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.04em; z-index: 2;
  padding: 0.5rem 0.85rem;
  background: var(--bg);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.conn-center {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent); color: #fff;
  border-color: var(--accent);
  font-size: 0.78rem; padding: 0.6rem 1rem;
}
.conn-tl { top: 5%; left: 5%; }
.conn-tr { top: 5%; right: 5%; }
.conn-bl { bottom: 5%; left: 5%; }
.conn-br { bottom: 5%; right: 5%; }
.conn-ml { top: 50%; left: -2%; transform: translateY(-50%); }
.conn-mr { top: 50%; right: -2%; transform: translateY(-50%); }
.conn-mt { top: -2%; left: 50%; transform: translateX(-50%); }
.conn-mb { bottom: -2%; left: 50%; transform: translateX(-50%); }

/* ============ ABOUT: 3D DIAGRAM ============ */
.about-diagram-3d {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 560px;
  margin: 0 auto;
  overflow: visible;
}
#core-diagram-3d {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============ ABOUT: CORE CAPABILITIES ============ */
.about-core {
  padding: 7rem 6vw;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
}
.about-core-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.about-core .section-title {
  margin-bottom: 2.5rem;
}
.about-core-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
}
.about-core-grid .core-item {
  background: var(--bg);
}

/* ============ ABOUT: PARTNER STRIP ============ */
.about-partners-strip {
  padding: 5rem 6vw;
  background: var(--bg-secondary);
}
.about-partners-strip-inner {
  max-width: 1400px; margin: 0 auto;
}
.about-partners-strip .section-title { margin-bottom: 2rem; }
.about-partners-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border-light);
}
.about-partner-item {
  background: var(--bg);
  padding: 1.75rem;
  text-decoration: none; color: inherit;
  border: none;
  transition: background 0.3s;
}
.about-partner-item:hover {
  background: var(--bg);
  border-color: transparent;
  transform: none;
}
.about-partner-name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem;
  color: var(--accent);
}
.about-partner-role {
  font-size: 0.75rem; color: var(--accent-warm); letter-spacing: 0.04em;
}

/* ============ ABOUT: HQ ============ */
.about-hq-simple {
  padding: 4rem 6vw;
  background: var(--bg);
  border-top: 1px solid var(--border-light);
}
.about-hq-simple-inner {
  max-width: 1400px; margin: 0 auto;
}
.about-hq-address-block { margin-top: 1.25rem; }
.hq-line-main {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--accent);
}
.hq-line-sub {
  font-size: 0.95rem; color: var(--text-secondary); margin-top: 0.2rem;
}

/* ============ PARTNERS ============ */
#partners {
  padding: 4rem 6vw 6rem;
  background: var(--bg-secondary);
}
.partners-inner {
  max-width: 1400px; margin: 0 auto;
}
.partners-grid {
  margin-top: 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border-light);
}
.partner-card {
  background: var(--bg);
  border: none;
  padding: 2rem; min-height: 200px;
  border-left: 3px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.partner-card:hover {
  border-color: transparent;
  transform: none;
  background: var(--bg-secondary);
  border-left-color: var(--accent-warm);
}
.partner-name {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 0.6rem;
  color: var(--accent); text-transform: none;
}
.partner-desc {
  color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7;
}

/* ============ PARTNER LOGO STRIP ============ */
.partner-logo-strip {
  padding: 3rem 6vw;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
}
.partner-logo-strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.partner-logo-strip-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.partner-logo-strip-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--accent-warm);
  vertical-align: middle;
  margin-right: 0.6rem;
}
.partner-logo-strip-label::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--accent-warm);
  vertical-align: middle;
  margin-left: 0.6rem;
}
.partner-logo-strip-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}
.strip-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.3s;
  height: 40px;
}
.strip-logo-item:hover {
  opacity: 0.7;
}
.strip-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.06em;
}
.strip-logo-img {
  max-height: 36px;
  width: auto;
  object-fit: contain;
}
.strip-logo-svg {
  height: 28px;
  width: auto;
}

/* ============ CONNECTIVE TISSUE ============ */
.connective-tissue {
  padding: 6rem 6vw;
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
}
.connective-tissue-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.connective-body {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.connective-core-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-light);
}
.core-item {
  background: var(--bg);
  padding: 1.5rem;
  transition: background 0.3s;
}
.core-item:hover {
  background: var(--bg-secondary);
}
.core-item h4 {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--accent);
}
.core-item p {
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ============ PARTNER FEATURES ============ */
.partner-feature {
  padding: 5rem 6vw;
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
}
.partner-feature.alt { background: var(--bg-secondary); }
.partner-feature-inner {
  max-width: 1400px; margin: 0 auto;
}
.partner-feature-header {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.partner-logo-wrap {
  min-width: 88px; height: 88px; padding: 0 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-bottom: 2px solid var(--accent-warm);
  display: flex; align-items: center; justify-content: center;
}
.partner-feature.alt .partner-logo-wrap { background: var(--bg); }
.partner-logo-img {
  max-width: 72px; max-height: 60px; object-fit: contain;
}
.partner-logo-svg {
  width: 72px; height: auto;
}
.partner-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800;
  color: var(--text); letter-spacing: 0.04em;
}
.partner-tag {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.2rem;
}
.partner-feature-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.1;
}
.partner-feature-tagline {
  color: var(--text-secondary);
  font-size: 0.92rem; margin-top: 0.2rem; font-style: italic;
}
.partner-feature-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: start;
}
.partner-feature-desc p {
  color: var(--text-secondary);
  font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.25rem;
}
.partner-visit-link {
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--accent-warm);
  text-decoration: none; transition: color 0.2s;
}
.partner-visit-link:hover { color: #c9a46a; }
.partner-feature-capabilities {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.partner-cap h4 {
  font-family: var(--font-display);
  font-size: 0.88rem; font-weight: 700; margin-bottom: 0.3rem;
  color: var(--accent);
}
.partner-cap p {
  font-size: 0.82rem; line-height: 1.7; color: var(--text-secondary);
}

/* Partner stats row */
.partner-feature-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border-light);
  margin-top: 2.5rem;
}
.partner-stat {
  background: var(--bg);
  padding: 1.75rem; text-align: center;
  border: none;
}
.partner-feature.alt .partner-stat { background: var(--bg); }
.partner-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700;
  color: var(--accent); line-height: 1; margin-bottom: 0.35rem;
}
.partner-stat-label {
  font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
}

/* Partner games grid */
.partner-games {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border-light);
  margin-top: 2.5rem;
}
.partner-game {
  background: var(--bg);
  padding: 1.5rem;
  border: none;
  transition: background 0.3s;
}
.partner-game:hover {
  border-color: transparent;
  transform: none;
  background: var(--bg-secondary);
}
.game-status {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.game-status::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
}
.game-status.live { color: #16a34a; }
.game-status.live::before { background: #16a34a; }
.game-status.soon { color: var(--text-muted); }
.game-status.soon::before { background: var(--text-muted); }
.partner-game h4 {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem;
  color: var(--accent);
}
.partner-game p {
  font-size: 0.78rem; line-height: 1.65; color: var(--text-secondary);
}

/* ============ COMMUNITY ============ */
#community {
  background: var(--bg-secondary);
  color: var(--text);
  padding: 7rem 6vw;
  position: relative;
  overflow: hidden;
}
.community-texture { display: none; }
.community-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.community-label {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.community-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--accent-warm);
  vertical-align: middle;
  margin-right: 0.6rem;
}
.community-title {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 1.25rem; color: var(--text);
}
.community-subtitle {
  font-size: 1rem; line-height: 1.7; color: var(--text-secondary);
  max-width: 520px; margin-bottom: 3rem;
}
.community-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 320px 220px;
  gap: 4px;
  border-radius: 6px;
  overflow: hidden;
}
.gallery-item {
  position: relative; overflow: hidden;
}
.gallery-item:nth-child(1) { grid-column: 1 / 3; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
  display: block; filter: saturate(0.85);
  transition: all 0.4s;
}
.gallery-item:hover img {
  filter: saturate(0.95); transform: scale(1.02);
}
.gallery-item .gallery-overlay { display: none; }
.community-text { padding-top: 1.5rem; }
.community-quote {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  line-height: 1.35; color: var(--text); margin-bottom: 1.5rem;
  position: relative; padding-left: 1.25rem; border-left: 2px solid var(--accent-warm);
}
.community-body {
  font-size: 0.9rem; line-height: 1.75; color: var(--text-secondary); margin-bottom: 1.5rem;
}
.community-name {
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--accent);
}
.community-role {
  font-size: 0.8rem; color: var(--accent-warm); margin-top: 0.15rem;
}

/* ============ EXPLORE LINKS ============ */
.explore-links { padding: 5rem 6vw 6rem; }
.explore-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border-light);
}
.explore-card {
  background: var(--bg);
  border: none;
  text-decoration: none; color: inherit;
  padding: 2rem; min-height: 180px;
  border-left: 3px solid transparent;
  position: relative;
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.explore-card::after {
  content: '\2192';
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-size: 1.1rem;
  color: var(--accent-warm);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.explore-card:hover {
  transform: translateY(-2px);
  border-left-color: var(--accent-warm);
  background: var(--bg-secondary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.explore-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.explore-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 0.6rem;
}
.explore-card p {
  color: var(--text-secondary); line-height: 1.6; font-size: 0.88rem;
}

/* ============ FOOTER ============ */
footer {
  padding: 3rem 6vw;
  border-top: none;
  background: var(--navy);
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.08em; color: var(--accent-warm); text-transform: uppercase;
}
.footer-logo .logo-mark { display: none; }
.footer-info {
  text-align: center; color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem; letter-spacing: 0.03em;
}
.footer-sep {
  margin: 0 0.4rem;
}
.footer-info a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-info a:hover {
  color: #fff;
}
.footer-built { display: none; }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

/* ============ LARGE SCREENS ============ */
@media (min-width: 1600px) {
  .hero-inner { max-width: 1800px; }
  .home-approach-inner,
  .home-industries-inner,
  .home-why-inner,
  .home-impact-inner,
  .home-explore-inner,
  .home-contact-inner,
  .home-perspective-inner,
  .page-hero-inner,
  #expertise,
  .partners-inner,
  .connective-tissue-inner,
  .partner-logo-strip-inner,
  .partner-feature-inner,
  .venture-thesis-inner,
  .venture-focus-inner,
  .venture-track-inner,
  .about-intro-inner,
  .about-pillars-inner,
  .about-connection-inner,
  .about-core-inner,
  .about-partners-strip-inner,
  .about-hq-simple-inner,
  .community-inner,
  .explore-grid,
  .footer-inner { max-width: 1600px; }
  .home-contact-inner { max-width: 680px; }
  .home-perspective-inner { max-width: 960px; }
  .home-industries-grid { grid-template-columns: repeat(4, 1fr); }
  .home-explore-grid { grid-template-columns: repeat(5, 1fr); }
  .home-impact-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .home-approach-grid { grid-template-columns: 1fr; }
  .home-industries-grid { grid-template-columns: 1fr; }
  .home-why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .home-impact-grid { grid-template-columns: repeat(2, 1fr); }
  .home-explore-grid { grid-template-columns: repeat(3, 1fr); }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .ventures-grid { grid-template-columns: 1fr; }
  .venture-panel:first-child::before { display: none; }
  .venture-philosophy-inner { grid-template-columns: 1fr; min-height: auto; }
  .venture-philosophy-image { height: 320px; }
  .venture-philosophy-content { padding: 3.5rem 6vw; }
  .venture-thesis-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .focus-grid { grid-template-columns: 1fr 1fr; }
  .about-intro-inner { grid-template-columns: 1fr; gap: 2rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .about-connection-inner { grid-template-columns: 1fr; }
  .about-connection-diagram { max-width: 260px; }
  .about-core-grid { grid-template-columns: 1fr 1fr; }
  .about-partners-row { grid-template-columns: 1fr 1fr; }
  .community-layout { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; gap: 1rem; }
  .hero-visual { max-width: 400px; }
  .explore-grid { grid-template-columns: 1fr 1fr; }
  .connective-tissue-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .partner-feature-body { grid-template-columns: 1fr; gap: 2rem; }
  .partner-feature-stats { grid-template-columns: repeat(2, 1fr); }
  .partner-games { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 1.1rem 1.5rem; }
  nav.scrolled { padding: 0.9rem 1.5rem; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
    padding: 1.5rem; gap: 1.25rem;
    border-bottom: 1px solid var(--border-light);
  }
  #hero { padding: 0; min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr; padding: 7rem 1.5rem 4rem;
    position: relative; min-height: auto;
    gap: 0;
  }
  .hero-content {
    padding: 0; position: relative; z-index: 2;
  }
  .hero-visual {
    max-width: 280px;
    aspect-ratio: 1;
    justify-self: center;
    margin-top: 2rem;
  }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub { max-width: 100%; font-size: 0.9rem; }
  .home-approach { padding: 4.5rem 1.5rem; }
  .approach-step { padding: 2rem; }
  .home-industries { padding: 4.5rem 1.5rem; }
  .industry-content { padding: 2rem; }
  .home-why { padding: 4.5rem 1.5rem; }
  .home-impact { padding: 3.5rem 1.5rem; }
  .home-impact-grid { grid-template-columns: 1fr 1fr; }
  .impact-item { padding: 2rem 1.5rem; }
  .home-perspective { padding: 4.5rem 1.5rem; }
  #perspective-3d { display: none; }
  .home-contact { padding: 4.5rem 1.5rem; }
  .home-explore { padding: 3.5rem 1.5rem 4.5rem; }
  .home-explore-grid { grid-template-columns: 1fr; }
  .home-explore-grid .explore-card { min-height: auto; }
  .page-hero { padding: 6rem 1.5rem 2rem; }
  .page-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  #expertise { padding: 1.5rem 1.5rem 4rem; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card-img { height: 180px; }
  .exp-card-body { padding: 1.5rem; }
  #ventures { padding: 1.5rem 0; }
  .venture-panel { padding: 2.5rem 1.5rem; }
  .venture-image { height: 160px; margin-top: 1.5rem; }
  .venture-philosophy-image { height: 240px; }
  .venture-philosophy-content { padding: 3rem 1.5rem; }
  .venture-thesis { padding: 3rem 1.5rem; }
  .venture-focus { padding: 3rem 1.5rem; }
  .focus-grid { grid-template-columns: 1fr; }
  .focus-card { padding: 1.5rem; }
  .about-intro { padding: 3.5rem 1.5rem; }
  .about-pillars { padding: 4.5rem 1.5rem; }
  .pillar-card { padding: 2rem; }
  .about-connection { padding: 4.5rem 0; }
  .about-connection-content { padding: 0 1.5rem; }
  .about-connection-diagram { max-width: 220px; }
  .about-diagram-3d { max-width: 100%; aspect-ratio: 4/3; }
  .about-core { padding: 4.5rem 1.5rem; }
  .about-core-grid { grid-template-columns: 1fr; }
  .about-partners-strip { padding: 3.5rem 1.5rem; }
  .about-partners-row { grid-template-columns: 1fr; }
  .about-hq-simple { padding: 3rem 1.5rem; }
  #partners { padding: 3rem 1.5rem; }
  #community { padding: 4.5rem 1.5rem; }
  .gallery-grid { grid-template-rows: 220px 160px; }
  .connective-tissue { padding: 4rem 1.5rem; }
  .connective-core-grid { grid-template-columns: 1fr; }
  .partner-logo-strip { padding: 2rem 1.5rem; }
  .partner-logo-strip-label { font-size: 0.7rem; margin-bottom: 1.25rem; }
  .partner-logo-strip-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
  }
  .strip-logo-item { height: 32px; }
  .strip-logo-text { font-size: 0.9rem; }
  .strip-logo-img { max-height: 24px; }
  .strip-logo-svg { height: 18px; }
  .partner-feature { padding: 3.5rem 1.5rem; }
  .partner-feature-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .partner-feature-capabilities { grid-template-columns: 1fr; gap: 1rem; }
  .partner-feature-stats { grid-template-columns: 1fr 1fr; }
  .partner-stat { padding: 1.25rem; }
  .partner-stat-num { font-size: 1.5rem; }
  .partner-games { grid-template-columns: 1fr; }
  .partner-game { padding: 1.25rem; }
  .explore-links { padding: 3rem 1.5rem 4rem; }
  .explore-grid { grid-template-columns: 1fr; }
  footer { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1.25rem; text-align: center; }
  .footer-info { display: flex; flex-direction: column; gap: 0.35rem; align-items: center; }
  .footer-sep { display: none; }
  .home-industries-grid { grid-template-columns: 1fr; }
  .industry-content { padding: 1.5rem; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .section-subtitle { font-size: 0.9rem; margin-bottom: 2.5rem; }
  .perspective-quote { font-size: clamp(1.1rem, 4.5vw, 1.5rem); }
  .home-contact .section-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .home-contact-body { font-size: 0.9rem; }
  .home-contact-link { font-size: 1rem; }
  .why-point h4 { font-size: 0.88rem; }
  .why-point p { font-size: 0.82rem; }
  .home-explore-grid { gap: 1px; }
  .explore-card { padding: 1.5rem; min-height: auto; }
  .explore-card h3 { font-size: 1.1rem; }
  .explore-card p { font-size: 0.82rem; }
}
