@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #060608;
  --bg-card: #0e0e12;
  --fg: #e8e8ec;
  --fg-dim: #9090a0;
  --fg-muted: #6b6b78;
  --red: #cc2020;
  --red-dark: #a81a1a;
  --red-dim: rgba(204,32,32,0.2);
  --blue: #2a6eff;
  --border: rgba(255,255,255,0.05);
  --font-main: 'Barlow', system-ui, sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ── BILINGUAL ── */
.bi-wrap {
  display: inline-grid;
}
.bi-wrap .bi-en,
.bi-wrap .bi-ja {
  grid-area: 1/1;
  transition: opacity 0.35s;
}
.bi-wrap .bi-en { opacity: 1; }
.bi-wrap .bi-ja { opacity: 0; }
.bi-wrap:hover .bi-en { opacity: 0; }
.bi-wrap:hover .bi-ja { opacity: 1; }

.bi-block {
  display: grid;
}
.bi-block .bi-en,
.bi-block .bi-ja {
  grid-area: 1/1;
  transition: opacity 0.35s;
}
.bi-block .bi-en { opacity: 1; }
.bi-block .bi-ja { opacity: 0; }
.bi-block:hover .bi-en { opacity: 0; }
.bi-block:hover .bi-ja { opacity: 1; }

@media (hover: none) {
  .bi-wrap .bi-ja, .bi-block .bi-ja { opacity: 0 !important; }
  .bi-wrap .bi-en, .bi-block .bi-en { opacity: 1 !important; }
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(6,6,8,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 24px;
}
.nav-logo { flex-shrink: 0; }
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  list-style: none;
}
.nav-links li a {
  display: block;
  padding: 0 18px;
  height: 72px;
  line-height: 72px;
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--fg);
  border-bottom-color: var(--red);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(6,6,8,0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.nav-drawer.open { display: block; }
.nav-drawer ul { list-style: none; }
.nav-drawer ul li a {
  display: block;
  padding: 14px 40px;
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  border-left: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-drawer ul li a:hover { color: var(--fg); border-left-color: var(--red); }

/* ── CONTAINER ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── SECTION LABEL ── */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}
.section-label span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-red:hover { background: var(--red-dark); }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.35);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1601042879364-f3947d3f9c16?w=1800&fit=crop&q=85');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.hero-overlay-lr {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6,6,8,0.95) 0%, rgba(6,6,8,0.5) 55%, transparent 100%);
}
.hero-overlay-btm {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,8,1) 0%, transparent 40%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  padding: 0 80px 96px;
  margin: 0 auto;
}
.hero-heading {
  font-family: var(--font-cond);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--fg-dim);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 540px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── BUSINESS ── */
.business-section {
  padding-top: 96px;
}
.business-h2 {
  font-family: var(--font-cond);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}
.business-photo-wrap {
  position: relative;
  margin-top: 40px;
}
.business-photo-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  filter: grayscale(30%) brightness(0.55);
}
.business-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,6,8,0.35) 0%, rgba(6,6,8,0.85) 80%, #060608 100%);
}
.business-cards-wrap {
  margin-top: -160px;
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}
.business-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.business-card-v2 {
  padding: 32px 28px;
  background: #0c0c10;
  transition: background 0.2s;
}
.business-card-v2:hover { background: #131318; }
.biz-icon {
  width: 36px;
  height: 36px;
  background: rgba(204,32,32,0.15);
  border: 1px solid rgba(204,32,32,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.business-card-title {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.25;
}
.business-card-body {
  font-size: 0.8rem;
  color: var(--fg-dim);
  line-height: 1.7;
}

/* ── APEX-KART ── */
#apex-kart {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.apexkart-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1578859695220-856a4f5edd39?w=1200&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: grayscale(0.5);
}
.apexkart-accent {
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--red);
}
.apexkart-inner {
  position: relative;
  z-index: 2;
}
.apexkart-logo-wrap { margin-bottom: 36px; }
.apexkart-desc {
  max-width: 620px;
  color: var(--fg-dim);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 48px;
}
.apexkart-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  max-width: 640px;
  margin-bottom: 48px;
}
.apexkart-feature {
  padding: 24px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.apexkart-feature:nth-child(2n) { border-right: none; }
.apexkart-feature:nth-child(3),
.apexkart-feature:nth-child(4) { border-bottom: none; }
.apexkart-feature-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.apexkart-feature-text {
  font-size: 0.82rem;
  color: var(--fg-dim);
  line-height: 1.6;
}

/* ── CODE:PA ── */
#codepa {
  position: relative;
}
.codepa-photo-header {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.codepa-photo-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.codepa-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0.18) 0px,
    rgba(0,0,0,0.18) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
}
.codepa-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,6,8,0.2) 0%, rgba(6,6,8,0.8) 100%);
}
.codepa-badge-row {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1280px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.codepa-badge-left {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e03030;
  opacity: 0.85;
}
.codepa-badge-right {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e03030;
  opacity: 0.7;
}

.codepa-main {
  padding: 80px 0 120px;
  background: var(--bg);
}
.codepa-heading {
  font-family: var(--font-cond);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
  color: #e03030;
}
.codepa-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 64px;
}
.codepa-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(224,48,48,0.3);
  color: #e03030;
  padding: 7px 14px;
  cursor: default;
  transition: background 0.2s;
}
.codepa-tag:hover { background: rgba(224,48,48,0.08); }

.codepa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: start;
}
.codepa-desc {
  font-size: 0.95rem;
  color: var(--fg-dim);
  line-height: 1.8;
  margin-bottom: 32px;
}
.codepa-mission-card {
  background: #030305;
  border: 1px solid rgba(224,48,48,0.18);
  position: relative;
  overflow: hidden;
}
.codepa-mission-card::before {
  content: '';
  display: block;
  height: 2px;
  background: #e03030;
}
.codepa-mission-inner { padding: 28px 28px 24px; }
.codepa-mission-live {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: #e03030;
  margin-bottom: 20px;
}
.codepa-mission-title {
  font-family: var(--font-cond);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.codepa-mission-sub {
  font-size: 0.82rem;
  color: var(--fg-dim);
  margin-bottom: 24px;
}
.codepa-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(224,48,48,0.1);
  padding-top: 20px;
  gap: 0;
}
.codepa-stat-item { }
.codepa-stat-key {
  font-family: var(--font-mono);
  font-size: 0.48rem;
  letter-spacing: 0.16em;
  color: #2a2a3a;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.codepa-stat-val {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: #e03030;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── ROUTE MAP ── */
.routemap-wrap { margin-bottom: 64px; }
.routemap-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.routemap-title-group { display: flex; align-items: center; gap: 10px; }
.routemap-dash { width: 20px; height: 1px; background: #e03030; flex-shrink: 0; display: inline-block; }
.routemap-label {
  font-family: var(--font-mono); font-size: 0.58rem; color: #e03030;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.routemap-subtitle {
  font-family: var(--font-mono); font-size: 0.52rem; color: #2e2e3e;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.routemap-box {
  background: #040406;
  border: 1px solid rgba(224,48,48,0.14);
  position: relative; overflow: hidden;
}
.routemap-corner {
  position: absolute; width: 18px; height: 18px; z-index: 2;
}
.routemap-corner.tl { top: 0; left: 0; border-top: 1px solid #e03030; border-left: 1px solid #e03030; }
.routemap-corner.tr { top: 0; right: 0; border-top: 1px solid #e03030; border-right: 1px solid #e03030; }
.routemap-corner.bl { bottom: 0; left: 0; border-bottom: 1px solid #e03030; border-left: 1px solid #e03030; }
.routemap-corner.br { bottom: 0; right: 0; border-bottom: 1px solid #e03030; border-right: 1px solid #e03030; }
.routemap-data-strip {
  border-top: 1px solid rgba(224,48,48,0.1);
  background: #030305;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.routemap-data-item {
  padding: 14px 20px;
  border-right: 1px solid rgba(224,48,48,0.08);
}
.routemap-data-key {
  font-family: var(--font-mono); font-size: 0.5rem; color: #2a2a3a;
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 4px;
}
.routemap-data-val {
  font-family: var(--font-mono); font-size: 0.62rem; color: #e03030;
  letter-spacing: 0.12em; text-transform: uppercase;
}
@media (max-width: 600px) {
  .routemap-data-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ── CODE:PA content blocks ── */
.codepa-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(224,48,48,0.1);
}
.codepa-block {
  padding: 36px 28px;
  border-right: 1px solid rgba(224,48,48,0.08);
}
.codepa-block:last-child { border-right: none; }
.codepa-block-num {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  color: #e03030;
  margin-bottom: 14px;
}
.codepa-block-title {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  line-height: 1.3;
}
.codepa-block-body {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ── R0 ── */
#r0 { background: var(--bg); position: relative; overflow: hidden; }

/* Header two-col */
.r0-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.r0-photo-side { position: relative; min-height: 340px; }
.r0-photo {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: grayscale(20%) contrast(1.1) brightness(0.9);
  min-height: 340px;
}
.r0-grad-r {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 50%, var(--bg) 100%);
}
.r0-grad-b {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 65%, var(--bg) 100%);
}
.r0-copy-side {
  display: flex; flex-direction: column; justify-content: center;
  padding: 64px 32px 64px 48px;
}
.r0-desc {
  font-family: var(--font-main);
  font-size: 0.95rem; color: var(--fg-muted);
  line-height: 1.85; font-weight: 300; margin-bottom: 32px;
}
.r0-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.r0-tag {
  font-family: var(--font-mono); font-size: 0.58rem; font-weight: 500;
  color: var(--fg-muted); border: 1px solid var(--border);
  padding: 5px 12px; letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s; cursor: default;
}
.r0-tag:hover { color: var(--fg); border-color: rgba(255,255,255,0.2); }

/* Gallery */
.r0-gallery-wrap {
  border-top: 1px solid var(--border);
  padding: 72px 0 80px;
}
.r0-gallery-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.r0-gallery-title {
  font-family: var(--font-cond);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--fg); line-height: 1;
}
.r0-gallery-desc {
  font-family: var(--font-main); font-size: 0.82rem; color: var(--fg-muted);
  line-height: 1.75; font-weight: 300; max-width: 380px;
}
.r0-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* Individual gallery item */
.gallery-item {
  position: relative; overflow: hidden;
  cursor: pointer; background: #0a0a0e;
}
.gallery-item img {
  width: 100%; height: 280px;
  object-fit: cover; display: block;
  filter: grayscale(30%) contrast(1.1) brightness(0.85);
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: grayscale(10%) contrast(1.1) brightness(0.9);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,4,6,0.92) 0%, rgba(4,4,6,0.3) 55%, transparent 100%);
}
.gallery-top-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--red), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.gallery-item:hover .gallery-top-accent { opacity: 1; }
.gallery-cat {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-mono); font-size: 0.5rem; color: var(--red);
  letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(4,4,6,0.7); padding: 3px 7px;
  opacity: 0.6; transition: opacity 0.35s;
}
.gallery-item:hover .gallery-cat { opacity: 1; }
.gallery-info {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gallery-item:hover .gallery-info { transform: translateY(-3px); }
.gallery-title {
  font-family: var(--font-cond);
  font-size: 1rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--fg); line-height: 1.15;
  display: inline-grid;
}
.gallery-line {
  width: 24px; height: 1px; background: var(--red); margin-top: 8px;
  transition: width 0.4s;
}
.gallery-item:hover .gallery-line { width: 40px; }

@media (max-width: 900px) {
  .r0-header-grid { grid-template-columns: 1fr; }
  .r0-copy-side { padding: 40px 24px; }
  .r0-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .r0-gallery-grid { grid-template-columns: 1fr; }
}

/* ── VISION ── */
#vision {
  background: var(--bg);
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.vision-photo-wrap {
  position: relative; height: 320px; overflow: hidden;
}
.vision-photo {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(20%) contrast(1.1) brightness(0.7);
}
.vision-overlay-dark {
  position: absolute; inset: 0;
  background: rgba(6,6,8,0.65);
}
.vision-overlay-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(6,6,8,0.2) 0%, #060608 100%);
}
.vision-headline {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 24px; text-align: center;
}
.vision-title {
  font-family: var(--font-cond);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900; text-transform: uppercase;
  color: var(--fg); line-height: 1;
}
.vision-body {
  max-width: 1280px; margin: 0 auto; padding: 0 24px 88px;
}
.vision-desc {
  font-family: var(--font-main);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--fg-muted); line-height: 1.9; font-weight: 300;
  max-width: 560px; margin: 0 auto 56px; text-align: center;
}
.vision-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  max-width: 600px; margin: 0 auto;
}
.vision-pillar {
  background: var(--bg); padding: 32px 20px; text-align: center;
}
.vision-pillar-accent {
  position: absolute; top: 0; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
}
.vision-pillar-label {
  font-family: var(--font-cond);
  font-size: 1.05rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--red); margin-bottom: 8px; display: inline-grid;
}
.vision-pillar-sub {
  font-family: var(--font-main);
  font-size: 0.72rem; color: var(--fg-muted);
  line-height: 1.55; font-weight: 300; display: inline-grid;
}

/* ── ABOUT ── */
#about {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.about-company-name {
  font-family: var(--font-cond);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.about-desc {
  font-size: 0.92rem;
  color: var(--fg-dim);
  line-height: 1.85;
  max-width: 620px;
}

/* ── CONTACT ── */
.contact-section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-heading {
  font-family: var(--font-cond);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--fg);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.contact-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg-dim);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 36px;
}
.contact-card {
  background: #0e0e12;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px;
}
.contact-card-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--red);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.contact-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(204,32,32,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.contact-item-val {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #c8c8d4;
}
.contact-footnote {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-top: 8px;
}

/* ── FOOTER ── */
.footer {
  background: #030305;
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-name {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  opacity: 0.5;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .business-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .r0-grid { gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-logo-desktop { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 0 24px 96px; }
  .container { padding: 0 24px; }
  .business-section { padding-top: 60px; }
  .business-photo-img { height: 240px; }
  .business-cards-wrap { margin-top: -80px; }
  .business-grid-v2 { grid-template-columns: 1fr; }
  #apex-kart, #r0, #about { padding: 80px 0; }
  .contact-section { padding: 60px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .apexkart-features { grid-template-columns: 1fr; max-width: 100%; }
  .apexkart-feature { border-right: none !important; }
  .apexkart-feature:nth-child(3) { border-bottom: 1px solid var(--border); }
  .codepa-grid { grid-template-columns: 1fr; gap: 40px; }
  .codepa-blocks { grid-template-columns: 1fr; }
  .codepa-block { border-right: none; border-bottom: 1px solid rgba(224,48,48,0.08); }
  .codepa-block:last-child { border-bottom: none; }
  .r0-grid { grid-template-columns: 1fr; }
  .codepa-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero-buttons { flex-direction: column; }
  .nav-inner { padding: 0 16px; }
  .codepa-badge-row { padding: 0 24px; }
  .routemap-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ── SHARED BRAND SECTION LAYOUT ── */
.brand-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.brand-tags-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .58rem;
  color: var(--red);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.brand-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(204,32,32,.25);
  padding: 5px 12px;
  background: rgba(204,32,32,.04);
}
.brand-feature-list {
  border-top: 1px solid rgba(255,255,255,.05);
}
.brand-feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.brand-feature-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: .62rem;
  color: var(--red);
  min-width: 22px;
}
.brand-feature-text {
  font-family: 'Barlow', sans-serif;
  font-size: .92rem;
  color: #c8c8d4;
  font-weight: 400;
}
@media (max-width: 768px) {
  .brand-body-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── ADDITIONAL SERVICES ── */
.add-svc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}
.add-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.05);
}
.add-svc-card {
  background: #060608;
  padding: 32px 28px;
  position: relative;
  transition: background .25s;
}
.add-svc-card:hover { background: #0c0c10; }
.add-svc-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .52rem;
  color: rgba(255,255,255,.1);
  letter-spacing: .1em;
}
.add-svc-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(204,32,32,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.add-svc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #c8c8d4;
  margin-bottom: 12px;
  line-height: 1.25;
}
.add-svc-divider {
  width: 24px;
  height: 1px;
  background: rgba(204,32,32,.35);
  margin-bottom: 14px;
}
.add-svc-desc {
  font-family: 'Barlow', sans-serif;
  font-size: .8rem;
  color: #6b6b78;
  line-height: 1.75;
  font-weight: 300;
}
@media (max-width: 900px) {
  .add-svc-grid { grid-template-columns: 1fr; }
  .add-svc-header { grid-template-columns: 1fr; gap: 20px; }
}
