/* ═══════════════════════════════════════
   ALBA COLLECTIVE — Complete Design System
   Umber · Bold · Editorial
═══════════════════════════════════════ */

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

:root {
  --black:      #09090f;
  --black-soft: #0f0f18;
  --off-white:  #f2f0f5;
  --cream:      #f4f2f8;
  --cream-dark: #ddd9e8;
  --pink:       #D63A8F;
  --pink-light: #E85AA8;
  --pink-dim:   rgba(214,58,143,0.18);
  --pink-glow:  rgba(214,58,143,0.08);
  --ash:        #6e6a7a;
  --ash-light:  #9a96aa;
  --white:      #ffffff;

  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Space Grotesk', system-ui, sans-serif;
  --body:   'Inter', system-ui, sans-serif;

  --max-w: 1280px;
  --nav-h: 68px;
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body);
  background: var(--black);
  color: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
em { font-style: italic; color: var(--pink-light); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--pink); }

/* ── Type globals ── */
h1,h2,h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; }
p { font-size: 1rem; line-height: 1.75; color: var(--ash-light); }

.sec-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
}
.sec-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--pink);
  flex-shrink: 0;
}
.sec-label.light { color: rgba(242,240,245,0.35); }
.sec-label.light::before { background: var(--pink-light); }

/* ── Reveal — FAST & dramatic ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
[data-reveal].visible { opacity: 1; transform: none; }

/* Clip reveal (wipe from left) */
[data-clip] {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.7s var(--ease-out);
}
[data-clip].clip-visible { clip-path: inset(0 0 0 0); }

/* Slide from left / right */
[data-slide-left] {
  opacity: 0; transform: translateX(-80px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
[data-slide-left].slide-visible { opacity: 1; transform: none; }
[data-slide-right] {
  opacity: 0; transform: translateX(80px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
[data-slide-right].slide-visible { opacity: 1; transform: none; }

/* Scale pop */
[data-scale] {
  opacity: 0; transform: scale(0.85);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
[data-scale].scale-visible { opacity: 1; transform: none; }

/* Split text chars */
[data-split-text] .split-char {
  display: inline-block;
  opacity: 0; transform: translateY(30px) rotate(3deg);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
[data-split-text].split-visible .split-char {
  opacity: 1; transform: none;
}

/* Nav auto-hide */
.nav--hidden { transform: translateY(-100%); }
.nav { transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.35s var(--ease); }

/* ── Marquee ── */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 0;
  background: var(--black-soft);
}
.marquee__track {
  display: inline-flex;
  animation: marqueeScroll 28s linear infinite;
  gap: 0;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  padding: 0 3rem;
  white-space: nowrap;
}
.marquee__item span {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  color: rgba(242,240,245,0.06);
  font-style: italic;
  letter-spacing: -0.02em;
}
.marquee__item .mq-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0.4;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Big Statement Text ── */
.big-statement {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7.5vw, 7.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--off-white);
}
.big-statement em {
  color: var(--pink);
  font-style: italic;
}
.big-statement--outline {
  -webkit-text-stroke: 1.5px rgba(242,240,245,0.15);
  color: transparent;
}

/* ── Animated gradient orb ── */
.gradient-orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(214,58,143,0.12) 0%, transparent 70%);
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -20px) scale(1.05); }
  66%      { transform: translate(-20px, 15px) scale(0.95); }
}

/* ═══════════════════════════════════════
   CURSOR
═══════════════════════════════════════ */
.cursor { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; mix-blend-mode: exclusion; }
.cursor__dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--off-white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease);
}
.cursor__ring {
  position: absolute;
  width: 36px; height: 36px;
  border: 1px solid rgba(242,240,245,0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), transform 0.12s var(--ease);
}
.cursor--hover .cursor__ring { width: 56px; height: 56px; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 800;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,9,7,0.88);
  backdrop-filter: blur(16px);
  border-color: rgba(255,255,255,0.05);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 3rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-svg {
  height: 36px;
  width: auto;
  display: block;
}
.nav__center { display: flex; gap: 2.5rem; }
.nav__link {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ash-light);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--off-white); }
.nav__apply {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--off-white);
  border: 1px solid rgba(242,240,245,0.2);
  padding: 9px 22px;
  border-radius: 2px;
  display: flex; align-items: center; gap: 8px;
  transition: all 0.25s var(--ease);
}
.nav__apply:hover { background: var(--pink); border-color: var(--pink); }
.nav__apply-arrow { transition: transform 0.2s; }
.nav__apply:hover .nav__apply-arrow { transform: translateX(4px); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; }
.nav__burger span { display: block; width: 22px; height: 1px; background: var(--off-white); }

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 799;
  background: var(--black);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu__close {
  position: absolute; top: 22px; right: 24px;
  background: none; border: none; color: var(--ash); font-size: 1.1rem; cursor: none;
}
.mobile-menu__links { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }
.mm-link {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--off-white);
  transition: color 0.2s;
}
.mm-link:hover { color: var(--pink-light); }
.mm-link--cta {
  font-family: var(--sans); font-size: 0.9rem;
  border: 1px solid var(--pink); color: var(--pink-light);
  padding: 12px 28px; border-radius: 2px; margin-top: 1rem;
}
.mobile-menu__meta {
  position: absolute; bottom: 24px;
  display: flex; gap: 2rem;
  font-family: var(--sans); font-size: 0.65rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ash);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: var(--black);
}
.hero__sculpture {
  position: absolute;
  right: -5%;
  top: -5%;
  width: 55%;
  max-width: 780px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: sculptIn 1.6s 0.3s var(--ease-out) forwards;
}
.hero__sculpture img { width: 100%; filter: brightness(0.9); }
@keyframes sculptIn {
  from { opacity: 0; transform: translateX(60px) scale(1.05); }
  to   { opacity: 1; transform: none; }
}

.hero__noise {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.045; mix-blend-mode: overlay;
}

.hero__content {
  position: relative; z-index: 3;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  padding: calc(var(--nav-h) + 5rem) 3rem 3rem;
  display: flex; flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero__eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--sans); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(242,240,245,0.3);
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.8s var(--ease-out) forwards;
}
.tag-sep { opacity: 0.3; }

.hero__h1 {
  font-size: clamp(3.5rem, 7.5vw, 7rem);
  line-height: 1.0;
  margin-bottom: 2.5rem;
  max-width: 820px;
}
.h1-line {
  display: block;
  opacity: 0; transform: translateY(50px);
  animation: lineUp 0.9s var(--ease-out) forwards;
}
.h1-line:nth-child(1) { animation-delay: 0.4s; }
.h1-line:nth-child(2) { animation-delay: 0.52s; color: rgba(242,240,245,0.35); }
.h1-line:nth-child(3) { animation-delay: 0.64s; }
.h1-line:nth-child(4) { animation-delay: 0.76s; color: var(--pink-light); }
.h1-line:nth-child(5) { animation-delay: 0.88s; }
.h1-line--italic { font-style: italic; }

@keyframes lineUp {
  to { opacity: 1; transform: none; }
}
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

.hero__body {
  max-width: 500px; margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s 1.0s var(--ease-out) forwards;
}
.hero__body p { font-size: 1.02rem; color: rgba(242,240,245,0.5); line-height: 1.7; }

.hero__selective {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-family: var(--sans);
  color: rgba(242,240,245,0.3); font-style: italic;
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s 1.1s var(--ease-out) forwards;
}
.hero__selective svg { color: var(--pink); flex-shrink: 0; }

.hero__ctas {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 1.2s var(--ease-out) forwards;
}
.cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 0.875rem; font-weight: 500;
  background: var(--pink); color: var(--off-white);
  padding: 16px 32px; border-radius: 2px;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.02em;
}
.cta-primary:hover { background: var(--pink-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(214,58,143,0.35); }
.cta-ghost {
  font-family: var(--sans); font-size: 0.875rem; font-weight: 400;
  color: rgba(242,240,245,0.45); letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(242,240,245,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.cta-ghost:hover { color: var(--off-white); border-color: var(--off-white); }

.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 3rem;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 3; opacity: 0; animation: fadeUp 0.8s 1.5s var(--ease-out) forwards;
}
.hero__scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--pink), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(0); transform-origin: top; }
  45%     { transform: scaleY(1); transform-origin: top; }
  55%     { transform: scaleY(1); transform-origin: bottom; }
}
.hero__scroll span {
  font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(242,240,245,0.2);
}

.hero__stats {
  position: relative; z-index: 3;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  padding: 2rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 3rem;
  opacity: 0; animation: fadeUp 0.8s 1.3s var(--ease-out) forwards;
}
.hero__stat { display: flex; flex-direction: column; gap: 4px; }
.stat-val { font-family: var(--sans); font-size: 0.9rem; font-weight: 500; color: var(--off-white); }
.stat-label { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ash); }
.hero__stat-sep { width: 1px; height: 32px; background: rgba(255,255,255,0.08); }

/* ═══════════════════════════════════════
   MANIFESTO
═══════════════════════════════════════ */
.manifesto {
  background: var(--black-soft);
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

/* Editorial row layout */
.mf-row {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
}
.mf-row--1 {
  padding-top: 7rem;
  display: flex; align-items: baseline; gap: 2.5rem;
}
.mf-row--2 { padding-top: 0.4rem; }
.mf-row--3 {
  padding-top: 0.4rem;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 4rem;
}
.mf-row--4 { padding-top: 1.5rem; }
.mf-row--5 { padding-top: 0.2rem; }
.mf-row--6 {
  padding-top: 0.4rem; padding-bottom: 6rem;
  display: flex; align-items: flex-end; justify-content: space-between;
}

.mf-tag {
  font-family: var(--sans); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--pink); white-space: nowrap;
  flex-shrink: 0;
}
.mf-tag--right { text-align: right; width: 100%; display: block; margin-bottom: 0.75rem; }

/* Headline variants */
.mf-headline {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 8vw, 8.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0;
}
.mf-headline--normal { color: var(--off-white); }
.mf-headline--outline {
  -webkit-text-stroke: 1.5px rgba(242,240,245,0.2);
  color: transparent;
  font-size: clamp(3.8rem, 8vw, 8.5rem);
}
.mf-headline--pink {
  color: var(--pink);
  font-style: italic;
  font-size: clamp(4rem, 9vw, 9.5rem);
  filter: drop-shadow(0 0 40px rgba(214,58,143,0.3));
}
.mf-headline--dim {
  color: rgba(242,240,245,0.18);
  font-size: clamp(2.5rem, 5.5vw, 6rem);
}
.mf-headline--giant {
  color: var(--pink);
  font-style: italic;
  font-size: clamp(5rem, 12vw, 13rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
  filter: drop-shadow(0 0 60px rgba(214,58,143,0.4));
}
.mf-headline--small {
  color: var(--off-white);
  font-size: clamp(2rem, 4vw, 4.5rem);
}

.mf-aside {
  flex-shrink: 0; max-width: 160px;
  font-family: var(--sans); font-size: 0.78rem;
  color: var(--ash); line-height: 1.6;
  border-left: 1px solid rgba(214,58,143,0.3);
  padding-left: 1rem; margin-bottom: 0.5rem;
}

/* Divider */
.mf-divider {
  max-width: var(--max-w); margin: 2.5rem auto;
  padding: 0 3rem;
  display: flex; align-items: center; gap: 1rem;
}
.mf-divider__line { flex: 1; height: 1px; background: rgba(255,255,255,0.06); }
.mf-divider__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink); flex-shrink: 0;
  box-shadow: 0 0 8px rgba(214,58,143,0.6);
}

.mf-attr {
  font-family: var(--sans); font-size: 0.65rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ash); white-space: nowrap; margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════
   PROCESS — Bold card grid (dark)
═══════════════════════════════════════ */
.process {
  background: var(--black);
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.process__intro {
  max-width: var(--max-w); margin: 0 auto;
  padding: 7rem 3rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: end;
}
.proc-big-h {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 400; line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--off-white); margin: 1rem 0 0;
}
.proc-big-h em { color: var(--pink); font-style: italic; }
.proc-intro-right p {
  font-family: var(--sans); font-size: 1rem;
  line-height: 1.7; color: var(--ash);
}

.proc-grid {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 3rem 7rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.04); /* grid gap color */
}
.proc-card {
  background: var(--black);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  position: relative; overflow: hidden;
  transition: background 0.3s var(--ease);
}
.proc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.3s var(--ease);
}
.proc-card:hover { background: rgba(214,58,143,0.04); }
.proc-card:hover::before { background: var(--pink); }

.proc-card--highlight {
  background: rgba(214,58,143,0.06);
}
.proc-card--highlight::before { background: var(--pink); }

.proc-card__num {
  font-family: var(--sans); font-size: 0.65rem;
  font-weight: 600; letter-spacing: 0.14em;
  color: var(--pink); text-transform: uppercase;
}
.proc-card__body h3 {
  font-family: var(--sans); font-size: 1.05rem;
  font-weight: 600; color: var(--off-white);
  margin: 0 0 0.75rem; letter-spacing: -0.01em;
}
.proc-card__body p {
  font-family: var(--sans); font-size: 0.85rem;
  line-height: 1.65; color: var(--ash);
  margin: 0;
}
.proc-card__arrow {
  margin-top: auto;
  font-size: 1.1rem; color: rgba(214,58,143,0.3);
  transition: color 0.3s, transform 0.3s var(--ease);
}
.proc-card:hover .proc-card__arrow {
  color: var(--pink);
  transform: translate(3px,-3px);
}


/* ═══════════════════════════════════════
   PROBLEMS
═══════════════════════════════════════ */
.problems {
  background: var(--cream);
  color: var(--black);
  padding: 8rem 3rem;
}
.problems p { color: #5e5a6e; }
.problems__header {
  max-width: var(--max-w); margin: 0 auto 5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end;
}
.problems__header .sec-label { color: var(--ash); }
.problems__header .sec-label::before { background: var(--pink); }
.problems__h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--black);
}
.problems__rail {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--cream-dark); border-left: 1px solid var(--cream-dark);
}
.prob-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--cream-dark); border-bottom: 1px solid var(--cream-dark);
  display: flex; flex-direction: column; gap: 1rem;
  transition: background 0.3s var(--ease);
}
.prob-item:hover { background: #ebe7f5; }
.prob-n {
  font-family: var(--sans); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.12em; color: var(--pink); display: block;
}
.prob-item h3 {
  font-family: var(--serif); font-size: 1.2rem;
  font-weight: 400; line-height: 1.3; color: var(--black);
}
.prob-item p { font-size: 0.875rem; line-height: 1.65; }
.problems__conclusion {
  max-width: var(--max-w); margin: 4rem auto 0;
  display: flex; align-items: center; gap: 3rem;
}
.conc-line { flex: 1; height: 1px; background: var(--cream-dark); }
.problems__conclusion p {
  font-family: var(--serif); font-size: 1.15rem;
  font-style: italic; color: #4e4a5e; text-align: right; max-width: 480px;
}

/* ═══════════════════════════════════════
   DIAGRAM SECTION
═══════════════════════════════════════ */
.diag-section {
  background: var(--black);
  padding: 0 3rem 8rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.diag-section__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  max-width: var(--max-w); margin: 0 auto;
}
.diag-section__left .sec-label::before { background: var(--pink); }
.diag-section__left .sec-label { color: var(--ash); }
.diag-h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem); color: var(--off-white);
  margin-bottom: 1.5rem;
}
.diag-section__left p { font-size: 1rem; color: var(--ash); margin-bottom: 2rem; }
.text-link {
  font-family: var(--sans); font-size: 0.85rem; font-weight: 500;
  color: var(--pink); letter-spacing: 0.04em;
  border-bottom: 1px solid var(--pink-dim); padding-bottom: 2px;
  transition: border-color 0.2s;
}
.text-link:hover { border-color: var(--pink); }
.diag-img-wrap {
  position: relative; border-radius: 4px; overflow: hidden;
}
.diag-img-wrap img { width: 100%; border-radius: 4px; }
.diag-float {
  position: absolute;
  font-family: var(--sans); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--pink); border: 1px solid var(--pink-dim);
  background: rgba(247,243,236,0.9); padding: 5px 10px; border-radius: 2px;
}
.diag-float--1 { top: 16%; left: 8%; }
.diag-float--2 { top: 48%; right: 10%; }
.diag-float--3 { bottom: 18%; left: 20%; }

/* ═══════════════════════════════════════
   CAPABILITIES
═══════════════════════════════════════ */
.work {
  background: var(--black);
  padding: 8rem 3rem;
}
.work__header {
  max-width: var(--max-w); margin: 0 auto 4rem;
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.work__header p { max-width: 380px; font-size: 0.9rem; color: var(--ash); }
.work__list {
  max-width: var(--max-w); margin: 0 auto;
}
.work-item {
  display: grid;
  grid-template-columns: 64px 1fr 200px 80px;
  gap: 2rem; align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s var(--ease);
  position: relative;
}
.work-item::before {
  content: ''; position: absolute;
  left: -3rem; right: -3rem; top: 0; bottom: 0;
  background: rgba(214,58,143,0.04); opacity: 0;
  transition: opacity 0.3s; pointer-events: none;
}
.work-item:hover::before { opacity: 1; }
.work-n {
  font-family: var(--sans); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.12em; color: var(--pink); display: block;
  padding-top: 0.4rem;
}
.work-item h3 {
  font-family: var(--serif); font-size: 1.5rem;
  font-weight: 400; color: var(--off-white);
  margin-bottom: 0.75rem; line-height: 1.2;
}
.work-item p { font-size: 0.875rem; color: var(--ash); line-height: 1.7; }
.work-item__right {
  display: flex; flex-direction: column; gap: 6px; padding-top: 0.4rem;
}
.work-item__right span {
  font-family: var(--sans); font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(242,240,245,0.25);
}
.work-item__icon {
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 0.2rem;
}
.work-item__icon svg {
  width: 56px; height: 56px; color: rgba(214,58,143,0.5);
  transition: color 0.3s;
}
.work-item:hover .work-item__icon svg { color: var(--pink-light); }

/* ═══════════════════════════════════════
   DIFFERENCE
═══════════════════════════════════════ */
.diff {
  background: var(--black-soft);
  padding: 8rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.diff__inner { max-width: var(--max-w); margin: 0 auto; }
.diff__top { margin-bottom: 5rem; }
.diff__h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 620px;
}
.diff__pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-top: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 6rem;
}
.diff-pillar {
  padding: 3rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s var(--ease);
}
.diff-pillar:last-child { border-right: none; }
.diff-pillar:hover { background: rgba(255,255,255,0.02); }
.diff-pillar__num {
  font-family: var(--serif);
  font-size: 2.5rem; color: rgba(242,240,245,0.08);
  font-style: italic; margin-bottom: 1.5rem; line-height: 1;
}
.diff-pillar h3 {
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
  color: var(--off-white); line-height: 1.4; margin-bottom: 1rem;
}
.diff-pillar p { font-size: 0.85rem; color: var(--ash); line-height: 1.65; }
.diff__quote {
  text-align: center;
  padding: 4rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.diff__quote blockquote {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 400; color: var(--off-white); line-height: 1.4;
}

.selective-badge {
  font-family: var(--sans); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--pink); border: 1px solid var(--pink-dim);
  padding: 3px 8px; border-radius: 2px;
}

/* ═══════════════════════════════════════
   FOUNDER
═══════════════════════════════════════ */
.founder {
  background: var(--black);
  padding: 8rem 3rem;
}
.founder__inner {
  display: grid; grid-template-columns: 420px 1fr;
  gap: 6rem; align-items: center;
  max-width: var(--max-w); margin: 0 auto;
}
.founder__frame { position: relative; }
.founder__portrait {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(160deg, #120818 0%, #0a0510 50%, #120a18 100%);
  border-radius: 4px; overflow: hidden; position: relative;
}
.founder__portrait-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 55% 35%, rgba(214,58,143,0.18) 0%, transparent 65%);
}
.founder__svg-deco {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.deco-circle { animation: rotateSlow 20s linear infinite; transform-origin: 150px 200px; }
.deco-circle2 { animation: rotateSlow 15s linear infinite reverse; transform-origin: 150px 200px; }
.deco-path { animation: pathPulse 4s ease-in-out infinite; }
@keyframes rotateSlow { to { transform: rotate(360deg); } }
@keyframes pathPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 0.7; } }
.founder__portrait-text {
  position: absolute; bottom: 2rem; left: 2rem;
  display: flex; flex-direction: column; gap: 4px; z-index: 2;
}
.fp-name {
  font-family: var(--serif); font-size: 2.5rem;
  color: var(--off-white); line-height: 1;
}
.fp-title {
  font-family: var(--sans); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--pink-light);
}
.fp-studio {
  font-family: var(--sans); font-size: 0.6rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(242,240,245,0.25);
}
.founder__badge {
  margin-top: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--sans); font-size: 0.65rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ash);
}
.founder__h2 { font-size: clamp(2rem, 3.2vw, 3rem); margin-bottom: 2rem; line-height: 1.15; }
.founder__bio { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.founder__bio p { font-size: 0.95rem; color: var(--ash); line-height: 1.75; }
.founder__domains { display: flex; flex-direction: column; gap: 0; }
.domain-tag {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 400;
  color: rgba(242,240,245,0.45);
  padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.domain-tag:hover { color: var(--off-white); }
.domain-tag span { color: rgba(242,240,245,0.2); margin-left: 6px; }

/* ═══════════════════════════════════════
   FIT
═══════════════════════════════════════ */
.fit {
  background: var(--black-soft);
  padding: 8rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.fit__header {
  max-width: var(--max-w); margin: 0 auto 5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end;
}
.fit__h2 { font-size: clamp(2.2rem, 3.8vw, 3.5rem); }
.fit__header p { font-size: 0.95rem; color: var(--ash); }
.fit__cols {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(255,255,255,0.04);
}
.fit-col { background: var(--black-soft); padding: 3rem 2.5rem; }
.fit-col__label {
  font-family: var(--sans); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 2rem; display: block;
}
.fit-col--yes .fit-col__label { color: var(--pink-light); }
.fit-col--no .fit-col__label { color: rgba(242,240,245,0.2); }
.fit-col ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.fit-col--yes li {
  font-size: 0.9rem; color: rgba(242,240,245,0.65);
  padding-left: 1.5rem; position: relative;
}
.fit-col--yes li::before { content: '✓'; position: absolute; left: 0; color: var(--pink); }
.fit-col--no li {
  font-size: 0.9rem; color: rgba(242,240,245,0.22);
  padding-left: 1.5rem; position: relative;
}
.fit-col--no li::before { content: '×'; position: absolute; left: 0; }

/* ═══════════════════════════════════════
   APPLY CTA
═══════════════════════════════════════ */
.apply {
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding: 8rem 3rem;
}
.apply__bg { position: absolute; inset: 0; pointer-events: none; }
.apply__noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
}
.apply__sculpture-echo {
  position: absolute; right: -10%; bottom: -20%;
  width: 50%; aspect-ratio: 1;
  background: radial-gradient(ellipse at center, rgba(214,58,143,0.07) 0%, transparent 70%);
  border-radius: 50%;
}
.apply__inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 420px 1fr; gap: 6rem; align-items: start;
}
.apply__h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); margin-bottom: 1.5rem; line-height: 1.1; }
.apply__note { font-size: 0.9rem; color: var(--ash); margin-bottom: 2rem; }
.apply__guarantee {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.8rem; color: rgba(242,240,245,0.3);
  font-style: italic;
}
.apply__guarantee svg { color: var(--pink); flex-shrink: 0; }

/* Form */
.apply-form {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px; padding: 2.5rem;
}
.af-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 0; }
.af-row--3 { grid-template-columns: 140px 1fr; }
.af-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 1.25rem; }
.af-group label {
  font-family: var(--sans); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(242,240,245,0.65);
}
.af-group input,
.af-group textarea,
.af-group select {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
  color: var(--off-white); font-family: var(--body); font-size: 0.9rem;
  padding: 11px 14px; outline: none; width: 100%; resize: vertical;
  transition: border-color 0.2s;
}
.af-group input::placeholder,
.af-group textarea::placeholder { color: rgba(242,240,245,0.18); }
.af-group select option { background: #0f0f18; }
.af-group input:focus,
.af-group textarea:focus,
.af-group select:focus { border-color: rgba(214,58,143,0.45); }
.af-submit { margin-top: 0.5rem; }
.submit-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 500;
  background: var(--pink); color: var(--off-white);
  padding: 16px 36px; border: none; border-radius: 2px;
  cursor: none; transition: all 0.3s var(--ease);
  letter-spacing: 0.03em;
}
.submit-btn:hover { background: var(--pink-light); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(214,58,143,0.3); }

/* Success state */
.form-success {
  text-align: center; padding: 4rem 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.form-success__icon { font-size: 2rem; color: var(--pink-light); }
.form-success h3 { font-family: var(--serif); font-size: 2rem; color: var(--off-white); font-weight: 400; }
.form-success p { font-size: 0.9rem; color: var(--ash); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 4rem 3rem 2.5rem;
}
.footer__top {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.04);
  margin-bottom: 2rem;
}
.footer__logo-svg {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 0.75rem;
}
.footer__brand p { font-size: 0.85rem; color: var(--ash); line-height: 1.6; }
.footer__nav { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__nav a { font-family: var(--sans); font-size: 0.82rem; color: rgba(242,240,245,0.35); transition: color 0.2s; }
.footer__nav a:hover { color: var(--off-white); }
.footer__bottom {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between;
  font-family: var(--sans); font-size: 0.7rem;
  color: rgba(242,240,245,0.18); letter-spacing: 0.04em;
}
.footer__contact {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.25rem;
}
.footer__email {
  font-family: var(--sans); font-size: 0.85rem;
  font-weight: 500; color: var(--ash);
  text-decoration: none; letter-spacing: 0.02em;
  transition: color 0.2s var(--ease);
  position: relative;
}
.footer__email::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--pink);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.footer__email:hover { color: var(--off-white); }
.footer__email:hover::after { transform: scaleX(1); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .work-item { grid-template-columns: 48px 1fr 160px 60px; gap: 1.5rem; }
  .founder { grid-template-columns: 340px 1fr; gap: 4rem; }
  .diff__pillars { grid-template-columns: repeat(2, 1fr); }
  .diff-pillar:nth-child(2) { border-right: none; }
  .diff-pillar:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.06); }
  .diff-pillar:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); border-right: none; }
  .apply__inner { grid-template-columns: 340px 1fr; gap: 4rem; }
  .diag-section { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav__center { display: none; }
  .nav__apply { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { padding: 0 1.5rem; }

  .hero__sculpture { width: 90%; right: -20%; top: 10%; opacity: 0.3; }
  .hero__content { padding: calc(var(--nav-h) + 3rem) 1.5rem 2rem; }
  .hero__stats { padding: 1.5rem; gap: 1.5rem; flex-wrap: wrap; }
  .hero__h1 { font-size: clamp(2.8rem, 10vw, 4rem); }

  .manifesto__inner { grid-template-columns: 1fr; }
  .manifesto { padding: 5rem 1.5rem; }
  .big-statement { font-size: clamp(2.5rem, 8vw, 4rem); }

  .problems { padding: 5rem 1.5rem; }
  .problems__header { grid-template-columns: 1fr; gap: 1.5rem; }
  .problems__rail { grid-template-columns: 1fr; }

  .diag-section { grid-template-columns: 1fr; padding: 0 1.5rem 5rem; }

  .work { padding: 5rem 1.5rem; }
  .work__header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .work-item { grid-template-columns: 40px 1fr; }
  .work-item__right, .work-item__icon { display: none; }

  .diff { padding: 5rem 1.5rem; }
  .diff__pillars { grid-template-columns: 1fr; }
  .diff-pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }

  .process {
    display: block; padding: 5rem 1.5rem;
  }
  .process__left { margin-bottom: 3rem; }

  .founder {
    grid-template-columns: 1fr; padding: 5rem 1.5rem; gap: 3rem;
    max-width: 100%; width: 100%;
  }
  .founder__portrait { aspect-ratio: 4/3; }

  .fit { padding: 5rem 1.5rem; }
  .fit__header { grid-template-columns: 1fr; }
  .fit__cols { grid-template-columns: 1fr; }

  .apply { padding: 5rem 1.5rem; }
  .apply__inner { grid-template-columns: 1fr; gap: 3rem; }
  .af-row { grid-template-columns: 1fr; }
  .af-row--3 { grid-template-columns: 1fr; }

  .footer { padding: 3rem 1.5rem 2rem; }
  .footer__top { flex-direction: column; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; }
}
@media (max-width: 480px) {
  .hero__h1 { font-size: 2.6rem; }
  .hero__stats .hero__stat-sep { display: none; }
}
.af-req { color: #D63A8F; font-size: 0.75em; }
.af-note { font-size: 0.72rem; color: rgba(158,154,173,0.55); margin-top: 0.75rem; line-height: 1.5; }

.footer__linkedin {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(242,240,245,0.45);
  text-decoration: none; margin-top: 0.6rem;
  transition: color 0.2s;
}
.footer__linkedin:hover { color: #D63A8F; }

/* Founder card as link */
.founder__frame--link {
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.founder__frame--link:hover .founder__portrait-bg {
  opacity: 0.85;
}
.founder__frame--link:hover .fp-title {
  color: #e84fa0;
}

/* Footer mobile responsive */
@media (max-width: 640px) {
  .footer__top {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .footer__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.5rem;
  }
  .footer__linkedin {
    justify-content: center;
  }
}
.footer__get-to-know {
  display: inline-flex; align-items: center; gap: 0.45rem;
  margin-top: 1rem;
  font-size: 0.7rem; font-weight: 500; font-family: var(--sans);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(242,240,245,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__get-to-know:hover { color: #D63A8F; }
.footer__contact-label {
  display: block;
  font-size: 0.6rem; font-weight: 600; font-family: var(--sans);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(242,240,245,0.3);
  margin-bottom: 0.35rem;
}
.footer__contact-note {
  display: block;
  font-size: 0.68rem; color: rgba(242,240,245,0.3);
  margin-top: 0.35rem; line-height: 1.5;
}

/* Consent checkbox */
.af-consent {
  margin-bottom: 1.5rem;
}
.af-consent__label {
  display: flex; align-items: flex-start; gap: 0.75rem;
  cursor: pointer;
}
.af-consent__label input[type="checkbox"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.af-consent__box {
  flex-shrink: 0;
  width: 16px; height: 16px; margin-top: 2px;
  border: 1.5px solid rgba(242,240,245,0.2);
  border-radius: 2px;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s, background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.af-consent__label input:checked ~ .af-consent__box {
  background: #D63A8F;
  border-color: #D63A8F;
}
.af-consent__label input:checked ~ .af-consent__box::after {
  content: '';
  display: block;
  width: 4px; height: 7px;
  border: 1.5px solid white;
  border-top: none; border-left: none;
  transform: rotate(45deg) translateY(-1px);
}
.af-consent__text {
  font-size: 0.75rem; color: rgba(242,240,245,0.45);
  line-height: 1.6;
}
.af-consent__text a {
  color: rgba(214,58,143,0.8);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.2s;
}
.af-consent__text a:hover { color: #D63A8F; }
