/* ============================================================
   WhiteMirror Technologies — Design System
   whitemirrortechnologies.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Instrument+Serif:ital@0,1&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg: #06060A;
  --surface: #0E0E14;
  --surface-2: #161620;
  --text: #F5F5F7;
  --muted: #86868B;
  --faint: #5E5E66;
  --accent: #6B5BFF;
  --accent-soft: rgba(107, 91, 255, .14);
  --accent-glow: rgba(107, 91, 255, .22);
  --border: rgba(255, 255, 255, .07);
  --border-s: rgba(255, 255, 255, .14);
  --white: #FFFFFF;
  --off-white: #FAF9F7;
  --ink: #08080A;
  --ink-m: #6E6E73;
  --ink-f: #A1A1A6;
  --v-ai: #25D366;
  --v-ai-soft: rgba(37, 211, 102, .14);
  --max-w: 1160px;
  --px: clamp(20px, 5vw, 72px);
  --r: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 100px;
  --t: .22s ease;
  --t-slow: .45s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

address {
  font-style: normal;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ── Accessibility ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -999px;
  left: 0;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 var(--r) 0;
  transition: top var(--t);
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ── Focus ──────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border-s);
  border-radius: 2px;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.container-wide {
  max-width: 1360px;
  margin: 0 auto;
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav.scrolled {
  background: rgba(6, 6, 10, .92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--px);
  max-width: 1400px;
  margin: 0 auto;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-mark {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}

.nav-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-wordmark {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -.025em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 13.5px;
  color: var(--muted);
  transition: color var(--t);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
}

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: var(--r-pill);
  border: 0.5px solid rgba(255, 255, 255, .22);
  color: var(--text);
  transition: background var(--t), border-color var(--t);
  flex-shrink: 0;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .35);
}

/* mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px 2px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 1px;
  transition: all var(--t);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 10, .98);
  backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: var(--px);
  border-top: 0.5px solid var(--border);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--text);
  transition: color var(--t);
}

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

.nav-mobile-close {
  position: absolute;
  top: 22px;
  right: var(--px);
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  padding-top: 80px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      var(--bg) 32%,
      rgba(6, 6, 10, .75) 55%,
      rgba(6, 6, 10, .35) 75%,
      transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--px);
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10.5px;
  letter-spacing: .32em;
  color: var(--faint);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 30px;
}

.eyebrow-dash {
  width: 20px;
  height: 0.5px;
  background: var(--faint);
  flex-shrink: 0;
}

.eyebrow-dark {
  color: var(--ink-f);
}

.eyebrow-dark .eyebrow-dash {
  background: var(--ink-f);
}

.hero-h1 {
  font-size: clamp(54px, 9vw, 88px);
  line-height: 1.0;
  letter-spacing: -.06em;
  font-weight: 800;
  color: var(--text);
}

.hero-h1 em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
  letter-spacing: -.04em;
}

.hero-sub {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.68;
  margin-top: 22px;
  max-width: 380px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: var(--px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--faint);
}

.hero-scroll-line {
  width: 32px;
  height: 0.5px;
  background: var(--faint);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
}

.btn-primary:hover {
  background: rgba(245, 245, 247, .88);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -4px rgba(107, 91, 255, .28);
}

.btn-ghost {
  border: 0.5px solid rgba(255, 255, 255, .22);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .38);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: #141420;
  transform: translateY(-1px);
}

.btn-dark-outline {
  border: 0.5px solid rgba(8, 8, 10, .2);
  color: var(--ink);
  background: transparent;
}

.btn-dark-outline:hover {
  background: rgba(8, 8, 10, .06);
}

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

.btn-accent:hover {
  background: #7B6BFF;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -4px var(--accent-glow);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--bg);
  padding: calc(100px + 60px) var(--px) 72px;
}

.page-h1 {
  font-size: clamp(46px, 7.5vw, 80px);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 800;
  color: var(--text);
  max-width: 680px;
}

.page-h1 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
}

.page-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.67;
  margin-top: 18px;
  max-width: 500px;
}


/* ── Philosophy / White Section ─────────────────────────── */
.philosophy {
  background: var(--white);
  padding: 88px var(--px);
}

.philosophy-h2 {
  font-size: clamp(36px, 5.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 700;
  color: var(--ink);
  max-width: 740px;
}

.philosophy-h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
  color: var(--ink);
}

.philosophy-rule {
  height: 0.5px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, .12), transparent);
  margin: 44px 0;
}

.philosophy-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-m);
  max-width: 640px;
}

.philosophy-body p+p {
  margin-top: 16px;
}

/* ── Numbers strip ─────────────────────────────────────── */
.numbers {
  background: var(--white);
  padding: 0 var(--px) 80px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid rgba(0, 0, 0, .1);
}

.number-item {
  padding: 32px 0;
  border-right: 0.5px solid rgba(0, 0, 0, .08);
}

.number-item:last-child {
  border-right: none;
}

.number-val {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.05em;
  color: var(--ink);
  line-height: 1;
  display: block;
}

.number-val em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: .95em;
}

.number-label {
  font-size: 13px;
  color: var(--ink-f);
  margin-top: 6px;
  display: block;
}

/* ── Principles ──────────────────────────────────────────── */
.principles {
  background: var(--bg);
  padding: 88px var(--px);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 20px;
}

.section-h {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.06;
  letter-spacing: -.04em;
  font-weight: 700;
  color: var(--text);
}

.section-h em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
}

.section-h-dark {
  color: var(--ink);
}

.section-note {
  font-size: 13px;
  color: var(--faint);
  max-width: 180px;
  text-align: right;
  line-height: 1.6;
}

.section-note-dark {
  color: var(--ink-f);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--border);
}

.principle {
  padding: 36px 32px 36px 0;
  border-right: 0.5px solid var(--border);
}

.principle:last-child {
  border-right: none;
}

.principle+.principle {
  padding-left: 32px;
}

.principle-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--faint);
  display: block;
  margin-bottom: 20px;
}

.principle-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.025em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.principle-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Team ─────────────────────────────────────────────────── */
.team {
  background: var(--bg);
  padding-bottom: 88px;
  border-top: 0.5px solid var(--border);
}

.team-header-wrap {
  padding: 52px var(--px) 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: 56% 44%;
  border-top: 0.5px solid var(--border);
}

.team-main {
  padding: 44px 48px;
  border-right: 0.5px solid var(--border);
  position: relative;
  overflow: hidden;
}

.team-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(ellipse at 40% -20%, var(--accent), transparent 65%);
  opacity: .10;
  pointer-events: none;
}

.team-right {
  display: flex;
  flex-direction: column;
}

.team-sm {
  flex: 1;
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
}

.team-sm::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 130px;
  background: radial-gradient(ellipse at 50% -20%, var(--tc, #fff), transparent 65%);
  opacity: .10;
  pointer-events: none;
}

.team-sm+.team-sm {
  border-top: 0.5px solid var(--border);
}

.team-idx {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--faint);
  display: block;
  margin-bottom: 22px;
}

.team-av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
}

.team-av-sm {
  width: 44px;
  height: 44px;
  font-size: 13px;
}

.team-name {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.055em;
  color: var(--text);
  line-height: 1.0;
}

.team-name-sm {
  font-size: 25px;
}

.team-suf {
  color: var(--accent);
}

.team-roles {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.team-role {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: var(--r-pill);
  border: 0.5px solid rgba(255, 255, 255, .13);
  color: var(--muted);
}

.team-quote {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.62;
  margin-top: 26px;
  max-width: 380px;
}

.team-quote-sm {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.58;
  margin-top: 14px;
}

.team-focus {
  font-size: 12px;
  color: var(--faint);
  margin-top: 14px;
}

/* ── CTA Band ─────────────────────────────────────────────── */
.cta-band {
  padding: 88px var(--px);
  text-align: center;
}

.cta-band-white {
  background: var(--white);
}

.cta-band-dark {
  background: var(--bg);
  border-top: 0.5px solid var(--border);
}

.cta-h {
  font-size: clamp(34px, 5.5vw, 58px);
  line-height: 1.04;
  letter-spacing: -.04em;
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto;
}

.cta-h em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
}

.cta-h-dark {
  color: var(--ink);
}

.cta-h-light {
  color: var(--text);
}

.cta-sub {
  font-size: 16px;
  line-height: 1.65;
  max-width: 440px;
  margin: 16px auto 0;
}

.cta-sub-dark {
  color: var(--ink-m);
}

.cta-sub-light {
  color: var(--muted);
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ── Product Page ─────────────────────────────────────────── */
.product-section {
  padding: 0 var(--px) 88px;
}

.product-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.product-header {
  padding: 52px;
}

.product-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  border: 0.5px solid rgba(37, 211, 102, .36);
  background: rgba(37, 211, 102, .07);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--v-ai);
  margin-bottom: 28px;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--v-ai);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(.85)
  }
}

.product-name {
  font-size: clamp(56px, 9vw, 88px);
  font-weight: 800;
  letter-spacing: -.06em;
  color: var(--text);
  line-height: .95;
  margin-bottom: 14px;
}

.product-name em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.05em;
}

.product-tagline {
  font-size: 19px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -.015em;
}

.product-desc {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.72;
  margin-top: 20px;
  max-width: 580px;
}

.product-cta {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid var(--border);
}

.prod-feat {
  padding: 36px;
  border-right: 0.5px solid var(--border);
  position: relative;
}

.prod-feat:last-child {
  border-right: none;
}

.prod-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 18px;
}

.prod-feat-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--faint);
  display: block;
  margin-bottom: 14px;
}

.prod-feat-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.prod-feat-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.68;
}

.product-contrast {
  background: var(--surface-2);
  border-top: 0.5px solid var(--border);
  padding: 44px 52px;
}

.contrast-label {
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--faint);
  margin-bottom: 24px;
  display: block;
}

.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contrast-col {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
}

.contrast-col.col-bad {
  border-color: rgba(255, 60, 60, .2);
}

.contrast-col.col-good {
  border-color: rgba(37, 211, 102, .25);
}

.contrast-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.contrast-tag.bad {
  color: #FF6B6B;
}

.contrast-tag.good {
  color: var(--v-ai);
}

.contrast-msg {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 15px;
}

.what-not {
  padding: 36px 52px;
  border-top: 0.5px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(255, 255, 255, .018);
}

.what-not-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}

.what-not-items {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.what-not-item {
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
}

.what-not-item::before {
  content: '×';
  color: var(--faint);
  font-size: 14px;
}

.coming-section {
  padding: 0 var(--px) 88px;
}

.coming-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.coming-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t), transform var(--t);
}

.coming-card:hover {
  border-color: var(--border-s);
  transform: translateY(-2px);
}

.coming-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: radial-gradient(ellipse at 50% -30%, var(--c-glow, var(--accent)), transparent 70%);
  opacity: .10;
  pointer-events: none;
}

.coming-lbl {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--faint);
  margin-bottom: 14px;
  display: block;
}

.coming-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--text);
}

.coming-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 10px;
}

.coming-badge {
  display: inline-block;
  margin-top: 18px;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  border: 0.5px solid rgba(255, 255, 255, .16);
  color: var(--faint);
}

/* ── Blog ─────────────────────────────────────────────────── */
.blog-section {
  padding: 0 var(--px) 88px;
}

.blog-featured {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  margin-bottom: 20px;
  transition: border-color var(--t);
}

.blog-featured:hover {
  border-color: var(--border-s);
}

.blog-featured-thumb {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.thumb-art {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-featured-body {
  padding: 44px;
}

.blog-featured-tag {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

.blog-featured-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -.025em;
}

.blog-featured-excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
  margin-top: 14px;
}

.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 0.5px solid var(--border);
}

.blog-meta-author {
  font-size: 12.5px;
  color: var(--faint);
}

.blog-meta-date {
  font-size: 12.5px;
  color: var(--faint);
  margin-left: auto;
}

.blog-meta-read {
  font-size: 12.5px;
  color: var(--faint);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.blog-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t), transform var(--t);
}

.blog-card:hover {
  border-color: var(--border-s);
  transform: translateY(-2px);
}

.blog-card-thumb {
  height: 150px;
  position: relative;
  overflow: hidden;
}

.blog-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-tag {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.blog-card-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.38;
  letter-spacing: -.015em;
  margin-bottom: 10px;
}

.blog-card-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 0.5px solid var(--border);
}

.blog-card-author {
  font-size: 11.5px;
  color: var(--faint);
}

.blog-card-date {
  font-size: 11.5px;
  color: var(--faint);
}

/* ── About Page ──────────────────────────────────────────── */
.story-section {
  background: var(--white);
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  padding: 80px var(--px);
}

.story-h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 28px;
}

.story-h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
}

.story-body p {
  font-size: 15.5px;
  color: var(--ink-m);
  line-height: 1.78;
  margin-bottom: 18px;
}

.story-body p:last-child {
  margin-bottom: 0;
}

.values-section {
  background: var(--off-white);
  padding: 80px var(--px);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.value-card {
  background: var(--white);
  border: 0.5px solid rgba(0, 0, 0, .08);
  border-radius: var(--r-lg);
  padding: 32px;
}

.value-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--ink-f);
  display: block;
  margin-bottom: 14px;
}

.value-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.025em;
  margin-bottom: 10px;
}

.value-desc {
  font-size: 14px;
  color: var(--ink-m);
  line-height: 1.68;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-section {
  padding: 0 var(--px) 88px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-form-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.025em;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--surface);
  border: 0.5px solid var(--border-s);
  border-radius: var(--r);
  color: var(--text);
  font-size: 14px;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--accent);
  background: var(--surface-2);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-control::placeholder {
  color: var(--faint);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

select.form-control option {
  background: var(--surface);
}

.form-hint {
  font-size: 12px;
  color: var(--faint);
  margin-top: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.025em;
  margin-bottom: 28px;
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-info-item h4 {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

.contact-info-item p,
.contact-info-item address,
.contact-info-item a {
  font-size: 14px;
  color: var(--faint);
  line-height: 1.7;
  display: block;
}

.contact-info-item a:hover {
  color: var(--text);
}

.map-embed {
  height: 200px;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--faint);
  margin-top: 28px;
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--r-md);
}

.faq-section {
  padding: 0 var(--px) 88px;
}

.faq-inner {
  max-width: 740px;
  margin-top: 44px;
}

.faq-item {
  border-bottom: 0.5px solid var(--border);
  padding: 22px 0;
  cursor: pointer;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.faq-toggle {
  font-size: 22px;
  color: var(--faint);
  transition: transform var(--t), color var(--t);
  line-height: 1;
  flex-shrink: 0;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding-top: 16px;
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 0.5px solid var(--border);
  padding: 60px var(--px) 28px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
  gap: 44px;
  margin-bottom: 52px;
}

.footer-brand {
  max-width: 240px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}

.footer-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(140deg, #10082E, var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}

.footer-wordmark {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.footer-desc {
  font-size: 13px;
  color: var(--faint);
  line-height: 1.68;
}

.footer-col h4 {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--faint);
  transition: color var(--t);
}

.footer-col ul li a:hover {
  color: var(--text);
}

.footer-nap p {
  font-size: 13px;
  color: var(--faint);
  line-height: 1.85;
}

.footer-nap a {
  transition: color var(--t);
}

.footer-nap a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 0.5px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: var(--faint);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 12px;
  color: var(--faint);
  transition: color var(--t);
}

.footer-legal a:hover {
  color: var(--text);
}

/* ── 404 ─────────────────────────────────────────────────── */
.notfound {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--px);
}

.notfound-inner {
  max-width: 520px;
}

.notfound-num {
  font-size: clamp(88px, 16vw, 152px);
  font-weight: 800;
  letter-spacing: -.08em;
  color: var(--surface-2);
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
}

.notfound-num span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: .22em;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--faint);
  white-space: nowrap;
}

.notfound-h {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -.035em;
  color: var(--text);
  margin-bottom: 14px;
}

.notfound-h em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
}

.notfound-p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.65;
}

/* ── Sitemap page ─────────────────────────────────────────── */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-top: 52px;
}

.sitemap-section h3 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -.01em;
}

.sitemap-section ul li {
  margin-bottom: 9px;
}

.sitemap-section ul li a {
  font-size: 13px;
  color: var(--muted);
  transition: color var(--t);
}

.sitemap-section ul li a:hover {
  color: var(--text);
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.anim.visible {
  opacity: 1;
  transform: none;
}

.anim-d1 {
  transition-delay: .1s;
}

.anim-d2 {
  transition-delay: .2s;
}

.anim-d3 {
  transition-delay: .3s;
}

.anim-d4 {
  transition-delay: .4s;
}

@media (prefers-reduced-motion: reduce) {

  .anim,
  .anim.visible {
    transition: none;
    opacity: 1;
    transform: none;
  }

  * {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ── Utilities ───────────────────────────────────────────── */
.text-center {
  text-align: center;
}

.text-accent {
  color: var(--accent);
}

.text-muted {
  color: var(--muted);
}

.mt-xs {
  margin-top: 8px;
}

.mt-sm {
  margin-top: 16px;
}

.mt-md {
  margin-top: 28px;
}

.mt-lg {
  margin-top: 48px;
}

.mb-md {
  margin-bottom: 28px;
}

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

.gap-sm {
  gap: 12px;
}

.flex-wrap {
  flex-wrap: wrap;
}

.border-top-dark {
  border-top: 0.5px solid var(--border);
}

.surface-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--r-lg);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-fade {
    background: linear-gradient(180deg,
        rgba(6, 6, 10, .85) 0%,
        rgba(6, 6, 10, .6) 50%,
        rgba(6, 6, 10, .88) 100%);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-h1 {
    font-size: clamp(44px, 11vw, 68px);
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .principle {
    border-right: none;
    border-bottom: 0.5px solid var(--border);
    padding: 28px 0;
  }

  .principle:last-child {
    border-bottom: none;
  }

  .principle+.principle {
    padding-left: 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-main {
    border-right: none;
    border-bottom: 0.5px solid var(--border);
  }

  .team-sm {
    border-left: none;
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .number-item:nth-child(2) {
    border-right: none;
  }

  .number-item:nth-child(3) {
    border-right: 0.5px solid rgba(0, 0, 0, .08);
  }

  .number-item:last-child {
    border-right: none;
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 60px var(--px);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .product-features {
    grid-template-columns: 1fr 1fr;
  }

  .prod-feat:nth-child(2) {
    border-right: none;
  }

  .prod-feat:last-child {
    border-top: 0.5px solid var(--border);
    border-right: none;
  }

  .product-contrast,
  .product-header,
  .what-not {
    padding: 36px;
  }

  .contrast-grid {
    grid-template-columns: 1fr;
  }

  .coming-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .sitemap-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-note {
    display: none;
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .product-features {
    grid-template-columns: 1fr;
  }

  .prod-feat {
    border-right: none;
    border-bottom: 0.5px solid var(--border);
  }

  .prod-feat:last-child {
    border-bottom: none;
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .what-not {
    grid-template-columns: 1fr;
  }
}

/* FORCE BLACK BACKGROUND FOR FOUNDERS SECTION */

.team {
  background: #050509 !important;
}

.founders-section {
  background: #050509 !important;
  color: #ffffff !important;
}

.team-heading h2 {
  color: #ffffff !important;
}

.founder-block {
  background: #101016 !important;
  border: 0.5px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45) !important;
}

.founder-content p:last-child {
  color: #bebaca !important;
}

.role {
  color: #a7a3b8 !important;
}

/* FINAL founders layout: 3 cards side by side, image top, text below */

.founders-section {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 60px 24px 90px !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
}

.founders-section .team-heading {
  grid-column: 1 / -1 !important;
  text-align: center !important;
  margin-bottom: 28px !important;
}

.founder-block,
.founder-block.reverse {
  width: 100% !important;
  max-width: none !important;
  min-height: 520px !important;
  margin: 0 !important;
  padding: 34px 28px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 26px !important;

  text-align: center !important;
  grid-template-columns: none !important;
}

.reverse .founder-photo,
.reverse .founder-content {
  order: initial !important;
}

.founder-photo {
  width: 210px !important;
  height: 210px !important;
  margin: 0 auto !important;
  flex-shrink: 0 !important;
}

.founder-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.founder-content {
  width: 100% !important;
  max-width: 280px !important;
  text-align: center !important;
}

.number {
  display: block !important;
  margin-bottom: 12px !important;
}

.founder-content h3 {
  font-size: 28px !important;
  line-height: 1.12 !important;
  margin-bottom: 10px !important;
}

.role {
  margin-bottom: 16px !important;
}

.founder-content p:last-child {
  max-width: 260px !important;
  margin: 0 auto !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

/* Tablet */
@media (max-width: 1000px) {
  .founders-section {
    grid-template-columns: 1fr !important;
    max-width: 520px !important;
  }

  .founder-block,
  .founder-block.reverse {
    min-height: auto !important;
  }
}

/* Mobile */
@media (max-width: 650px) {
  .founders-section {
    padding: 45px 16px 70px !important;
  }

  .founder-photo {
    width: 180px !important;
    height: 180px !important;
  }

  .founder-content h3 {
    font-size: 24px !important;
  }
}

.founders-section {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
}

.contact-popup {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 10, 0.78);
  backdrop-filter: blur(18px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 9999;
}

.contact-popup.active {
  display: flex;
}

.contact-popup-box {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  color: #08080a;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  animation: popupUp 0.35s ease;
}

.contact-popup-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 28px;
  color: #777;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.popup-label {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6b5bff;
}

.contact-popup-box h2 {
  margin: 0 0 24px;
  font-size: 30px;
  line-height: 1.15;
  color: #08080a;
}

.popup-form {
  display: grid;
  gap: 14px;
}

.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(8, 8, 10, 0.14);
  border-radius: 12px;
  font-size: 14px;
  outline: none;
}

.popup-form textarea {
  min-height: 120px;
  resize: vertical;
}

.popup-form input:focus,
.popup-form textarea:focus {
  border-color: #6b5bff;
}

.popup-submit {
  margin-top: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 0;
  background: #08080a;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

@keyframes popupUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contact-popup {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 10, 0.78);
  backdrop-filter: blur(18px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 9999;
}

.contact-popup.active {
  display: flex;
}

.contact-popup-box {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  color: #08080a;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.contact-popup-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 28px;
  color: #777;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.popup-label {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6b5bff;
}

.contact-popup-box h2 {
  margin: 0 0 24px;
  font-size: 30px;
  color: #08080a;
}

.popup-form {
  display: grid;
  gap: 14px;
}

.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(8, 8, 10, 0.14);
  border-radius: 12px;
  font-size: 14px;
}

.popup-form textarea {
  min-height: 120px;
}

.popup-submit {
  padding: 14px 20px;
  border-radius: 999px;
  border: 0;
  background: #08080a;
  color: #ffffff;
  font-weight: 700;
}