:root {
  --brand-teal: #00c2e8;
  --brand-blue: #0077b6;
  --brand-gradient: linear-gradient(135deg, var(--brand-teal), var(--brand-blue));
}

html {
  text-rendering: optimizeLegibility;
}

body {
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
}

/* Home hero: brand-gradient + oversized monogram */
.home-hero {
  position: relative;
  isolation: isolate;
  background-image:
    radial-gradient(980px 740px at 30% 42%, rgba(110, 224, 255, 0.06), rgba(110, 224, 255, 0) 70%),
    radial-gradient(1200px 920px at 76% 14%, rgba(244, 254, 255, 0.78), rgba(110, 185, 255, 0.18) 34%, rgba(12, 132, 199, 0) 72%),
    radial-gradient(1100px 920px at 16% 52%, rgba(6, 68, 140, 0.52), rgba(6, 68, 140, 0) 66%),
    radial-gradient(980px 820px at 12% 66%, rgba(3, 43, 92, 0.52), rgba(3, 43, 92, 0) 66%),
    linear-gradient(135deg, #0a3f86 0%, #1767b8 38%, #149be9 74%, #f4fdff 112%);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  background-size: 240px 240px;
  opacity: 0.012;
  mix-blend-mode: normal;
  z-index: 0;
}

.home-hero-decor {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Atmospheric bloom + monogram-material interaction */
.home-hero-decor::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(940px 640px at 84% 22%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 62%),
    radial-gradient(760px 520px at 86% 32%, rgba(232, 252, 255, 0.22), rgba(232, 252, 255, 0) 68%);
  mix-blend-mode: normal;
  opacity: 0.28;
  -webkit-mask-image: radial-gradient(circle at 84% 28%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 74%);
  mask-image: radial-gradient(circle at 84% 28%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 74%);
  z-index: 1;
}

.home-hero-decor::after {
  display: none;
  content: "";
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: min(780px, 52vw);
  aspect-ratio: 1012 / 1065;
  background: url("../assets/VOKSHI_logo2022_monogram.png") center / contain no-repeat;
  opacity: 0.14;
  filter: blur(0.9px);
  mix-blend-mode: soft-light;
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 82%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 82%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.home-hero-planes {
  position: absolute;
  inset: -2px;
  opacity: 0.60;
  mix-blend-mode: normal;
  -webkit-mask-image: radial-gradient(circle at 88% 66%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 92%);
  mask-image: radial-gradient(circle at 88% 66%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 92%);
  z-index: 0;
}

.home-hero-planes svg {
  width: 100%;
  height: 100%;
  display: block;
}

.home-hero-monogram {
  position: absolute;
  right: 2%;
  top: 52%;
  transform: translateY(-50%);
  width: min(640px, 44vw);
  height: auto;
  opacity: 0.96;
  filter:
    drop-shadow(0 14px 40px rgba(4, 26, 50, 0.14));
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 96%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 96%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.home-hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 43, 92, 0.56) 0%, rgba(3, 43, 92, 0.18) 42%, rgba(3, 43, 92, 0) 60%),
    radial-gradient(760px 560px at 30% 48%, rgba(3, 43, 92, 0.18), rgba(3, 43, 92, 0) 74%),
    linear-gradient(to top, rgba(3, 43, 92, 0.14) 0%, rgba(3, 43, 92, 0) 55%);
}

.page-hero-title,
.page-hero-subline,
.page-hero-copy {
  color: #fbfdff;
  text-shadow:
    0 0 3px rgba(0, 0, 0, 0.32),
    0 0 12px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(0, 0, 0, 0.22);
}

@media (max-width: 768px) {
  .home-hero-monogram {
    right: 0%;
    width: min(520px, 86vw);
    opacity: 0.86;
  }
  .home-hero-planes {
    opacity: 0.54;
  }
  .home-hero-vignette {
    background:
      linear-gradient(90deg, rgba(10, 60, 120, 0.50) 0%, rgba(10, 60, 120, 0.18) 44%, rgba(10, 60, 120, 0) 70%),
      radial-gradient(720px 520px at 30% 46%, rgba(4, 26, 50, 0.12), rgba(4, 26, 50, 0) 74%),
      linear-gradient(to top, rgba(4, 26, 50, 0.12) 0%, rgba(4, 26, 50, 0) 55%);
  }

  .page-hero-title,
  .page-hero-subline,
  .page-hero-copy {
    text-shadow:
      0 0 5px rgba(0, 0, 0, 0.38),
      0 0 24px rgba(0, 0, 0, 0.48),
      0 0 64px rgba(0, 0, 0, 0.35);
  }
}

/* Details summary marker removal */
summary {
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}

/* Active nav underline */
.nav-link {
  position: relative;
}
.nav-link.is-active {
  color: rgb(24 24 27);
}
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  border-radius: 9999px;
  background: var(--brand-gradient);
}

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(161, 161, 170, 0.35);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.7);
  padding: 2px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.lang-toggle button {
  appearance: none;
  border: 0;
  border-radius: 9999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgb(63 63 70);
  background: transparent;
}
.lang-toggle button[data-active="true"] {
  background: var(--brand-gradient);
  color: white;
}
.lang-toggle button:focus-visible {
  outline: 2px solid var(--brand-teal);
  outline-offset: 2px;
}

/* Accent rule */
.brand-rule {
  height: 1px;
  width: 72px;
  border-radius: 9999px;
  background: var(--brand-gradient);
}

.breakout {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: calc(-1 * min(50vw, 50%));
  margin-right: calc(-1 * min(50vw, 50%));
  width: min(100vw, calc(100% + 4rem));
}

.card-zoom {
  transform: translateZ(0);
  transition: transform 380ms cubic-bezier(0.2, 0.7, 1, 1), box-shadow 380ms cubic-bezier(0.2, 0.7, 1, 1);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .card-zoom:hover,
  .card-zoom:focus-within {
    transform: translateY(-2px) scale(1.015);
    z-index: 2;
  }

  html.js .card-zoom.reveal:hover,
  html.js .card-zoom.reveal:focus-within {
    transform: translateY(-3px) scale(1.02);
    z-index: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card-zoom {
    transition: none;
  }
  .card-zoom:hover,
.card-zoom:focus-within {
    transform: none;
  }
}

.about-card {
  position: relative;
  min-height: min(80svh, 58rem);
  border-radius: 2.75rem;
  padding: 3.25rem 3.25rem 3.75rem;
  margin: 0 auto;
  overflow: hidden;
}

.about-card--apple {
  --about-card-bg: linear-gradient(135deg, #0b1220, #030712 55%, #08111f 100%);
  --about-shade-a: rgba(0, 0, 0, 0.72);
  --about-shade-b: rgba(0, 0, 0, 0);
  --about-side-shade: linear-gradient(90deg, var(--about-shade-a) 0%, var(--about-shade-b) 58%);
  --about-bottom-shade: linear-gradient(to top, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0) 58%);
  --about-accent-glow: radial-gradient(800px 520px at 18% 86%, rgba(0, 173, 239, 0.18), rgba(0, 0, 0, 0) 60%);
  --about-sheen: radial-gradient(700px 420px at 82% 18%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 55%);
  --about-art-mask: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  --about-art-opacity: 0.32;
  --about-art-width: min(980px, 72%);
  --about-art-shadow: rgba(0, 0, 0, 0.35);
  --about-art-glow: rgba(0, 173, 239, 0.30);
  --about-art-blur: 0.6px;
  --about-content-max: 46rem;
  --about-text: #ffffff;
  --about-muted: rgba(255, 255, 255, 0.85);
  --about-rail-bg: rgba(255, 255, 255, 0.06);
  --about-rail-border: rgba(255, 255, 255, 0.12);
  --about-rail-text: rgba(255, 255, 255, 0.82);
  --about-rail-divider: rgba(255, 255, 255, 0.14);
  isolation: isolate;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--about-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 20px 70px rgba(0, 0, 0, 0.22);
}

.about-card--apple.about-card--light {
  --about-shade-a: rgba(255, 255, 255, 0.88);
  --about-shade-b: rgba(255, 255, 255, 0);
  --about-bottom-shade: linear-gradient(to top, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 58%);
  --about-text: #0b0f18;
  --about-muted: rgba(11, 15, 24, 0.78);
  --about-rail-bg: rgba(11, 15, 24, 0.05);
  --about-rail-border: rgba(11, 15, 24, 0.10);
  --about-rail-text: rgba(11, 15, 24, 0.78);
  --about-rail-divider: rgba(11, 15, 24, 0.10);
  color: var(--about-text);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 22px 70px rgba(15, 23, 42, 0.12);
}

.about-card--apple::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    var(--about-side-shade),
    var(--about-bottom-shade),
    var(--about-accent-glow);
  pointer-events: none;
}

.about-card--apple::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--about-sheen);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.55;
}

.about-card--apple.about-card--light::after {
  mix-blend-mode: multiply;
  opacity: 0.20;
  --about-sheen: radial-gradient(700px 420px at 82% 18%, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0) 55%);
}

.about-card__content {
  position: relative;
  z-index: 2;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--about-content-max);
  color: var(--about-text);
}

.about-card__muted {
  color: var(--about-muted);
}

.about-card__art {
  position: absolute;
  z-index: 0;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: var(--about-art-width);
  height: auto;
  opacity: var(--about-art-opacity);
  filter:
    drop-shadow(0 22px 60px var(--about-art-shadow))
    drop-shadow(0 0 46px var(--about-art-glow))
    blur(var(--about-art-blur));
  -webkit-mask-image: var(--about-art-mask);
  mask-image: var(--about-art-mask);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  pointer-events: none;
  user-select: none;
}

.about-card--apple.about-card--light .about-card__art {
  mix-blend-mode: multiply;
}

.about-rail {
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  list-style: none;
}

.about-rail::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--about-rail-divider), transparent);
  opacity: 0.9;
}

.about-rail {
  position: relative;
}

.about-rail__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 0.95rem;
  border-radius: 1.25rem;
  background: var(--about-rail-bg);
  border: 1px solid var(--about-rail-border);
  color: var(--about-rail-text);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 650;
  backdrop-filter: blur(10px);
}

.about-rail__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: var(--brand-gradient);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
  flex: 0 0 auto;
}

.about-card--apple.about-card--light .about-rail__dot {
  box-shadow: 0 0 0 3px rgba(11, 15, 24, 0.06);
}

@media (max-width: 768px) {
  .about-rail {
    grid-template-columns: 1fr;
  }
}

/* Layout variants */
.about-card--text-left .about-card__content {
  margin-right: auto;
  margin-left: 0;
  align-items: flex-start;
  text-align: left;
}

.about-card--text-center .about-card__content {
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  text-align: center;
  justify-content: center;
  --about-content-max: 54rem;
  --about-side-shade: radial-gradient(520px 300px at 50% 76%, var(--about-shade-a), var(--about-shade-b) 65%);
}

.about-card--text-right .about-card__content {
  margin-left: auto;
  margin-right: 0;
  align-items: flex-end;
  text-align: right;
  --about-side-shade: linear-gradient(270deg, var(--about-shade-a) 0%, var(--about-shade-b) 58%);
}

.about-card--art-right .about-card__art {
  right: -10%;
  left: auto;
  --about-art-mask: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.about-card--art-left .about-card__art {
  left: -10%;
  right: auto;
  --about-art-mask: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.about-card--art-center .about-card__art {
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  --about-art-width: min(1080px, 92%);
  --about-art-opacity: 0.20;
  --about-art-mask: radial-gradient(circle at center, rgba(0, 0, 0, 1) 22%, rgba(0, 0, 0, 0) 72%);
}

/* Make the SVG act like hero media (About only) */
.about-card--who.about-card--art-center .about-card__art {
  --about-art-width: min(1500px, 124%);
  --about-art-opacity: 0.34;
  --about-art-blur: 0.22px;
  /* Keep the center clearer for centered text */
  --about-art-mask: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.16) 28%, rgba(0, 0, 0, 1) 74%);
}

.about-card--presence.about-card--art-left .about-card__art {
  left: -6%;
  --about-art-width: min(1400px, 108%);
  --about-art-opacity: 0.36;
  --about-art-blur: 0.22px;
}

.about-card--approach.about-card--art-right .about-card__art {
  right: -6%;
  --about-art-width: min(1400px, 108%);
  --about-art-opacity: 0.34;
  --about-art-blur: 0.22px;
}

.about-card--philosophy.about-card--art-right .about-card__art {
  right: -8%;
  --about-art-width: min(1320px, 104%);
  --about-art-opacity: 0.30;
  --about-art-blur: 0.28px;
}

@media (max-width: 768px) {
  .about-card__art {
    right: -24%;
    width: min(900px, 100%);
    opacity: 0.20;
  }

  .about-card--art-left .about-card__art {
    left: -24%;
    right: auto;
  }

  .about-card--art-center .about-card__art {
    left: 50%;
    right: auto;
  }
}

.about-card--growth {
  min-height: min(68svh, 50rem);
  --about-card-bg:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E"),
    url("../assets/products/about-growth-card-background.png");
  --about-side-shade: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.62) 34%,
    rgba(0, 0, 0, 0.22) 54%,
    rgba(0, 0, 0, 0.05) 78%,
    rgba(0, 0, 0, 0.12) 100%
  );
  --about-bottom-shade:
    linear-gradient(to top, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0) 60%),
    radial-gradient(760px 520px at 92% 44%, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0) 60%);
  --about-accent-glow:
    radial-gradient(980px 640px at 28% 44%, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0) 70%),
    radial-gradient(900px 540px at 84% 40%, rgba(0, 173, 239, 0.10), rgba(0, 0, 0, 0) 62%);
  --about-sheen: radial-gradient(860px 520px at 84% 18%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 55%);

  background-size: 220px 220px, 125%;
  background-position: 0 0, 76% 26%;
  background-repeat: repeat, no-repeat;
  background-blend-mode: soft-light, normal;
}

.about-card--who {
  min-height: min(68svh, 50rem);
  --about-card-bg:
    radial-gradient(880px 560px at 50% 56%, rgba(245, 200, 140, 0.38), rgba(255, 255, 255, 0) 62%),
    linear-gradient(135deg, #f5f5f7, #eef2f6 55%, #ffffff 100%);
  --about-accent-glow: radial-gradient(760px 480px at 54% 76%, rgba(245, 200, 140, 0.22), rgba(255, 255, 255, 0) 60%);
  --about-art-shadow: rgba(15, 23, 42, 0.18);
  --about-art-glow: rgba(201, 122, 37, 0.18);
}

/* Who We Are Today refinements (scoped) */
.about-card--who.about-card--light {
  border-color: rgba(15, 23, 42, 0.06);
}

.about-card--who .brand-rule {
  height: 2px;
  width: 64px;
  background: var(--brand-blue);
}

.about-card--who .about-who-spotlight {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(640px 360px at 50% 34%, rgba(11, 15, 24, 0.10), rgba(11, 15, 24, 0) 70%);
}

.about-card--who .about-who-grid {
  position: absolute;
  top: 0;
  right: 0;
  width: 56%;
  height: 56%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(0, 119, 182, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 119, 182, 0.25) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(circle at top right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 72%);
  mask-image: radial-gradient(circle at top right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 72%);
}

.about-card--who .about-card__content {
  z-index: 3;
}

/* Apply the same depth system to other About cards */
.about-card--presence.about-card--light,
.about-card--approach.about-card--light {
  border-color: rgba(15, 23, 42, 0.06);
}

.about-card--presence .brand-rule,
.about-card--approach .brand-rule,
.about-card--philosophy .brand-rule {
  height: 2px;
  width: 64px;
  background: var(--brand-blue);
}

.about-card--presence .about-presence-spotlight {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(640px 360px at 72% 34%, rgba(11, 15, 24, 0.10), rgba(11, 15, 24, 0) 70%);
}

.about-card--presence .about-presence-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 56%;
  height: 62%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    radial-gradient(circle, rgba(0, 119, 182, 0.55) 1px, transparent 1.8px),
    radial-gradient(circle, rgba(0, 119, 182, 0.35) 1px, transparent 2px);
  background-size: 44px 44px, 68px 68px;
  background-position: 0 0, 18px 26px;
  -webkit-mask-image: radial-gradient(circle at top left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 72%);
  mask-image: radial-gradient(circle at top left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 72%);
}

.about-card--presence .about-card__content {
  z-index: 3;
}

.about-card--approach .about-approach-spotlight {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(560px 340px at 86% 26%, rgba(181, 98, 58, 0.07), rgba(181, 98, 58, 0) 72%);
}

.about-card--approach .about-approach-grid {
  display: none;
}

.about-card--approach .about-card__content {
  z-index: 3;
}

.about-card--philosophy .about-philosophy-spotlight {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(700px 420px at 32% 40%, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0) 72%);
}

.about-card--philosophy .about-philosophy-grid {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58%;
  height: 60%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(201, 162, 39, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.22) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(circle at bottom right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
  mask-image: radial-gradient(circle at bottom right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
}

.about-card--philosophy .about-card__content {
  z-index: 3;
}

.about-card--presence {
  min-height: min(68svh, 50rem);
  --about-card-bg:
    radial-gradient(1200px 820px at 22% 18%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 62%),
    radial-gradient(1200px 820px at 90% 78%, rgba(15, 23, 42, 0.055), rgba(15, 23, 42, 0) 62%),
    linear-gradient(135deg, #f7f9fb, #eef2f6 56%, #f9fbfc 100%);
  --about-side-shade: linear-gradient(270deg, rgba(15, 23, 42, 0.045) 0%, rgba(15, 23, 42, 0) 60%);
  --about-bottom-shade: linear-gradient(to top, rgba(15, 23, 42, 0.045), rgba(15, 23, 42, 0) 62%);
  --about-accent-glow: radial-gradient(900px 560px at 28% 42%, rgba(71, 85, 105, 0.06), rgba(255, 255, 255, 0) 64%);
  --about-sheen: radial-gradient(820px 560px at 86% 16%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 55%);
  --about-art-shadow: rgba(15, 23, 42, 0.16);
  --about-art-glow: rgba(71, 85, 105, 0.14);
  --about-muted: rgba(11, 15, 24, 0.66);
}

.about-card--presence.about-card--light {
  border-color: transparent;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.90) inset,
    0 14px 44px rgba(15, 23, 42, 0.06),
    0 70px 160px rgba(15, 23, 42, 0.08);
}

.about-card--presence .about-card__content h2 {
  color: rgba(11, 15, 24, 0.98);
}

.about-card--presence .about-card__content h3 {
  color: rgba(11, 15, 24, 0.86);
}

.about-card--presence .about-card__muted p {
  font-weight: 500;
  letter-spacing: 0.01em;
}

.about-card--approach {
  min-height: min(68svh, 50rem);
  --about-card-bg:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E"),
    linear-gradient(22deg, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0.16) 46%, rgba(255, 255, 255, 0) 74%),
    radial-gradient(960px 720px at 18% 16%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 62%),
    radial-gradient(840px 600px at 88% 18%, rgba(181, 98, 58, 0.11), rgba(255, 255, 255, 0) 62%),
    radial-gradient(1100px 820px at 86% 78%, rgba(15, 23, 42, 0.032), rgba(15, 23, 42, 0) 62%),
    linear-gradient(135deg, #f8f6f4, #efe8e1 56%, #f7f4f0 100%);
  background-blend-mode: soft-light, soft-light, normal, normal, normal, normal;
  --about-accent-glow: radial-gradient(860px 520px at 86% 22%, rgba(181, 98, 58, 0.05), rgba(255, 255, 255, 0) 66%);
  --about-art-opacity: 0.03;
  --about-art-blur: 1.1px;
  --about-art-glow: rgba(181, 98, 58, 0.10);
}

.about-card--philosophy {
  --about-card-bg:
    radial-gradient(920px 540px at 82% 46%, rgba(201, 162, 39, 0.34), rgba(0, 0, 0, 0) 62%),
    linear-gradient(135deg, #07080b, #0a1018 55%, #050b12 100%);
  --about-accent-glow: radial-gradient(760px 520px at 84% 62%, rgba(201, 162, 39, 0.18), rgba(0, 0, 0, 0) 62%);
  --about-art-glow: rgba(201, 162, 39, 0.26);
  min-height: min(46svh, 34rem);
}

/* Motion */
@keyframes vokshiFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(12px);
  animation: vokshiFadeUp 900ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
