/* ============================================================
   MELCHER STUDIOS — style.css
   Brand: Bold, dark, energetic XR studio
   Palette: Melcher Green #00CB80, Tundra #258C92, Lime #A4ED3E, 
            Moss #80C0AD, Ice #85CDD1, Black Out #020E19
   ============================================================ */

/* --- Google Fonts Geologica loaded in HTML --- */

:root {
  /* Typography */
  --font-display: 'Geologica', 'Inter', sans-serif;
  --font-body: 'Geologica', 'Inter', sans-serif;

  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Brand Colors */
  --color-primary:       #00CB80;
  --color-primary-hover: #00E08D;
  --color-tundra:        #258C92;
  --color-lime:          #A4ED3E;
  --color-moss:          #80C0AD;
  --color-ice:           #85CDD1;
  --color-blackout:      #020E19;

  /* Surfaces */
  --color-bg:             #020E19;
  --color-surface:        #081A2B;
  --color-surface-2:      #0D2238;
  --color-surface-3:      #132D47;
  --color-divider:        rgba(255,255,255,0.08);
  --color-border:         rgba(255,255,255,0.12);

  /* Text */
  --color-text:           #E8EDF2;
  --color-text-muted:     #8A9BB0;
  --color-text-faint:     #4A5F76;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(0,203,128,0.15);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 1400px;
}


/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--content-full);
  margin: 0 auto;
  padding-inline: var(--space-6);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-10); }
}

section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}


/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-4) 0;
  background: rgba(2, 14, 25, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s ease;
}

.site-header.scrolled {
  background: rgba(2, 14, 25, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-full);
  margin: 0 auto;
  padding-inline: var(--space-6);
}

@media (min-width: 768px) {
  .header-inner { padding-inline: var(--space-10); }
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}

.logo-link svg {
  height: 44px;
  width: auto;
}

/* Desktop nav */
.main-nav {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

@media (min-width: 960px) {
  .main-nav { display: flex; }
}

.main-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: var(--color-primary);
  color: var(--color-blackout) !important;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

/* Mobile menu toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

@media (min-width: 960px) {
  .menu-toggle { display: none; }
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(2, 14, 25, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.mobile-nav a:hover {
  color: var(--color-primary);
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to bottom, rgba(2,14,25,0.4) 0%, rgba(2,14,25,0.1) 40%, rgba(2,14,25,0.7) 85%, rgba(2,14,25,1) 100%),
    linear-gradient(to right, rgba(2,14,25,0.8) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-full);
  margin: 0 auto;
  padding-inline: var(--space-6);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 768px) {
  .hero-content {
    padding-inline: var(--space-10);
  }
}

@media (min-width: 960px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.hero-text {
  max-width: 600px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-4);
  background: rgba(0, 203, 128, 0.1);
  border: 1px solid rgba(0, 203, 128, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  background: var(--color-primary);
  color: var(--color-blackout);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 203, 128, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(0, 203, 128, 0.05);
}

/* Hero video */
.hero-video-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 14, 25, 0.3);
  cursor: pointer;
  transition: background 0.3s ease;
}

.video-play-btn:hover {
  background: rgba(2, 14, 25, 0.15);
}

.video-play-btn svg {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}


/* ============================================================
   SOCIAL PROOF / STATS BAR
   ============================================================ */

.social-proof {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  padding-block: var(--space-10);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

@media (min-width: 768px) {
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.clients-label {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: var(--space-6);
}

.client-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.client-logos span {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-faint);
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0.6;
}


/* ============================================================
   SECTION HEADERS
   ============================================================ */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-12);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}


/* ============================================================
   PLATFORM ECOSYSTEM
   ============================================================ */

.platform-section {
  position: relative;
  overflow: hidden;
}

.platform-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37,140,146,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.platform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .platform-grid { grid-template-columns: repeat(4, 1fr); }
}

.platform-card {
  position: relative;
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.platform-card:hover {
  border-color: var(--color-border);
  transform: translateY(-4px);
}

.platform-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
  font-size: 24px;
}

.platform-card-icon.green  { background: rgba(0,203,128,0.12); color: var(--color-primary); }
.platform-card-icon.purple { background: rgba(105,74,254,0.12); color: #694afe; }
.platform-card-icon.orange { background: rgba(250,121,33,0.12); color: #fa7921; }
.platform-card-icon.ice    { background: rgba(133,205,209,0.12); color: var(--color-ice); }

.platform-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-3);
}

.platform-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.platform-card .card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.platform-card .card-accent.green  { background: linear-gradient(90deg, var(--color-primary), transparent); }
.platform-card .card-accent.purple { background: linear-gradient(90deg, #694afe, transparent); }
.platform-card .card-accent.orange { background: linear-gradient(90deg, #fa7921, transparent); }
.platform-card .card-accent.ice    { background: linear-gradient(90deg, var(--color-ice), transparent); }


/* ============================================================
   WORK SHOWCASE
   ============================================================ */

.work-section {
  background: var(--color-surface);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .work-grid { grid-template-columns: repeat(3, 1fr); }
}

.work-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--color-divider);
}

.work-card-bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-surface-2);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover .work-card-bg img {
  transform: scale(1.05);
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,14,25,0.95) 0%, rgba(2,14,25,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-6);
}

.work-card-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-3);
}

.work-card-tag.educate { background: rgba(0,203,128,0.15); color: var(--color-primary); }
.work-card-tag.entertain { background: rgba(164,237,62,0.15); color: var(--color-lime); }
.work-card-tag.influence { background: rgba(133,205,209,0.15); color: var(--color-ice); }

.work-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-1);
}

.work-card p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.section-cta {
  text-align: center;
  margin-top: var(--space-10);
}


/* ============================================================
   SERVICES
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  border-color: var(--color-border);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,203,128,0.08);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
  color: var(--color-primary);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-3);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

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

.service-card li {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  padding: var(--space-2) 0;
  border-top: 1px solid var(--color-divider);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.service-card li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ============================================================
   CONSUMER PRODUCTS
   ============================================================ */

.products-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .products-row { grid-template-columns: repeat(2, 1fr); }
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
  border-color: var(--color-border);
  transform: translateY(-4px);
}

.product-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  position: relative;
  overflow: hidden;
}

.product-visual.hockey {
  background: linear-gradient(135deg, #020E19 0%, #132D47 100%);
}

.product-visual.realstick {
  background: linear-gradient(135deg, #020E19 0%, rgba(37,140,146,0.3) 100%);
}

.product-info {
  padding: var(--space-6);
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-2);
}

.product-info p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
}

.product-link:hover {
  color: var(--color-primary-hover);
}

.product-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.product-link:hover svg {
  transform: translateX(3px);
}


/* ============================================================
   CTA / ABOUT TEASER
   ============================================================ */

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,140,146,0.06) 0%, rgba(0,203,128,0.06) 100%);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 768px) {
  .cta-grid { grid-template-columns: 1fr 1fr; }
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.cta-text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.offices-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.office-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.office-tag svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.cta-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-visual img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-divider);
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--color-blackout);
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-16);
  padding-bottom: var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: var(--space-4);
  max-width: 300px;
}

.footer-brand .footer-logo {
  height: 32px;
  width: auto;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background: var(--color-primary);
  color: var(--color-blackout);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: var(--space-2);
}

.footer-col a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
}

.footer-bottom p,
.footer-bottom a {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.footer-bottom a {
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--color-primary);
}

.footer-legal {
  display: flex;
  gap: var(--space-4);
}


/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ============================================================
   TAGLINE FRAMEWORK VISUAL
   ============================================================ */

.tagline-visual {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.tagline-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  border: 1px solid;
}

.tagline-pill.educate {
  color: var(--color-primary);
  border-color: rgba(0,203,128,0.3);
  background: rgba(0,203,128,0.08);
}

.tagline-pill.influence {
  color: var(--color-ice);
  border-color: rgba(133,205,209,0.3);
  background: rgba(133,205,209,0.08);
}

.tagline-pill.entertain {
  color: var(--color-lime);
  border-color: rgba(164,237,62,0.3);
  background: rgba(164,237,62,0.08);
}


/* ============================================================
   HEADER UTILITIES (Lang + Theme Toggle)
   ============================================================ */

.header-utils {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

@media (max-width: 959px) {
  .header-utils {
    position: absolute;
    right: calc(var(--space-6) + 44px);
    top: 50%;
    transform: translateY(-50%);
  }
}

/* --- Language Dropdown --- */
.lang-wrapper {
  position: relative;
  flex-shrink: 0;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3) var(--space-1) var(--space-2);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.lang-btn:hover {
  color: var(--color-text);
  border-color: var(--color-primary);
  background: var(--color-surface-3);
}

.lang-btn .globe-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.lang-btn .chevron {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.lang-wrapper.open .lang-btn .chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + var(--space-2));
  right: 0;
  min-width: 200px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  z-index: 200;
  max-height: 360px;
  overflow-y: auto;
}

.lang-wrapper.open .lang-dropdown {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
  padding: var(--space-2) var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}

.lang-option:hover {
  color: var(--color-text);
  background: rgba(0,203,128,0.08);
}

.lang-option.active {
  color: var(--color-primary);
  font-weight: 600;
}

.lang-option .flag {
  font-size: 1.1em;
  flex-shrink: 0;
}

.lang-translating {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  box-shadow: var(--shadow-lg);
  z-index: 500;
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  display: none;
}

.lang-translating.visible {
  display: block;
}

.lang-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: var(--space-2);
}

@media (max-width: 768px) {
  .lang-btn .lang-label { display: none; }
  .lang-dropdown { right: -1rem; min-width: 180px; }
}


/* --- Theme Toggle --- */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.theme-toggle:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: var(--color-surface-3);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

/* In dark (default) mode: show sun, hide moon */
.theme-toggle .icon-sun {
  display: block;
}
.theme-toggle .icon-moon {
  display: none;
}

/* In light mode: show moon, hide sun */
[data-theme="light"] .theme-toggle .icon-sun {
  display: none;
}
[data-theme="light"] .theme-toggle .icon-moon {
  display: block;
}


/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-consent.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--content-full);
  margin: 0 auto;
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}

.cookie-inner p a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}

.cookie-accept,
.cookie-decline {
  padding: var(--space-2) var(--space-6) !important;
  font-size: var(--text-xs) !important;
}


/* ============================================================
   LIGHT MODE THEME
   ============================================================ */

[data-theme="light"] {
  --color-bg:             #F5F7FA;
  --color-surface:        #FFFFFF;
  --color-surface-2:      #EEF1F5;
  --color-surface-3:      #E2E7ED;
  --color-divider:        rgba(0,0,0,0.08);
  --color-border:         rgba(0,0,0,0.12);

  --color-text:           #1A2332;
  --color-text-muted:     #5A6A7E;
  --color-text-faint:     #8A96A6;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 40px rgba(0,203,128,0.12);
}

[data-theme="light"] body {
  background: var(--color-bg);
  color: var(--color-text);
}

[data-theme="light"] .site-header {
  background: rgba(245, 247, 250, 0.9);
}

[data-theme="light"] .site-header.scrolled {
  background: rgba(245, 247, 250, 0.97);
}

[data-theme="light"] .logo-link span {
  color: var(--color-text) !important;
}

[data-theme="light"] .logo-link span span {
  color: var(--color-text-muted) !important;
}

[data-theme="light"] .mobile-nav {
  background: rgba(245, 247, 250, 0.98);
}

[data-theme="light"] .mobile-nav a,
[data-theme="light"] .menu-toggle span {
  color: var(--color-text);
}

[data-theme="light"] .hero-gradient {
  background:
    linear-gradient(to bottom, rgba(245,247,250,0.4) 0%, rgba(245,247,250,0.1) 40%, rgba(245,247,250,0.7) 85%, rgba(245,247,250,1) 100%),
    linear-gradient(to right, rgba(245,247,250,0.8) 0%, transparent 50%);
}

[data-theme="light"] .hero h1 {
  color: var(--color-text);
}

[data-theme="light"] .social-proof {
  background: var(--color-surface);
}

[data-theme="light"] .work-section {
  background: var(--color-surface);
}

[data-theme="light"] .section-title,
[data-theme="light"] .platform-card h3,
[data-theme="light"] .work-card h3,
[data-theme="light"] .service-card h3,
[data-theme="light"] .cta-text h2 {
  color: var(--color-text);
}

[data-theme="light"] .work-card-overlay {
  background: linear-gradient(to top, rgba(26,35,50,0.9) 0%, rgba(26,35,50,0.3) 50%, transparent 100%);
}

[data-theme="light"] .work-card h3 {
  color: #fff;
}
[data-theme="light"] .work-card p {
  color: rgba(255,255,255,0.7);
}

[data-theme="light"] .site-footer {
  background: #1A2332;
}

[data-theme="light"] .footer-col h4,
[data-theme="light"] .footer-brand .footer-logo path {
  color: #fff;
  fill: #01CB80;
}

[data-theme="light"] .nav-cta {
  color: var(--color-blackout) !important;
}

[data-theme="light"] .menu-toggle span {
  background: var(--color-text);
}


/* ============================================================
   INNER PAGE — SHARED
   ============================================================ */
.page-hero {
  padding: calc(var(--space-24) + 72px) 0 var(--space-16);
  text-align: center;
}
.page-hero .container { max-width: 800px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
  line-height: 1.1;
}
.page-hero p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}



/* Compact vertical spacing for inner pages */
.page-compact section {
  padding-block: var(--space-6) var(--space-8);
}
.page-compact .page-hero {
  padding: calc(var(--space-12) + 72px) 0 var(--space-4);
}
.page-compact section[style*="padding-top:0"] {
  padding-top: 0 !important;
}
.page-compact section[style*="padding-bottom"] {
  padding-bottom: var(--space-8) !important;
}

/* Platforms Dropdown */
.nav-dropdown-wrap {
  position: relative;
  display: inline-flex;
}
.nav-dropdown-wrap > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown-wrap > a .dd-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}
.nav-dropdown-wrap:hover > a .dd-chevron {
  transform: rotate(180deg);
}
/* Invisible bridge so hover doesn't break crossing the gap */
.nav-dropdown-wrap::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 16px; /* bridge gap */
  display: none;
}
.nav-dropdown-wrap:hover::after {
  display: block;
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-2) 0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  z-index: 200;
}
.nav-dropdown-wrap:hover .nav-dropdown {
  display: block;
}
.nav-dropdown a {
  display: block;
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown a:hover {
  color: var(--color-primary);
  background: rgba(0,203,128,0.06);
}
/* Mobile: Platforms sub-links */
.mobile-nav .mobile-sub {
  padding-left: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.mobile-nav .mobile-sub:hover {
  color: var(--color-primary);
}

/* Hardware Kit Page */
.hw-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
.hw-hero-grid img {
  width: 100%;
  border-radius: var(--radius-xl);
}
.hw-table-wrap {
  overflow-x: auto;
}
.hw-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.hw-table th {
  text-align: left;
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  padding: var(--space-3) var(--space-4);
  border-bottom: 2px solid var(--color-divider);
}
.hw-table td {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--color-divider);
  color: var(--color-text-muted);
}
.hw-table tr:last-child td { border-bottom: none; }
.hw-table td:first-child { color: var(--color-text); font-weight: 600; }
@media (max-width: 768px) {
  .hw-hero-grid { grid-template-columns: 1fr; }
}

/* Fabrication Gallery */
.fab-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.fab-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-divider);
}
@media (max-width: 900px) {
  .fab-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .fab-gallery { grid-template-columns: 1fr; }
}

/* ============================================================
   STATS HUB PAGE
   ============================================================ */
.stats-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.stats-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: border-color 0.3s, transform 0.3s;
}
.stats-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}
.stats-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-4);
}
.stats-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
[data-theme="light"] .stats-card-icon img {
  filter: brightness(0);
}
.stats-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.stats-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.stats-card ul li {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  padding-left: var(--space-5);
  position: relative;
  margin-bottom: var(--space-2);
  max-width: none;
}
.stats-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}
/* 3x2 grid for 6 cards */
@media (min-width: 901px) {
  .stats-features {
    grid-template-columns: repeat(3, 1fr);
  }
}
.stats-card--dashboard img {
  margin-bottom: var(--space-4);
}
@media (max-width: 900px) {
  .stats-features {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .stats-features {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   AI PAGE
   ============================================================ */
/* How It Works Steps */
.ai-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  counter-reset: step;
}
.ai-step {
  position: relative;
  padding: var(--space-5) var(--space-5) var(--space-5) var(--space-5);
  border-left: 2px solid var(--color-primary);
}
.ai-step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  color: var(--color-primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--space-3);
}
.ai-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}
.ai-step p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: none;
}
@media (max-width: 900px) {
  .ai-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ai-steps { grid-template-columns: 1fr; }
}

/* Benefits Grid */
.ai-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.ai-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: border-color 0.3s, transform 0.3s;
}
.ai-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}
.ai-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}
.ai-card-icon svg {
  width: 100%;
  height: 100%;
}
.ai-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.ai-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: none;
}
@media (max-width: 900px) {
  .ai-benefits { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ai-benefits { grid-template-columns: 1fr; }
}

/* AI Infographic */
.ai-infographic {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  overflow-x: auto;
}
.ai-infographic svg text {
  transition: fill 0.3s;
}
[data-theme="light"] .ai-infographic svg text[fill="#fff"] {
  fill: #020E19;
}
@media (max-width: 640px) {
  .ai-infographic { padding: var(--space-4); }
}

/* Machine Learning Grid */
.ai-ml-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.ai-ml-item {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: border-color 0.3s, transform 0.3s;
}
.ai-ml-item:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}
.ai-ml-icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}
.ai-ml-icon svg {
  width: 100%;
  height: 100%;
}
.ai-ml-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.ai-ml-item p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: none;
}
@media (max-width: 900px) {
  .ai-ml-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ai-ml-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Offices */
.offices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
.office-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: border-color 0.3s;
}
.office-card:hover { border-color: rgba(0,203,128,0.3); }
.office-card .office-hq {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  background: rgba(0,203,128,0.1);
  border: 1px solid rgba(0,203,128,0.2);
  border-radius: var(--radius-full);
  padding: 2px 10px;
  margin-bottom: var(--space-3);
}
.office-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.office-card address {
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}
.office-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-4);
  gap: var(--space-4);
}
.office-card .office-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  transition: opacity 0.2s;
}
.office-card .office-phone:hover { opacity: 0.8; }
.office-card .office-phone svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Contact form */
.contact-form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
}
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.contact-form-wrap > p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}
.form-group {
  margin-bottom: var(--space-6);
}
.form-group label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  transition: border-color 0.25s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-primary);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%238a9ba8' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Social strip */
.social-strip {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
}
.social-strip span {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.social-icons {
  display: flex;
  gap: var(--space-4);
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  color: var(--color-text-muted);
  transition: border-color 0.25s, color 0.25s;
}
.social-icons a:hover { border-color: var(--color-primary); color: var(--color-primary); }
.social-icons a svg { width: 18px; height: 18px; }


/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.prose-wide {
  padding: var(--space-12) 0 var(--space-24);
}
/* Legacy narrow prose kept for backward compat */
.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-12) var(--space-6) var(--space-24);
}
.prose-wide h2, .prose h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}
.prose-wide h3, .prose h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}
.prose-wide p, .prose p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}
.prose-wide p,
.prose-wide li {
  max-width: none;
}
.prose-wide ul, .prose ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-6);
}
.prose-wide ul li, .prose ul li {
  position: relative;
  padding-left: var(--space-6);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-2);
}
.prose-wide ul li::before, .prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}
.prose-wide strong, .prose strong {
  color: var(--color-text);
  font-weight: 600;
}
.prose-wide .last-updated, .prose .last-updated {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-8);
}

/* Google Maps link in office cards */
.office-card .office-map {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s;
  white-space: nowrap;
}
.office-card .office-map:hover { color: var(--color-primary); }
.office-card .office-map svg { width: 14px; height: 14px; flex-shrink: 0; }


/* ============================================================
   SERVICES PAGE
   ============================================================ */

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
@media (max-width: 960px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
}
.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: var(--radius-full);
  background: rgba(0,203,128,0.1);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.value-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Services detail cards */
.services-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
.service-detail-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-12);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.service-detail-card:hover { border-color: rgba(0,203,128,0.3); }
.service-detail-number {
  position: absolute;
  top: var(--space-8);
  right: var(--space-10);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(0,203,128,0.06);
  line-height: 1;
  pointer-events: none;
}
.service-detail-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.service-detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-lg);
  background: rgba(0,203,128,0.1);
  color: var(--color-primary);
  flex-shrink: 0;
}
.service-detail-card h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin: 0;
}
.service-detail-card p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-6);
  max-width: 800px;
}
.service-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.capability-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-full);
  padding: 4px 14px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .service-detail-card {
    padding: var(--space-8) var(--space-6);
  }
  .service-detail-number {
    font-size: 3rem;
    top: var(--space-6);
    right: var(--space-6);
  }
}

/* Active nav link */
.main-nav a.active {
  color: var(--color-primary);
}


/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  text-align: center;
  padding: var(--space-10) 0;
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.about-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--space-2);
}
.about-stat-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.about-two-col h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}
.about-two-col p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-4);
  max-width: none;
}
@media (max-width: 768px) {
  .about-two-col { grid-template-columns: 1fr; gap: var(--space-10); }
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 900px;
  margin: 0 auto;
}
.team-card {
  text-align: center;
}
.team-photo {
  width: 160px;
  height: 160px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto var(--space-5);
  border: 3px solid var(--color-divider);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.team-role {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; max-width: 300px; }
}


/* ============================================================
   STORE PAGE
   ============================================================ */
.store-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.store-featured-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.store-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-featured-info {
  padding: var(--space-10) var(--space-10) var(--space-10) 0;
}
.store-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(0,203,128,0.1);
  border: 1px solid rgba(0,203,128,0.2);
  border-radius: var(--radius-full);
  padding: 3px 12px;
  margin-bottom: var(--space-4);
}
.store-featured-info h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}
.store-featured-info p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-6);
  max-width: none;
}
@media (max-width: 768px) {
  .store-featured { grid-template-columns: 1fr; }
  .store-featured-info { padding: var(--space-8); }
}

/* ===== Company Timeline ===== */
.timeline-container {
  padding: var(--space-4) 0;
}
.timeline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 140px;
  max-width: 170px;
  padding: var(--space-3);
  position: relative;
  cursor: default;
}
.timeline-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0,203,128,0.08);
  border: 2px solid rgba(0,203,128,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  margin-bottom: var(--space-3);
  transition: transform 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.timeline-icon svg {
  width: 100%;
  height: 100%;
}
.timeline-item:hover .timeline-icon {
  transform: scale(1.12);
  border-color: var(--color-primary);
  background: rgba(0,203,128,0.14);
  box-shadow: 0 0 20px rgba(0,203,128,0.2);
}
.timeline-item-current .timeline-icon {
  border-color: var(--color-primary);
  background: rgba(0,203,128,0.15);
  box-shadow: 0 0 24px rgba(0,203,128,0.25);
  animation: timeline-pulse 2s ease-in-out infinite;
}
@keyframes timeline-pulse {
  0%, 100% { box-shadow: 0 0 24px rgba(0,203,128,0.25); }
  50% { box-shadow: 0 0 32px rgba(0,203,128,0.4); }
}
.timeline-year {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2px;
}
.timeline-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.4;
  max-width: 150px;
}
.timeline-connector {
  flex-shrink: 0;
  width: 48px;
  height: 20px;
  display: flex;
  align-items: center;
}
.timeline-connector svg {
  width: 100%;
  height: 100%;
}
.timeline-turn {
  width: 40px;
  height: 40px;
  margin: var(--space-2) 0;
}
.timeline-turn svg {
  width: 100%;
  height: 100%;
}
.timeline-turn-right {
  margin-left: auto;
  margin-right: 80px;
}
.timeline-turn-left {
  margin-left: 80px;
  margin-right: auto;
}

/* Mobile: vertical single-column timeline */
@media (max-width: 900px) {
  .timeline-row {
    flex-direction: column;
    gap: 0;
  }
  .timeline-row-rtl {
    flex-direction: column;
  }
  .timeline-item {
    max-width: 240px;
    flex-direction: row;
    text-align: left;
    gap: var(--space-4);
    padding: var(--space-3) 0;
  }
  .timeline-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    padding: 12px;
    margin-bottom: 0;
  }
  .timeline-connector,
  .timeline-connector-rtl {
    width: 20px;
    height: 36px;
    transform: rotate(90deg);
  }
  .timeline-turn {
    display: none;
  }
  .timeline-label {
    max-width: none;
  }
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.store-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  text-decoration: none;
}
.store-card:hover {
  border-color: rgba(0,203,128,0.3);
  transform: translateY(-4px);
}
.store-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-surface-2);
}
.store-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.store-card:hover .store-card-img img {
  transform: scale(1.05);
}
.store-card-info {
  padding: var(--space-5) var(--space-6) var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.store-card-info h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.store-card-info p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  flex: 1;
  max-width: none;
}
.store-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.store-price {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
}
.store-platform {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  font-weight: 500;
}
@media (max-width: 900px) {
  .store-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 550px) {
  .store-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   PROJECT DETAIL PAGE — CASE STUDY
   ============================================================ */

/* Page Header — two-column with image right */
.proj-header {
  padding: calc(72px + var(--space-10)) 0 var(--space-12);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
  overflow: hidden;
}

.proj-header .container {
  max-width: var(--content-wide);
}

.proj-header-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-12);
  align-items: center;
}

@media (max-width: 960px) {
  .proj-header-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

.proj-nav-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-5);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.proj-back,
.proj-next {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.proj-back {
  margin-bottom: 0;
}

.proj-back:hover,
.proj-next:hover {
  color: var(--color-primary);
}

.proj-back:hover svg {
  transform: translateX(-3px);
}

.proj-next:hover svg {
  transform: translateX(3px);
}

.proj-back svg,
.proj-next svg {
  transition: transform 0.2s ease;
}

.proj-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--space-4);
}

.proj-lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.proj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.proj-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
}

.proj-tag svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Header Image — design frame */
.proj-header-visual {
  display: flex;
  justify-content: center;
}

@media (max-width: 960px) {
  .proj-header-visual {
    max-width: 400px;
  }
}

.proj-hero-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
}

/* Green accent bar — left edge */
.proj-hero-accent {
  position: absolute;
  left: -8px;
  top: 20px;
  bottom: 20px;
  width: 4px;
  border-radius: 4px;
  background: var(--color-primary);
  box-shadow: 0 0 20px rgba(0, 203, 128, 0.4);
  z-index: 2;
}

/* Image container */
.proj-hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-blackout);
  border: 1px solid var(--color-border);
  z-index: 1;
}

.proj-hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Dot pattern — decorative element behind image */
.proj-hero-dots {
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 100px;
  height: 100px;
  z-index: 0;
  opacity: 0.25;
  background-image:
    radial-gradient(circle, var(--color-primary) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
}

/* Two-column content */
.proj-content {
  padding: var(--space-16) 0;
}

.proj-content .container {
  max-width: var(--content-wide);
}

.proj-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

@media (max-width: 860px) {
  .proj-content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

.proj-about h2,
.proj-video-col h2 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

.proj-about p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.proj-about p:last-child {
  margin-bottom: 0;
}

.proj-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.proj-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Results / Outcomes & Benefits */
.proj-results {
  padding: var(--space-16) 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}

.proj-results .container {
  max-width: var(--content-wide);
}

.proj-results-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-10);
  align-items: start;
}

@media (max-width: 768px) {
  .proj-results-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .proj-result-divider {
    display: none;
  }
}

.proj-result-divider {
  width: 1px;
  align-self: stretch;
  background: var(--color-divider);
}

.proj-result-num {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}

.proj-result-block h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.proj-result-block p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-3);
}

.proj-result-block p:last-child {
  margin-bottom: 0;
}

/* CTA Band */
.proj-cta-section {
  padding: var(--space-16) 0;
}

.proj-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  padding: var(--space-10) var(--space-10);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
}

@media (max-width: 768px) {
  .proj-cta-band {
    flex-direction: column;
    text-align: center;
    padding: var(--space-8) var(--space-6);
  }
}

.proj-cta-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}

.proj-cta-text p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.proj-cta-buttons {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .proj-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .proj-cta-buttons .btn-primary,
  .proj-cta-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Light mode overrides */
[data-theme="light"] .proj-header {
  background: var(--color-surface);
}

[data-theme="light"] .proj-results {
  background: var(--color-surface);
}

[data-theme="light"] .proj-hero-img-wrap {
  background: var(--color-surface-3);
  border-color: var(--color-border);
}

[data-theme="light"] .proj-cta-band {
  background: var(--color-surface);
}


/* Full-width about when no video */
.proj-content-full {
  grid-template-columns: 1fr;
  max-width: 800px;
}
