/* =========================================================
   MEYER&SON — Editorial · Organic · Bento Glass
========================================================= */
:root {
  --white: #f6f5f1;
  --white-pure: #ffffff;
  --cream: #ece9e0;
  --grey-1: #d6d4cb;
  --grey-2: #8a8a85;
  --grey-3: #4a4a48;
  --ink: #111111;
  --ink-soft: #1c1c1c;
  --dark: #0f0f10;
  --dark-2: #181819;
  --cyan: #00d4e8;
  --cyan-deep: #00a3b8;
  --orange: #ff6a1f;
  --orange-soft: #ff8a4d;
  --glass-d: rgba(255,255,255,0.05);
  --glass-d-stroke: rgba(255,255,255,0.10);
  --glass-l: rgba(255,255,255,0.55);
  --glass-l-stroke: rgba(0,0,0,0.06);
  --r-xl: 32px;
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}

.serif { font-family: 'Instrument Serif', serif; font-weight: 400; letter-spacing: -.01em; }
.italic { font-style: italic; }

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1440px;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 14px 26px;
  background: rgba(246,245,241,0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(17,17,17,0.06);
  border-radius: 100px;
}

.logo {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.01em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: baseline;
}
.logo .amp {
  color: var(--orange);
  margin: 0 1px;
  font-weight: 700;
}
.logo sup {
  font-size: 9px;
  color: var(--grey-2);
  margin-left: 3px;
  font-weight: 500;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 4px;
}
.nav-links a {
  color: var(--grey-3);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 100px;
  transition: all .25s ease;
}
.nav-links a:hover { color: var(--ink); background: rgba(17,17,17,.04); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-meta {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--grey-2);
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 1100px) { .nav-meta { display: none; } }

.lang-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: rgba(17,17,17,0.04);
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 100px;
  cursor: pointer;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--grey-2);
  overflow: hidden;
  transition: background .25s ease;
}
.lang-toggle:hover { background: rgba(17,17,17,0.07); }
.lang-opt {
  position: relative;
  z-index: 2;
  padding: 2px 6px;
  border-radius: 50px;
  transition: color .3s ease;
}
.lang-opt.active { color: var(--ink); font-weight: 700; }
.lang-sep { position: relative; z-index: 2; color: var(--grey-1); }
.lang-slider {
  position: absolute;
  top: 4px; left: 4px;
  width: calc(50% - 8px);
  height: calc(100% - 8px);
  background: var(--white-pure);
  border-radius: 50px;
  transition: transform .35s cubic-bezier(.6,.2,.1,1);
  z-index: 1;
  box-shadow: 0 2px 8px rgba(17,17,17,.08);
}
.lang-toggle.en .lang-slider { transform: translateX(100%); }
@media (max-width: 540px) {
  .lang-toggle { display: none; }
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all .25s ease;
}
.btn-pill:hover { background: var(--cyan-deep); }
.btn-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,232,.25);
}

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .burger { display: block; }
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  background: var(--white);
  padding: 140px 0 0;
  position: relative;
  overflow: hidden;
}

.hero-circle {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  opacity: .12;
  pointer-events: none;
}

.shape-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.blob-1 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(0,212,232,.45), transparent 70%);
  top: -120px; right: 10%;
  animation: floatBlob 20s ease-in-out infinite;
}
.blob-2 {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(255,106,31,.35), transparent 70%);
  bottom: -100px; left: -100px;
  animation: floatBlob 25s ease-in-out infinite reverse;
}
.blob-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,232,.25), transparent 70%);
  top: 30%; right: -150px;
  animation: floatBlob 22s ease-in-out infinite;
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.08); }
}

.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 30px;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--grey-3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 60px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(17,17,17,0.08);
}
.meta-row { display: inline-flex; align-items: center; gap: 10px; }
.ic-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 3px rgba(255,106,31,.2); }

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(64px, 12vw, 200px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--ink);
  margin-bottom: 70px;
}
.hero-title .serif {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.02em;
}
.hero-title .outline {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
}
.hero-title .hl-orange { color: var(--orange); }
.hero-title .hl-cyan { color: var(--cyan-deep); }
.hero-title .reg {
  font-size: 0.18em;
  color: var(--grey-2);
  font-weight: 500;
  vertical-align: super;
  margin-left: 6px;
  letter-spacing: 0;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
}
.hero-desc {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 560px;
}
.hero-desc .arrow {
  font-size: 22px;
  color: var(--orange);
  line-height: 1;
}
.hero-desc p {
  font-size: 17px;
  color: var(--grey-3);
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 26px;
  background: var(--ink);
  color: var(--white);
  border-radius: 100px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all .3s ease;
}
.btn-dark:hover { background: var(--cyan-deep); transform: translateY(-2px); }
.btn-arrow {
  width: 34px; height: 34px;
  background: var(--orange);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
  transition: transform .3s ease;
}
.btn-arrow svg { width: 14px; height: 14px; }
.btn-dark:hover .btn-arrow { transform: rotate(-45deg); background: var(--cyan); }

.btn-link {
  font-size: 13px;
  color: var(--grey-3);
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color .25s ease;
}
.btn-link:hover { color: var(--orange); }

/* Hero tickers */
.hero-tickers {
  border-top: 1px solid rgba(17,17,17,0.08);
  padding: 26px 0 30px;
  position: relative;
  z-index: 2;
}
.ticker-row {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: center;
}
.ticker-cell {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.ticker-cell b {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 56px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.02em;
}
.ticker-cell span {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--grey-2);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.avatars {
  display: flex;
}
.avatars span {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -10px;
  background: linear-gradient(135deg, var(--cyan), var(--orange));
  padding: 0;
}
.avatars span:nth-child(1) { background: linear-gradient(135deg, var(--cyan), #6ef0ff); margin-left: 0; }
.avatars span:nth-child(2) { background: linear-gradient(135deg, var(--orange), var(--orange-soft)); }
.avatars span:nth-child(3) { background: linear-gradient(135deg, var(--grey-3), var(--ink)); }
.avatars span:nth-child(4) { background: linear-gradient(135deg, var(--cyan-deep), var(--cyan)); }
.ticker-label { margin-left: 14px; }

/* ---------- MARQUEE BAND ---------- */
.marquee-band {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-style: normal;
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.marquee-track .star {
  color: var(--orange);
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- SERVICES (dark) ---------- */
.services {
  background: var(--dark);
  color: var(--white);
  padding: 140px 0 140px;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,212,232,.2), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.section-head {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}
.section-head.dark { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--grey-1);
  margin-bottom: 28px;
}
.eyebrow.dark {
  background: rgba(17,17,17,.04);
  border-color: rgba(17,17,17,.1);
  color: var(--grey-3);
}
.eye-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}
.eyebrow.dark .eye-dot { background: var(--orange); box-shadow: 0 0 6px var(--orange); }

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -.04em;
  margin-bottom: 24px;
}
.section-title .outline-light {
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}
.section-title .hl-cyan { color: var(--cyan); }
.section-title .hl-orange { color: var(--orange); }
.section-sub {
  font-size: 16px;
  color: var(--grey-1);
  max-width: 540px;
  line-height: 1.6;
}

/* Bento */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
  gap: 18px;
}

.bento-card {
  position: relative;
  border-radius: var(--r-xl);
  padding: 32px;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform .4s ease, border-color .4s ease;
  display: flex;
  flex-direction: column;
}
.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,232,.4);
}
.card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.06) 50%, transparent 65%);
  background-size: 200% 100%;
  pointer-events: none;
  animation: shineMove 8s linear infinite;
}
@keyframes shineMove {
  from { background-position: -100% 0; }
  to { background-position: 200% 0; }
}

.bento-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.bnum {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--grey-1);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.bdot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.bdot.cyan { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.bdot.orange { background: var(--orange); box-shadow: 0 0 10px var(--orange); }
.badge-live {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  background: rgba(0,212,232,.15);
  color: var(--cyan);
  border: 1px solid rgba(0,212,232,.3);
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bento-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.02em;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}
.bento-card h3.huge {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
}
.bento-card p {
  font-size: 14px;
  color: var(--grey-1);
  line-height: 1.55;
  position: relative;
  z-index: 2;
}

/* Tall card */
.bento-tall {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.bento-mid {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 30px 0;
}
.big-icon {
  width: 180px; height: 180px;
  position: relative;
}
.ic-blob {
  width: 100%; height: 100%;
  background: conic-gradient(from 90deg at 50% 50%,
    #00d4e8, #5cf0ff, #ff6a1f, #ff8a4d, #00d4e8);
  border-radius: 42% 58% 70% 30% / 45% 30% 70% 55%;
  filter: blur(2px) saturate(140%);
  box-shadow: 0 0 80px rgba(0,212,232,.4);
  animation: blobMorph 10s ease-in-out infinite, spin 30s linear infinite;
}
@keyframes blobMorph {
  0%, 100% { border-radius: 42% 58% 70% 30% / 45% 30% 70% 55%; }
  50%      { border-radius: 60% 40% 30% 70% / 55% 70% 30% 45%; }
}
@keyframes spin { to { transform: rotate(360deg); } }

.bento-bot ul {
  list-style: none;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}
.bento-bot ul li {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--grey-1);
  padding: 8px 0;
  border-top: 1px dashed rgba(255,255,255,.1);
  letter-spacing: .3px;
}

/* Wide featured */
.bento-wide {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
  background: linear-gradient(135deg, rgba(0,212,232,.18), rgba(255,106,31,.1) 60%, rgba(255,255,255,.04));
  border-color: rgba(0,212,232,.25);
  min-height: 380px;
  position: relative;
}
.bento-wide h3.huge { max-width: 70%; }
.bento-wide p { max-width: 60%; margin-top: 16px; }
.tag-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}
.tag-line span {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 6px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}
.featured-deco {
  position: absolute;
  right: -40px; bottom: -40px;
  width: 320px; height: 320px;
  opacity: .8;
  animation: spin 40s linear infinite;
}

/* Recent launches list (inside wide card) */
.recent-launches {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px dashed rgba(255,255,255,.12);
  position: relative;
  z-index: 2;
  max-width: 70%;
}
.rl-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.rl-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--grey-2);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.rl-count {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 1px;
}
.rl-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-decoration: none;
  transition: padding .25s ease, background .25s ease;
}
.rl-item:last-child { border-bottom: 0; }
.rl-item:hover {
  padding-left: 8px;
  background: linear-gradient(90deg, rgba(0,212,232,.06), transparent);
}
.rl-arrow {
  font-size: 14px;
  color: var(--cyan);
  transition: transform .25s ease;
}
.rl-item:hover .rl-arrow {
  transform: rotate(-10deg) translate(2px,-2px);
  color: var(--orange);
}
.rl-name {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -.01em;
}
.rl-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--grey-2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Small cards */
.bento-small {
  grid-column: span 1;
  grid-row: span 1;
  min-height: 240px;
}

/* Stats card */
.bento-stats {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  min-height: 240px;
}
.stat-block { margin-top: auto; }
.big-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 86px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 10px;
}
.big-num span { color: var(--orange); }
.stat-line {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--grey-1);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.bar {
  height: 4px;
  background: rgba(255,255,255,.06);
  border-radius: 50px;
  overflow: hidden;
  margin-top: 12px;
}
.bar-fill {
  width: 84%; height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(0,212,232,.5);
}

/* Sectors card */
.bento-sectors {
  grid-column: 2 / 5;
  grid-row: 3 / 4;
  min-height: 260px;
  padding: 28px;
}

.sectors-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.sectors-head-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 460px;
}
.sectors-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--white);
}
.sectors-title .serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

.sectors-count {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  padding: 8px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
}
.sectors-count .sc-big {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -.02em;
}
.sectors-count .sc-mini {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: var(--grey-2);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  position: relative;
  z-index: 2;
}

.sector-cell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 8px;
  padding: 18px 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  cursor: pointer;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  overflow: hidden;
}
.sector-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,232,.08), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.sector-cell:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(0,212,232,.35);
  transform: translateY(-2px);
}
.sector-cell:hover::before { opacity: 1; }
.sector-cell:nth-child(2):hover { border-color: rgba(255,106,31,.4); }
.sector-cell:nth-child(2)::before { background: linear-gradient(135deg, rgba(255,106,31,.1), transparent 60%); }
.sector-cell:nth-child(3):hover { border-color: rgba(0,212,232,.35); }
.sector-cell:nth-child(4):hover { border-color: rgba(255,106,31,.4); }
.sector-cell:nth-child(4)::before { background: linear-gradient(135deg, rgba(255,106,31,.1), transparent 60%); }

.sc-num {
  grid-row: span 2;
  align-self: start;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--grey-2);
  letter-spacing: 1.2px;
  padding-top: 4px;
}
.sc-info {
  grid-column: 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.sc-name {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--white);
}
.sc-name .serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}
.sc-tag {
  font-family: 'Space Mono', monospace;
  font-size: 9.5px;
  color: var(--grey-2);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}
.sc-arrow {
  grid-row: span 2;
  align-self: start;
  font-size: 14px;
  color: var(--grey-2);
  transition: transform .25s ease, color .25s ease;
  padding-top: 2px;
}
.sector-cell:hover .sc-arrow {
  color: var(--cyan);
  transform: translate(2px, -2px);
}
.sector-cell:nth-child(2):hover .sc-arrow,
.sector-cell:nth-child(4):hover .sc-arrow { color: var(--orange); }

@media (max-width: 900px) {
  .sectors-head { flex-direction: column; align-items: flex-start; }
  .sectors-count { align-self: flex-start; flex-direction: row; align-items: baseline; gap: 8px; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .sector-grid { grid-template-columns: 1fr; }
}

/* ---------- WORK (light) ---------- */
.work {
  background: var(--white);
  color: var(--ink);
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}
.blob-work {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,106,31,.22), transparent 70%);
  top: 20%; left: -200px;
  animation: floatBlob 24s ease-in-out infinite;
}

.work-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.work-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(44px, 6.5vw, 100px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -.04em;
  color: var(--ink);
}
.work-title .serif { font-style: italic; font-weight: 400; }
.work-title .hl-orange { color: var(--orange); }

.head-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-bottom: 8px;
}
.head-right p {
  font-size: 15px;
  color: var(--grey-3);
  line-height: 1.55;
  max-width: 420px;
}
.btn-link.dark {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: gap .25s ease, color .25s ease, border-color .25s ease;
}
.btn-link.dark:hover { color: var(--orange); border-color: var(--orange); }

/* Work bento */
.work-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 320px 320px 380px;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.work-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.work-card:hover { transform: translateY(-6px); }

.work-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s cubic-bezier(.2,.7,.2,1), filter .5s ease;
  filter: saturate(.92);
}
.work-card:hover .work-img {
  transform: scale(1.06);
  filter: saturate(1.1);
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(15,15,16,0) 0%,
    rgba(15,15,16,0.1) 35%,
    rgba(15,15,16,0.75) 100%);
  transition: opacity .4s ease;
}
.work-overlay.strong {
  background: linear-gradient(180deg,
    rgba(15,15,16,0.15) 0%,
    rgba(15,15,16,0.45) 50%,
    rgba(15,15,16,0.85) 100%);
}

.work-meta {
  position: absolute;
  top: 22px; left: 22px; right: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}
.work-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--white);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 50px;
}
.work-year {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--white);
  letter-spacing: 1px;
  opacity: .8;
}

.work-info {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  z-index: 3;
  color: var(--white);
}
.work-info.center {
  text-align: center;
  bottom: 50%;
  transform: translateY(50%);
}
.work-num {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.work-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 10px;
}
.work-info h3 .serif {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-style: italic;
}
.work-info h3.big {
  font-size: clamp(40px, 5.6vw, 80px);
  letter-spacing: -.03em;
}
.work-info p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 14px;
  max-width: 380px;
}
.work-info.center p {
  margin: 0 auto 18px;
}
.work-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--white);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  transition: gap .25s ease, color .25s ease, border-color .25s ease;
}
.work-link:hover {
  gap: 14px;
  color: var(--cyan);
  border-color: var(--cyan);
}

/* Bento positioning */
.work-tall {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.work-wide {
  grid-column: 2 / 5;
  grid-row: 1 / 2;
}
.work-square:nth-of-type(3) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
.work-square:nth-of-type(4) {
  grid-column: 3 / 5;
  grid-row: 2 / 3;
}
.work-cinematic {
  grid-column: 1 / 5;
  grid-row: 3 / 4;
}

/* Categories strip */
.work-cats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 60px;
  padding: 28px 0;
  border-top: 1px solid rgba(17,17,17,.08);
  border-bottom: 1px solid rgba(17,17,17,.08);
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -.01em;
  position: relative;
  z-index: 2;
}
.cat-label {
  font-family: 'Space Mono', monospace;
  font-style: normal;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grey-2);
}
.cat { color: var(--ink); transition: color .25s ease; cursor: default; }
.cat:hover { color: var(--orange); }
.cat-sep { color: var(--cyan-deep); opacity: .6; font-style: normal; }

@media (max-width: 1024px) {
  .work-head { grid-template-columns: 1fr; gap: 30px; }
  .work-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 280px 280px 280px 340px;
  }
  .work-tall { grid-column: 1 / 2; grid-row: 1 / 3; }
  .work-wide { grid-column: 2 / 3; grid-row: 1 / 2; }
  .work-square:nth-of-type(3) { grid-column: 2 / 3; grid-row: 2 / 3; }
  .work-square:nth-of-type(4) { grid-column: 1 / 3; grid-row: 3 / 4; }
  .work-cinematic { grid-column: 1 / 3; grid-row: 4 / 5; }
}
@media (max-width: 640px) {
  .work-bento {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 320px);
  }
  .work-tall, .work-wide, .work-square, .work-cinematic {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .work-cats { font-size: 17px; gap: 10px; }
}

/* ---------- METHOD (light, sober) ---------- */
.method {
  background: var(--white);
  color: var(--ink);
  padding: 60px 0 140px;
  position: relative;
}

.method-head {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}
.method-head .eyebrow { margin-bottom: 28px; }

.method-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(44px, 6.5vw, 100px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -.04em;
  color: var(--ink);
  margin-bottom: 28px;
}
.method-title .serif { font-style: italic; font-weight: 400; }
.method-title .hl-orange { color: var(--orange); }

.method-lead {
  font-size: 17px;
  color: var(--grey-3);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

.method-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(17,17,17,.1);
  border-bottom: 1px solid rgba(17,17,17,.1);
}

.phase {
  padding: 40px 28px 36px;
  border-right: 1px solid rgba(17,17,17,.1);
  position: relative;
  transition: background .3s ease;
}
.phase:last-child { border-right: 0; }
.phase:hover { background: rgba(17,17,17,.015); }

.phase-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 50px;
}
.phase-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 38px;
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -.02em;
}
.phase-dur {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--grey-2);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.phase h3 {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: 12px;
  color: var(--ink);
}

.phase p {
  font-size: 14px;
  color: var(--grey-3);
  line-height: 1.55;
  margin-bottom: 22px;
}

.phase ul {
  list-style: none;
  padding-top: 16px;
  border-top: 1px dashed rgba(17,17,17,.12);
}
.phase ul li {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey-3);
  padding: 7px 0;
  position: relative;
  padding-left: 16px;
}
.phase ul li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--cyan-deep);
  font-weight: 700;
}

/* Method foot */
.method-foot {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.mf-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0;
}
.mf-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--grey-2);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.mf-value {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -.01em;
}

@media (max-width: 1024px) {
  .method-flow { grid-template-columns: repeat(2, 1fr); }
  .phase { border-right: 1px solid rgba(17,17,17,.1); border-bottom: 1px solid rgba(17,17,17,.1); }
  .phase:nth-child(2n) { border-right: 0; }
  .phase:nth-last-child(-n+2) { border-bottom: 0; }
  .method-foot { grid-template-columns: 1fr; gap: 0; }
  .mf-row { border-bottom: 1px solid rgba(17,17,17,.08); }
}
@media (max-width: 640px) {
  .method-flow { grid-template-columns: 1fr; }
  .phase { border-right: 0 !important; }
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility 0s linear .35s;
}
.lightbox.open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity .35s ease;
}

body.lb-locked { overflow: hidden; }

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.78);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}

.lb-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all .25s ease;
  z-index: 10;
}
.lb-close:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--ink);
  transform: rotate(90deg);
}

.lb-container {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1100px;
  max-height: 80vh;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 60px 120px -30px rgba(0,0,0,.5);
  transform: scale(0.96);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.lightbox.open .lb-container {
  transform: scale(1);
}

/* Image (always visible, the "cover" of the book) */
.lb-image {
  flex: 0 0 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
  min-height: 600px;
  position: relative;
  z-index: 2;
  transition: flex-basis .6s cubic-bezier(.2,.7,.2,1);
}
.lb-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 60%, rgba(0,0,0,.15));
  pointer-events: none;
}

/* Panel wrap (the "unfolding" container) */
.lb-panel-wrap {
  flex: 0 0 0%;
  background: var(--white-pure);
  overflow: hidden;
  transition: flex-basis .8s cubic-bezier(.65, 0, .25, 1);
}
.lightbox.open .lb-panel-wrap {
  flex-basis: 50%;
}

.lb-panel {
  width: 550px;
  height: 100%;
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow-y: auto;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity .45s ease .35s, transform .55s cubic-bezier(.2,.7,.2,1) .35s;
}
.lightbox.open .lb-panel {
  opacity: 1;
  transform: translateX(0);
}

.lb-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(17,17,17,.08);
}
.lb-cat {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,106,31,.08);
  border: 1px solid rgba(255,106,31,.2);
  padding: 6px 12px;
  border-radius: 50px;
}
.lb-year {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--grey-2);
}

.lb-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -.025em;
  color: var(--ink);
}
.lb-title .serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

.lb-client-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px dashed rgba(17,17,17,.1);
  border-bottom: 1px dashed rgba(17,17,17,.1);
}
.lb-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--grey-2);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.lb-client-row span:last-child {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -.01em;
}

.lb-desc {
  font-size: 15px;
  color: var(--grey-3);
  line-height: 1.65;
}

.lb-deliv-block {
  margin-top: 4px;
}
.lb-deliv-block .lb-label { display: block; margin-bottom: 12px; }
.lb-deliv {
  list-style: none;
  display: grid;
  gap: 4px;
}
.lb-deliv li {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid rgba(17,17,17,.06);
  position: relative;
  padding-left: 22px;
}
.lb-deliv li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--cyan-deep);
  font-weight: 700;
}

.lb-foot {
  margin-top: auto;
  padding-top: 20px;
}
.lb-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 22px;
  background: var(--ink);
  color: var(--white);
  border-radius: 100px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all .25s ease;
}
.lb-cta:hover {
  background: var(--cyan-deep);
  gap: 18px;
}
.lb-cta-arrow {
  width: 26px;
  height: 26px;
  background: var(--orange);
  color: var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: transform .25s ease;
}
.lb-cta:hover .lb-cta-arrow { transform: rotate(-45deg); }

/* Work card cursor hint */
.work-card {
  cursor: zoom-in;
}

@media (max-width: 900px) {
  .lightbox { padding: 16px; }
  .lb-container {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
  }
  .lb-image {
    flex: 0 0 280px;
    min-height: 280px;
    width: 100%;
  }
  .lb-panel-wrap { flex-basis: 0; transition: flex-basis .6s cubic-bezier(.65,0,.25,1); }
  .lightbox.open .lb-panel-wrap { flex-basis: auto; }
  .lb-panel { width: 100%; padding: 32px 26px; }
  .lb-title { font-size: clamp(32px, 7vw, 44px); }
  .lb-close { top: 14px; right: 14px; }
}

/* ---------- (LEGACY SHOWCASE — unused, kept for reference removal safety) ---------- */
.showcase {
  background: var(--white);
  color: var(--ink);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.showcase-container {
  position: relative;
  z-index: 2;
}
.showcase-head {
  margin-bottom: 70px;
  max-width: 1000px;
}
.showcase-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(44px, 6.5vw, 100px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -.04em;
  color: var(--ink);
}
.showcase-title .serif { font-style: italic; font-weight: 400; }
.showcase-title .hl-orange { color: var(--orange); }

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.show-text .lead {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 24px;
}
.show-text p {
  font-size: 16px;
  color: var(--grey-3);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 480px;
}

.show-list {
  border-top: 1px solid rgba(17,17,17,.1);
}
.show-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(17,17,17,.1);
}
.row-num {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 1px;
}
.show-row b {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.01em;
  display: block;
  margin-bottom: 2px;
}
.show-row em {
  font-family: 'Instrument Serif', serif;
  font-size: 16px;
  color: var(--grey-2);
}

.show-visual {
  position: relative;
  height: 540px;
}
.visual-card {
  position: absolute;
  top: 20px; right: 30px;
  width: 400px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(17,17,17,0.08);
  box-shadow:
    0 40px 80px -30px rgba(17,17,17,.25),
    0 10px 30px -10px rgba(17,17,17,.1);
  z-index: 3;
  transform: rotate(-2deg);
  overflow: hidden;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
}

/* Top bar */
.vc-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
}
.vc-dots { display: flex; gap: 6px; }
.vc-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.vc-dots span:nth-child(1) { background: var(--orange); }
.vc-dots span:nth-child(2) { background: var(--cyan); }
.vc-id {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.2px;
  color: var(--grey-1);
  text-transform: uppercase;
}

.vc-body {
  padding: 22px 22px 24px;
}
.vc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.vc-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--grey-2);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.vc-ver {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--ink);
  background: rgba(17,17,17,.05);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .8px;
}

.vc-mark {
  padding: 22px 0;
  margin-bottom: 6px;
  border-top: 1px dashed rgba(17,17,17,.1);
  border-bottom: 1px dashed rgba(17,17,17,.1);
  text-align: center;
}
.vc-logo {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--ink);
  line-height: 1;
  text-transform: uppercase;
}
.vc-logo .amp { color: var(--orange); }
.vc-logo sup {
  font-size: 11px;
  color: var(--grey-2);
  font-weight: 500;
  margin-left: 3px;
}
.vc-sub {
  margin-top: 8px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--grey-3);
  letter-spacing: -.005em;
}

.vc-block {
  padding: 14px 0;
  border-bottom: 1px dashed rgba(17,17,17,.1);
}
.vc-block:last-of-type { border-bottom: 0; }
.vc-label-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.vc-hex {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: var(--grey-2);
  letter-spacing: .5px;
}

.vc-swatches {
  display: flex;
  gap: 6px;
}
.sw {
  flex: 1;
  height: 26px;
  border-radius: 6px;
}
.sw-ink { background: var(--ink); }
.sw-cream { background: var(--white); border: 1px solid rgba(17,17,17,.08); }
.sw-cyan { background: var(--cyan); }
.sw-orange { background: var(--orange); }

.wave-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 38px;
}
.wave-bars span {
  flex: 1;
  background: var(--ink);
  border-radius: 1.5px;
  opacity: .35;
  transition: opacity .25s ease;
}
.wave-bars span.hi {
  background: var(--cyan);
  opacity: 1;
  box-shadow: 0 0 8px rgba(0,212,232,.5);
}

.vc-foot {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(17,17,17,.08);
}
.vc-foot div { display: flex; flex-direction: column; gap: 3px; }
.vc-foot b {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.005em;
}
.vc-status-cell {
  flex-direction: row !important;
  align-items: center;
  gap: 8px !important;
  background: var(--ink);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 50px;
  align-self: end;
}
.vc-status-cell b { color: var(--white); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.status-dot-lg {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,232,.25);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.visual-blob {
  position: absolute;
  bottom: 30px; left: 0;
  width: 280px; height: 280px;
  background: conic-gradient(from 45deg, #00d4e8, #ff6a1f, #00d4e8);
  border-radius: 58% 42% 70% 30% / 45% 60% 40% 55%;
  filter: blur(2px);
  box-shadow: 0 30px 60px -20px rgba(0,212,232,.4);
  animation: blobMorph 12s ease-in-out infinite, spin 25s linear infinite;
  z-index: 1;
}
.visual-pill {
  position: absolute;
  bottom: 70px; right: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: 100px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 4;
}
.visual-pill .dot-cy {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

/* ---------- CONTACT (dark) ---------- */
.contact {
  background: var(--dark);
  color: var(--white);
  padding: 140px 0 40px;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  bottom: -200px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,106,31,.25), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.contact::after {
  content: '';
  position: absolute;
  top: 100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,232,.2), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.contact-head {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}
.contact-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -.04em;
}
.contact-title .serif { font-style: italic; font-weight: 400; }
.contact-title .hl-cyan { color: var(--cyan); position: relative; }
.contact-title .dot-end { color: var(--orange); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.contact-info-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 18px;
}

.info-card {
  position: relative;
  padding: 28px;
  border-radius: var(--r-xl);
  background: linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.info-card:first-child {
  grid-column: span 2;
  min-height: 260px;
}
.info-card.small { min-height: 150px; }

.info-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--grey-1);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.info-big {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--white);
  text-decoration: none;
  margin-top: auto;
  position: relative;
  z-index: 2;
  transition: color .25s ease;
}
.info-big:hover { color: var(--cyan); }
.info-mid {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--white);
  text-decoration: none;
  margin-top: auto;
  position: relative;
  z-index: 2;
  transition: color .25s ease;
}
.info-mid:hover { color: var(--orange); }

.arrow-ic {
  position: absolute;
  top: 24px; right: 26px;
  font-size: 22px;
  color: var(--orange);
}

.socials {
  grid-column: span 2;
  display: flex;
  gap: 18px;
  padding: 14px 6px 0;
}
.socials a {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--grey-1);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: color .25s ease;
}
.socials a:hover { color: var(--cyan); }

/* Form */
.contact-form {
  position: relative;
  padding: 36px;
  border-radius: var(--r-xl);
  background: linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; z-index: 2; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 2;
}
.contact-form label > span {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--grey-2);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .25s ease, background .25s ease;
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  background: rgba(0,212,232,.04);
}

.select-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--grey-1);
  padding: 9px 14px;
  border-radius: 50px;
  cursor: pointer;
  transition: all .25s ease;
}
.pill:hover { color: var(--white); border-color: rgba(255,255,255,.25); }
.pill.active {
  background: var(--cyan);
  color: var(--ink);
  border-color: var(--cyan);
  font-weight: 500;
}

.btn-cta {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 14px 26px;
  background: var(--white);
  color: var(--ink);
  border: 0;
  border-radius: 100px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s ease;
  position: relative;
  z-index: 2;
}
.btn-cta:hover { background: var(--cyan); }
.btn-cta:hover .btn-arrow { transform: rotate(-45deg); }

.form-success,
.form-error {
  display: none;
  text-align: center;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  padding: 12px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}
.form-success {
  color: var(--cyan);
  border: 1px solid rgba(0,212,232,.3);
  background: rgba(0,212,232,.06);
}
.form-error {
  color: var(--orange);
  border: 1px solid rgba(255,106,31,.3);
  background: rgba(255,106,31,.06);
}
.form-success.show,
.form-error.show { display: block; }
.contact-form button[type="submit"]:disabled {
  opacity: .6;
  cursor: wait;
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 0 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
  gap: 18px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--grey-1);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}
.footer-logo {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--white);
}
.footer-logo .amp { color: var(--orange); }
.footer-logo sup { font-size: 9px; color: var(--grey-2); margin-left: 3px; font-weight: 500; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--grey-1); text-decoration: none; }
.footer-links a:hover { color: var(--cyan); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .recent-launches { max-width: 100%; }
  .bento-wide h3.huge { max-width: 100%; }
  .bento-wide p { max-width: 100%; }

  .hero-title { font-size: clamp(56px, 11vw, 130px); }
  .hero-bottom { grid-template-columns: 1fr; gap: 30px; }
  .hero-cta { align-items: flex-start; }
  .ticker-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-tall { grid-column: 1 / 2; grid-row: span 1; }
  .bento-wide { grid-column: 1 / 3; grid-row: span 1; }
  .bento-small { grid-column: span 1; grid-row: span 1; }
  .bento-stats { grid-column: 1 / 2; grid-row: auto; }
  .bento-sectors { grid-column: 1 / 3; grid-row: auto; }

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

  .marquee-track { font-size: 32px; }
}

@media (max-width: 640px) {
  .hero { padding: 110px 0 0; }
  .hero-title { font-size: clamp(44px, 14vw, 90px); }
  .ticker-cell b { font-size: 40px; }
  .marquee-track { font-size: 26px; gap: 20px; }
  .bento { grid-template-columns: 1fr; }
  .bento-wide, .bento-tall, .bento-small, .bento-stats, .bento-sectors {
    grid-column: 1 / -1;
  }
  .sector-list { grid-template-columns: repeat(2, 1fr); }
  .contact-info-block { grid-template-columns: 1fr; }
  .info-card:first-child { grid-column: span 1; }
  .socials { grid-column: span 1; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .visual-card { width: 280px; right: 0; }
  .footer { flex-direction: column; align-items: flex-start; }
}
