@font-face {
  font-family: "Bricolage";
  src: url("/assets/fonts/bricolage-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage";
  src: url("/assets/fonts/bricolage-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage";
  src: url("/assets/fonts/bricolage-800.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}

:root {
  --bg: #0a0a0c;
  --bg2: #101015;
  --ink: #f4f1ea;
  --ink-soft: #a7a39b;
  --ink-mute: #6e6b65;
  --line: rgba(244, 241, 234, 0.1);
  --line2: rgba(244, 241, 234, 0.18);
  --accent: #e0a24a;
  --accent-soft: rgba(224, 162, 74, 0.18);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
  --radius: 24px;
  --radius-soft: 32px;
  --wrap: 1320px;
  --gutter: clamp(20px, 3vw, 32px);
  --display: "Bricolage", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(58% 42% at 50% 0%, rgba(244, 241, 234, 0.05), transparent 60%),
    radial-gradient(80% 70% at 88% -8%, rgba(224, 162, 74, 0.12), transparent 54%),
    radial-gradient(60% 40% at 12% 16%, rgba(244, 241, 234, 0.05), transparent 55%),
    radial-gradient(36% 26% at 50% 34%, rgba(224, 162, 74, 0.05), transparent 72%),
    linear-gradient(180deg, #0a0a0c 0%, #0d0d11 48%, #09090b 100%);
  font-family: var(--body);
  line-height: 1.55;
  min-width: 320px;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  background:
    radial-gradient(44% 36% at 50% 22%, rgba(255, 246, 231, 0.06), transparent 70%),
    radial-gradient(28% 24% at 78% 18%, rgba(224, 162, 74, 0.08), transparent 72%),
    radial-gradient(120% 82% at 50% 120%, rgba(0, 0, 0, 0.42), transparent 65%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: rgba(224, 162, 74, 0.22);
  color: var(--ink);
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  padding: 0;
}

main,
section,
footer {
  position: relative;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 300;
  padding: 10px 14px;
  border: 1px solid var(--line2);
  background: rgba(10, 10, 12, 0.96);
  color: var(--ink);
}

.skip-link:focus {
  top: 12px;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.wrap {
  width: min(calc(100% - 2 * var(--gutter)), var(--wrap));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 12, 0.68);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-dot {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-link,
.menu-link {
  color: var(--ink-soft);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.94rem;
  transition: color 220ms var(--ease), background-color 220ms var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-current {
  color: var(--ink);
  background: rgba(244, 241, 234, 0.05);
}

.menu-toggle,
.menu-close {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line2);
  color: var(--ink);
}

.menu-toggle svg,
.menu-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 12, 0.9) 0%, rgba(16, 16, 21, 0.98) 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms var(--ease), visibility 260ms var(--ease);
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-panel {
  min-height: 100%;
  width: min(100%, 620px);
  margin-left: auto;
  padding: 20px var(--gutter) 32px;
  display: flex;
  flex-direction: column;
  background: rgba(10, 10, 12, 0.92);
  border-left: 1px solid var(--line);
}

.menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
  border-bottom: 1px solid var(--line);
}

.menu-links {
  display: grid;
  gap: 10px;
  padding-top: 28px;
}

.menu-link {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 2px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 8vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.menu-link.is-current,
.menu-link:hover,
.menu-link:focus-visible {
  color: var(--ink);
}

.menu-kicker,
.eyebrow,
.section-kicker,
.eyeline,
.mini-label,
.tag,
.row-no,
.detail-term,
.legal-label {
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--ink-mute);
}

.eyebrow,
.section-kicker,
.eyeline {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.eyebrow::before,
.section-kicker::before,
.eyeline::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--line2);
}

.page-main {
  padding-bottom: 56px;
}

.hero {
  padding: clamp(52px, 10vw, 132px) 0 clamp(74px, 10vw, 148px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.96fr);
  gap: clamp(38px, 5vw, 84px);
  align-items: end;
}

.hero-copy {
  min-width: 0;
  display: grid;
  gap: 30px;
}

.hero-display {
  display: grid;
  gap: clamp(54px, 6vw, 72px);
}

.hero-copy .hero-amount {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  display: inline-flex;
  width: fit-content;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(5.3rem, 15.6vw, 13.2rem);
  line-height: 0.84;
  letter-spacing: -0.06em;
  background: linear-gradient(180deg, #fff8ee 0%, #f1e7d6 44%, #e0a24a 122%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-title,
.display-title,
.closing-title,
.page-title,
.proof-big,
.stat-figure,
.timeline-year {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.hero-title {
  font-size: clamp(2.9rem, 6.1vw, 5.9rem);
  max-width: 11ch;
}

.hero-title .line,
.display-title .line,
.closing-title .line,
.page-title .line {
  display: block;
  overflow: clip;
}

.hero-title .word,
.display-title .word,
.closing-title .word,
.page-title .word {
  display: inline-block;
  will-change: transform, opacity;
}

.hero-subline,
.section-lead,
.body-copy,
.hero-copy p,
.page-intro,
.proof-note,
.contact-copy,
.legal-copy {
  margin: 0;
  max-width: 64ch;
  color: var(--ink-soft);
  font-size: clamp(0.94rem, 1.04vw, 1rem);
}

.hero-subline {
  max-width: 42ch;
}

.hero-actions,
.closing-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 16px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line2);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  transition:
    transform 220ms var(--ease),
    border-color 220ms var(--ease),
    background-color 220ms var(--ease),
    color 220ms var(--ease),
    box-shadow 220ms var(--ease);
  will-change: transform;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(244, 241, 234, 0.28);
}

.button:active {
  transform: scale(0.98);
}

.button-primary {
  background: linear-gradient(180deg, #efbb70 0%, var(--accent) 100%);
  color: #15120d;
  border-color: rgba(224, 162, 74, 0.9);
  box-shadow: 0 16px 36px rgba(224, 162, 74, 0.2);
}

.button-secondary {
  background: rgba(244, 241, 234, 0.03);
  color: var(--ink);
}

.magnetic-inner {
  position: relative;
  pointer-events: none;
}

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-photo-wrap {
  position: relative;
  min-height: clamp(560px, 82vh, 820px);
  overflow: clip;
  border-radius: var(--radius-soft);
  background:
    radial-gradient(56% 48% at 50% 20%, rgba(255, 248, 238, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(19, 19, 24, 0.94), rgba(11, 11, 14, 1));
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.56), 0 0 0 1px rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -12% -8% auto;
  height: 54%;
  z-index: 1;
  background: radial-gradient(circle at 50% 34%, rgba(255, 244, 224, 0.18), rgba(224, 162, 74, 0.08) 34%, transparent 72%);
  filter: blur(32px);
}

.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 8, 10, 0.02) 0%, rgba(8, 8, 10, 0.14) 40%, rgba(8, 8, 10, 0.8) 100%),
    radial-gradient(80% 92% at 50% 18%, rgba(255, 255, 255, 0.08), transparent 58%);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(0.9);
  transform: scale(1.06);
  will-change: transform;
}

.stat-float {
  position: absolute;
  left: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 18px 20px 20px;
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.74), rgba(10, 10, 12, 0.92));
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.32);
}

.stat-float strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.stat-float p,
.stat-float span {
  margin: 0;
}

.section {
  padding: clamp(72px, 10vw, 138px) 0;
  border-top: 1px solid var(--line);
}

.section-compact {
  padding: clamp(56px, 7vw, 94px) 0;
}

.section-generous {
  padding: clamp(92px, 12vw, 176px) 0;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: clamp(28px, 4vw, 42px);
}

.section-meta {
  display: flex;
  align-items: flex-end;
  gap: 18px;
}

.ghost-no {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.7rem, 8vw, 5rem);
  line-height: 0.82;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 241, 234, 0.14);
}

.display-title {
  font-size: clamp(2.1rem, 4.6vw, 4.15rem);
  max-width: 15ch;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 4.5vw, 72px);
  align-items: start;
}

.proof-list {
  display: grid;
  gap: 14px;
  align-content: start;
}

.proof-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.proof-item strong {
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-mute);
}

.proof-item p {
  margin: 0;
  color: var(--ink-soft);
}

.chart-card {
  min-width: 0;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(110% 90% at 20% 12%, rgba(255, 247, 233, 0.07), transparent 40%),
    radial-gradient(70% 55% at 78% 22%, rgba(224, 162, 74, 0.14), transparent 52%),
    linear-gradient(180deg, rgba(22, 22, 28, 0.96), rgba(12, 12, 16, 0.9));
  padding: clamp(26px, 4vw, 42px);
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.4);
}

.chart-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 241, 234, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 100%);
  pointer-events: none;
}

.chart-shell {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.chart-shell svg {
  width: 100%;
  height: auto;
}

.chart-gridline {
  stroke: rgba(244, 241, 234, 0.08);
  stroke-width: 1;
}

.chart-axis,
.chart-tick {
  font-size: 11px;
  fill: var(--ink-mute);
  font-family: var(--body);
}

.chart-area {
  fill: url(#chartArea);
}

.chart-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-end {
  fill: var(--accent);
}

.chart-label {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  fill: var(--ink);
}

.chart-note {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--ink-mute);
  font-size: 0.83rem;
}

.logos-band {
  overflow: clip;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(244, 241, 234, 0.02), rgba(244, 241, 234, 0.01));
}

.marquee-mask {
  position: relative;
  overflow: clip;
}

.marquee-mask::before,
.marquee-mask::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(36px, 8vw, 120px);
  z-index: 2;
  pointer-events: none;
}

.marquee-mask::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(10, 10, 12, 0) 100%);
}

.marquee-mask::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, rgba(10, 10, 12, 0) 100%);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  width: max-content;
  padding: 24px 0;
  animation: marquee 54s linear infinite;
  will-change: transform;
}

.logos-band:hover .logo-track {
  animation-play-state: paused;
}

.logo-item {
  flex: 0 0 auto;
  min-width: 0;
}

.logo-item img {
  width: auto;
  height: 30px;
  max-width: 132px;
  opacity: 0.78;
  filter: brightness(0) invert(1) saturate(0);
  transition: opacity 220ms var(--ease), filter 220ms var(--ease), transform 220ms var(--ease);
}

.logo-item:hover img,
.logo-item:focus-visible img {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(77%) sepia(39%) saturate(854%) hue-rotate(348deg) brightness(94%) contrast(88%);
  transform: translateY(-1px);
}

.pin-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.pin-copy {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: grid;
  gap: 16px;
}

.rows {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.editorial-row {
  display: grid;
  grid-column: span 6;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 26px 26px 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(244, 241, 234, 0.02), rgba(244, 241, 234, 0.012));
}

.editorial-row-emphasis {
  grid-column: span 4;
  padding-block: 34px;
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(224, 162, 74, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(244, 241, 234, 0.028), rgba(244, 241, 234, 0.015));
}

.editorial-row:nth-child(2),
.editorial-row:nth-child(3),
.editorial-row:nth-child(4) {
  grid-column: span 3;
}

.row-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(1.28rem, 2.4vw, 1.72rem);
}

.row-copy {
  margin: 8px 0 0;
  color: var(--ink-soft);
  max-width: 58ch;
}

.row-side {
  justify-self: end;
  display: grid;
  gap: 10px;
  justify-items: end;
  min-width: 120px;
}

.logo-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid var(--line);
  background: rgba(244, 241, 234, 0.025);
  color: var(--ink-soft);
  font-size: 0.8rem;
  white-space: nowrap;
}

.logo-chip img {
  width: auto;
  height: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.82;
}

.competence-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.competence-group {
  min-width: 0;
  display: grid;
  grid-column: span 2;
  gap: 12px;
  padding: 22px 22px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(244, 241, 234, 0.018);
}

.competence-group h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.competence-group p {
  margin: 0;
  color: var(--ink-soft);
}

.competence-group-wide {
  grid-column: span 4;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(224, 162, 74, 0.1), transparent 62%),
    rgba(244, 241, 234, 0.02);
}

.proof-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.proof-callouts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-callout {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.proof-big {
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.proof-copy {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.proof-copy p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 62ch;
}

.proof-media {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.proof-photo {
  overflow: clip;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(244, 241, 234, 0.02);
}

.proof-photo img {
  width: 100%;
  height: clamp(320px, 48vw, 520px);
  object-fit: cover;
  filter: grayscale(1) contrast(1.02) brightness(0.9);
}

.proof-photo-note {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.closing {
  display: grid;
  gap: 22px;
  max-width: 56ch;
  padding-block: clamp(18px, 3vw, 34px);
}

.closing-title {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 52px;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  color: var(--ink-soft);
}

.footer-meta {
  color: var(--ink-mute);
  font-size: 0.94rem;
}

.page-hero {
  padding: clamp(52px, 8vw, 108px) 0 clamp(64px, 9vw, 116px);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.page-title {
  font-size: clamp(2.95rem, 6.8vw, 6.8rem);
  max-width: 10ch;
}

.page-profile {
  display: grid;
  gap: 28px;
}

.portrait-card {
  position: relative;
  overflow: clip;
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background:
    radial-gradient(58% 44% at 50% 18%, rgba(255, 248, 238, 0.1), transparent 70%),
    #111;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
}

.portrait-card img {
  width: 100%;
  height: clamp(420px, 56vw, 640px);
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(0.9);
}

.portrait-meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  background: rgba(10, 10, 12, 0.84);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.portrait-meta strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.timeline {
  display: grid;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: minmax(120px, 160px) minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline-year {
  font-size: 1.02rem;
  color: var(--accent);
}

.timeline-item h3,
.stat-card h3,
.language-block h3,
.focus-card h3,
.contact-panel h2,
.legal-block h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.timeline-item p,
.stat-card p,
.language-block p,
.focus-card p,
.contact-panel p,
.legal-block p,
.legal-block li,
.contact-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.detail-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 30px);
}

.stat-card,
.language-block,
.focus-card,
.contact-panel,
.legal-block {
  min-width: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.language-list {
  display: grid;
  gap: 10px;
}

.language-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(244, 241, 234, 0.06);
}

.language-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.language-row strong {
  font-weight: 600;
}

.contact-hero {
  padding: clamp(40px, 7vw, 88px) 0 clamp(58px, 8vw, 110px);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 24px;
}

.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(244, 241, 234, 0.03);
}

.contact-panel h2 {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(244, 241, 234, 0.03);
  transition: border-color 180ms var(--ease), background-color 180ms var(--ease);
}

.form-field textarea {
  min-height: 148px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(224, 162, 74, 0.7);
  background: rgba(244, 241, 234, 0.05);
}

.honey {
  position: absolute;
  left: -9999px;
}

.legal-hero {
  padding: clamp(40px, 7vw, 88px) 0 clamp(58px, 8vw, 110px);
}

.legal-shell {
  display: grid;
  gap: 18px;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.legal-block ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.legal-block a {
  color: var(--ink);
}

.founder-hero,
.contact-page-hero,
.legal-page-hero {
  padding-top: clamp(44px, 7vw, 92px);
  padding-bottom: clamp(64px, 9vw, 118px);
}

.founder-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  gap: clamp(28px, 4.5vw, 72px);
  align-items: center;
}

.founder-copy {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.founder-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.6rem, 10.5vw, 8.8rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.86;
  text-wrap: balance;
}

.founder-title .line {
  display: block;
  overflow: clip;
}

.founder-title .word {
  display: inline-block;
  will-change: transform, opacity;
}

.founder-subline,
.founder-intro,
.contact-page-intro,
.contact-footnote,
.legal-page-copy,
.founder-language-row,
.founder-line p,
.founder-story p,
.founder-focus-card p,
.founder-study-card p,
.legal-note-card p {
  margin: 0;
  color: var(--ink-soft);
}

.founder-subline {
  font-size: clamp(1rem, 1.2vw, 1.16rem);
}

.founder-intro,
.contact-page-intro {
  max-width: 40ch;
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
}

.founder-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.founder-stat {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line2);
}

.founder-stat strong {
  font-family: var(--display);
  font-size: clamp(2.15rem, 4vw, 3.45rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.88;
  white-space: nowrap;
}

.founder-stat span {
  color: var(--ink-mute);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-chip,
.contact-point {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(244, 241, 234, 0.03);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.founder-portrait-card {
  position: relative;
  min-width: 0;
  padding: clamp(14px, 2vw, 20px);
  border-radius: calc(var(--radius-soft) + 4px);
  background:
    radial-gradient(74% 60% at 50% 12%, rgba(255, 248, 238, 0.12), transparent 62%),
    radial-gradient(80% 76% at 76% 24%, rgba(224, 162, 74, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(22, 22, 28, 0.94), rgba(9, 9, 11, 1));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.48);
}

.founder-portrait-card::before {
  content: "";
  position: absolute;
  inset: 7% 14% auto;
  height: 24%;
  border-radius: 999px;
  background: rgba(224, 162, 74, 0.16);
  filter: blur(34px);
  pointer-events: none;
}

.founder-portrait-frame {
  position: relative;
  overflow: clip;
  border-radius: calc(var(--radius-soft) - 2px);
  border: 1px solid rgba(244, 241, 234, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(16, 16, 21, 0.92);
}

.founder-portrait-frame img {
  width: 100%;
  height: clamp(420px, 54vw, 650px);
  object-fit: cover;
  filter: grayscale(1) contrast(1.02) brightness(0.92);
}

.founder-flow,
.legal-notes-shell {
  display: grid;
  gap: 28px;
}

.founder-head {
  margin-bottom: 0;
}

.founder-story {
  display: grid;
  gap: 18px;
  max-width: 76ch;
}

.founder-story p {
  max-width: 64ch;
}

.founder-timeline {
  display: grid;
  gap: 0;
}

.founder-line {
  display: grid;
  grid-template-columns: minmax(110px, 160px) minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.founder-line:last-child {
  border-bottom: 1px solid var(--line);
}

.founder-line-date,
.founder-line h3,
.founder-study-card h2 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: -0.04em;
}

.founder-line-date {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.founder-line-copy {
  display: grid;
  gap: 8px;
}

.founder-line h3,
.founder-focus-card h3 {
  font-size: clamp(1.26rem, 2vw, 1.62rem);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 26px);
}

.founder-focus-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(86% 92% at 100% 0%, rgba(224, 162, 74, 0.1), transparent 58%),
    rgba(244, 241, 234, 0.02);
}

.founder-meta-flow {
  gap: 22px;
}

.founder-mini-title {
  max-width: none;
  font-size: clamp(1.85rem, 4vw, 3rem);
}

.founder-language-row {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: clamp(0.96rem, 1.08vw, 1.04rem);
}

.founder-language-row span {
  color: var(--ink-mute);
}

.founder-study-card {
  display: grid;
  gap: 8px;
  max-width: 520px;
  padding: 22px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(244, 241, 234, 0.022);
}

.founder-study-kicker {
  margin: 0;
  color: var(--ink-mute);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.founder-study-card h2 {
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  font-weight: 700;
}

.founder-closing {
  max-width: 60ch;
}

.contact-page-grid {
  align-items: start;
}

.contact-page-copy {
  gap: 22px;
  padding-top: clamp(8px, 2vw, 22px);
}

.contact-page-title,
.legal-page-title {
  max-width: 9ch;
}

.contact-page-mail {
  min-height: 48px;
  padding-inline: 16px;
  color: var(--ink);
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-form-card {
  position: relative;
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid rgba(244, 241, 234, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(82% 68% at 50% 0%, rgba(255, 248, 238, 0.08), transparent 56%),
    linear-gradient(180deg, rgba(17, 17, 22, 0.96), rgba(10, 10, 12, 0.98));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.4);
}

.contact-form-card::before {
  content: "";
  position: absolute;
  inset: auto 14% -10% 14%;
  height: 28%;
  background: rgba(224, 162, 74, 0.14);
  filter: blur(34px);
  pointer-events: none;
}

.contact-form-card .contact-form {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.contact-field-grid {
  gap: 16px;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 18px;
  border-color: rgba(244, 241, 234, 0.1);
  background: rgba(244, 241, 234, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.012);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(224, 162, 74, 0.9);
  box-shadow: 0 0 0 4px rgba(224, 162, 74, 0.12);
}

.contact-submit {
  width: 100%;
  margin-top: 6px;
}

.contact-footnote {
  max-width: 60ch;
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.legal-page-shell {
  gap: 22px;
}

.legal-rows {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.legal-row {
  display: grid;
  grid-template-columns: minmax(170px, 240px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.legal-key {
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.legal-value {
  min-width: 0;
  color: var(--ink);
  text-align: right;
}

.legal-value a,
.legal-note-card a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(224, 162, 74, 0.52);
  text-underline-offset: 0.16em;
}

.legal-note-card {
  display: grid;
  gap: 14px;
  max-width: 72ch;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}

.legal-actions {
  padding-top: 4px;
}

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

[data-reveal] {
  opacity: 1;
  transform: none;
}

html.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

html.motion-ready [data-reveal].is-inview {
  opacity: 1;
  transform: translateY(0);
}

html.motion-ready [data-split].is-split .word {
  opacity: 0;
  transform: translateY(1.05em);
  transition:
    opacity 780ms var(--ease),
    transform 780ms var(--ease);
  transition-delay: calc(var(--word-index, 0) * 26ms);
}

html.motion-ready [data-split].is-split.is-inview .word {
  opacity: 1;
  transform: translateY(0);
}

html.motion-ready .chart-shell.is-pending .chart-line {
  stroke-dasharray: var(--chart-length, 0);
  stroke-dashoffset: var(--chart-length, 0);
  transition: stroke-dashoffset 1800ms var(--ease);
}

html.motion-ready .chart-shell.is-pending.is-inview .chart-line {
  stroke-dashoffset: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .pin-stage,
  .proof-stage,
  .page-hero-grid,
  .founder-hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .pin-copy {
    position: static;
  }

  .proof-callouts,
  .detail-columns,
  .focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rows,
  .competence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-row,
  .editorial-row-emphasis,
  .editorial-row:nth-child(2),
  .editorial-row:nth-child(3),
  .editorial-row:nth-child(4),
  .competence-group,
  .competence-group-wide {
    grid-column: auto;
  }

  .row-side {
    justify-self: start;
    justify-items: start;
    min-width: 0;
  }

  .logo-chips {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 64px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle,
  .menu-close {
    display: inline-flex;
  }

  .hero-copy .hero-amount {
    font-size: clamp(4.2rem, 19vw, 8rem);
  }

  .hero-title,
  .page-title,
  .founder-title {
    max-width: 12ch;
  }

  .editorial-row {
    grid-template-columns: 58px 1fr;
    padding: 22px 18px 24px;
  }

  .row-side {
    grid-column: 2;
    gap: 12px;
  }

  .proof-callouts,
  .detail-columns,
  .field-grid,
  .founder-stats,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .rows,
  .competence-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .founder-line,
  .legal-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .legal-value {
    text-align: left;
  }

  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(calc(100% - 32px), var(--wrap));
  }

  .section-meta {
    gap: 12px;
  }

  .ghost-no {
    font-size: 2.25rem;
  }

  .hero-photo-wrap {
    min-height: 460px;
  }

  .hero-copy .hero-amount {
    font-size: clamp(3.6rem, 16vw, 5.8rem);
  }

  .founder-title {
    font-size: clamp(3rem, 17vw, 4.7rem);
  }

  .founder-subline,
  .founder-intro,
  .contact-page-intro,
  .founder-language-row,
  .contact-footnote {
    max-width: 100%;
  }

  .proof-photo img,
  .portrait-card img,
  .founder-portrait-frame img {
    height: 320px;
  }

  .stat-float,
  .portrait-meta,
  .chart-card {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-copy {
    gap: 24px;
  }

  .hero-display {
    gap: 44px;
  }

  .meta-chip,
  .contact-point,
  .contact-mail,
  .button {
    min-height: 44px;
  }

  .contact-form-card {
    padding: 18px;
    border-radius: 24px;
  }

  .founder-line h3,
  .founder-focus-card h3,
  .founder-study-card h2 {
    font-size: 1.24rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html.motion-ready [data-reveal],
  html.motion-ready [data-split].is-split .word {
    opacity: 1 !important;
    transform: none !important;
  }

  .logo-track {
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.vibe-section {
  overflow: clip;
}

.vibe-shell {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
}

.vibe-head {
  margin-bottom: 0;
  gap: 10px;
}

.vibe-title {
  max-width: 11ch;
}

.vibe-subline {
  margin: 0;
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  transform: translateY(-2px);
}

.vibe-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
}

.vibe-field {
  position: relative;
  width: min(100%, 690px);
  margin-inline: auto;
  aspect-ratio: 1 / 0.91;
  container-type: inline-size;
  overflow: visible;
  isolation: isolate;
  perspective: 1000px;
}

.vibe-field-inner {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 234, 0.24);
  background:
    radial-gradient(92% 74% at 50% 48%, rgba(130, 101, 255, 0.12), transparent 72%),
    radial-gradient(62% 42% at 50% 46%, rgba(111, 211, 255, 0.11), transparent 76%),
    linear-gradient(180deg, rgba(24, 27, 38, 0.94), rgba(7, 8, 12, 0.98));
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 200ms ease-out;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.032),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 36px rgba(114, 96, 255, 0.12),
    inset 0 0 52px rgba(111, 211, 255, 0.1),
    inset 0 -18px 36px rgba(0, 0, 0, 0.16),
    0 34px 90px rgba(0, 0, 0, 0.38),
    0 8px 34px rgba(14, 18, 40, 0.26),
    0 0 0 1px rgba(145, 177, 255, 0.08);
  backdrop-filter: blur(16px) saturate(116%);
}

.vibe-field-inner::before,
.vibe-field-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vibe-field-inner::before {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(180, 220, 255, 0.08) 9%, rgba(255, 255, 255, 0.02) 22%, transparent 34%),
    radial-gradient(72% 54% at 50% -4%, rgba(255, 255, 255, 0.18), transparent 56%),
    linear-gradient(104deg, transparent 12%, rgba(255, 255, 255, 0.06) 32%, transparent 48%);
  opacity: 0.92;
}

.vibe-field-inner::after {
  z-index: 1;
  background:
    radial-gradient(44% 31% at 48% 49%, rgba(142, 106, 255, 0.1), transparent 64%),
    radial-gradient(36% 28% at 55% 55%, rgba(111, 211, 255, 0.1), transparent 68%),
    radial-gradient(64% 46% at 49% 58%, rgba(255, 189, 95, 0.06), transparent 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 22%);
  opacity: 0.84;
  filter: blur(16px);
}

.vibe-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.vibe-particles canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.vibe-graph {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.vibe-ring {
  fill: none;
  stroke: url(#vibe-ring-gradient);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
  mix-blend-mode: screen;
}

.vibe-ring-outer {
  opacity: 0.28;
  filter: url(#vibe-ring-glow);
}

.vibe-ring-mid {
  opacity: 0.42;
  stroke-width: 1.35;
}

.vibe-ring-inner {
  opacity: 0.6;
  stroke-width: 1.5;
}

.vibe-connector {
  fill: none;
  stroke: var(--line-stroke, var(--line-color));
  stroke-opacity: calc(var(--line-opacity) * 0.28);
  stroke-width: var(--line-width);
  stroke-linecap: round;
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  vector-effect: non-scaling-stroke;
  filter: url(#vibe-line-glow);
  mix-blend-mode: screen;
}

.vibe-connector-pulse {
  stroke-opacity: calc(var(--line-opacity) * 0.92);
  stroke-width: calc(var(--line-width) + 0.55);
  stroke-dasharray: 12 88;
  stroke-dashoffset: 100;
  filter: url(#vibe-core-hot);
  animation: vibe-flow var(--flow-duration) linear infinite;
  animation-delay: var(--flow-delay);
}

.vibe-anchor-diamond {
  fill: rgba(255, 251, 243, 0.94);
  stroke: rgba(123, 232, 255, 0.88);
  stroke-width: 1.1;
  filter: url(#vibe-core-hot);
}

.vibe-core-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(22%, 152px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 1) 0 9%, rgba(255, 248, 230, 0.98) 13%, rgba(244, 191, 102, 0.8) 22%, rgba(161, 132, 255, 0.36) 36%, rgba(111, 211, 255, 0.12) 50%, transparent 67%),
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.16), transparent 34%);
  filter: blur(0.6px);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: vibe-core-orb 7.8s ease-in-out infinite, vibe-core-flicker 9.6s linear infinite;
}

.vibe-core-orb::before,
.vibe-core-orb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.vibe-core-orb::before {
  inset: -8%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 253, 246, 0.24), rgba(255, 253, 246, 0.08) 34%, transparent 58%);
  filter: blur(5px);
  opacity: 0.58;
}

.vibe-core-orb::after {
  inset: -16%;
  background:
    radial-gradient(circle at 50% 48%, rgba(167, 111, 255, 0.14), transparent 38%),
    radial-gradient(circle at 47% 52%, rgba(111, 211, 255, 0.1), transparent 50%),
    radial-gradient(circle at 54% 56%, rgba(255, 189, 95, 0.1), transparent 42%);
  filter: blur(12px);
  opacity: 0.54;
  animation: vibe-nebula 8.8s ease-in-out infinite;
}

.vibe-core-rays,
.vibe-core-sparks {
  position: absolute;
  left: 50%;
  top: 50%;
  pointer-events: none;
}

.vibe-core-rays {
  width: min(28%, 196px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.54;
  background:
    conic-gradient(from 0deg, transparent 0 12%, rgba(255, 243, 214, 0.22) 15%, transparent 20%, transparent 30%, rgba(123, 232, 255, 0.12) 35%, transparent 40%, transparent 58%, rgba(171, 141, 255, 0.16) 64%, transparent 69%, transparent 84%, rgba(255, 187, 92, 0.14) 88%, transparent 92%, transparent 100%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 62%);
  filter: blur(10px);
  mix-blend-mode: screen;
  animation: vibe-core-rays 28s linear infinite;
}

.vibe-core-sparks {
  width: min(25%, 176px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.vibe-core-spark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.96), rgba(255, 240, 208, 0.56) 42%, rgba(111, 211, 255, 0.08) 72%, transparent 100%);
  box-shadow: 0 0 12px rgba(255, 247, 230, 0.34);
  opacity: 0.7;
}

.vibe-core-spark-a {
  animation: vibe-orbit-a 16s linear infinite;
}

.vibe-core-spark-b {
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  animation: vibe-orbit-b 18s linear infinite;
}

.vibe-core-spark-c {
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  animation: vibe-orbit-c 13.5s linear infinite;
}

.vibe-core-spark-d {
  width: 3px;
  height: 3px;
  margin: -1.5px 0 0 -1.5px;
  animation: vibe-orbit-d 11.8s linear infinite;
}

.vibe-nodes {
  position: absolute;
  inset: -26px;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 4;
  pointer-events: none;
  will-change: transform;
}

.vibe-node-chip {
  position: absolute;
  left: var(--nx);
  top: var(--ny);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(4px, 1.1cqw, 8px);
  width: max-content;
  max-width: clamp(70px, 17cqw, 132px);
  text-align: center;
  pointer-events: auto;
  transform: translate(-50%, -22px);
  filter: drop-shadow(0 0 18px rgba(111, 211, 255, 0.08)) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
  transition: transform 220ms var(--ease);
}

.vibe-chip-ic {
  flex: 0 0 auto;
  width: clamp(26px, 7cqw, 48px);
  height: clamp(26px, 7cqw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6px, 1.6cqw, 11px);
  border: 1px solid rgba(244, 241, 234, 0.16);
  border-radius: clamp(9px, 2.3cqw, 16px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08) 22%, rgba(255, 255, 255, 0.02) 36%, rgba(0, 0, 0, 0) 58%),
    linear-gradient(180deg, rgba(122, 168, 255, 0.05), rgba(8, 10, 16, 0.24) 62%, rgba(0, 0, 0, 0.18) 100%),
    rgba(10, 12, 18, 0.54);
  color: #b6efff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 8px 12px rgba(255, 255, 255, 0.08),
    inset 0 -10px 18px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(123, 232, 255, 0.08),
    0 16px 28px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(111, 211, 255, 0.16);
  backdrop-filter: blur(12px) saturate(110%);
  transition:
    border-color 220ms var(--ease),
    color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    background-color 220ms var(--ease),
    transform 220ms var(--ease);
}

.vibe-chip-ic svg {
  width: clamp(14px, 3.8cqw, 26px);
  height: clamp(14px, 3.8cqw, 26px);
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vibe-chip-label {
  max-width: clamp(70px, 17cqw, 132px);
  display: -webkit-box;
  min-height: 0;
  padding: clamp(2px, 0.6cqw, 4px) clamp(6px, 1.6cqw, 11px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(8, 9, 14, 0.42);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(0.56rem, 2.3cqw, 0.8rem);
  font-weight: 650;
  letter-spacing: normal;
  line-height: 1.2;
  white-space: normal;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  backdrop-filter: blur(9px) saturate(106%);
  text-shadow: 0 0 12px rgba(230, 240, 255, 0.2), 0 2px 14px rgba(5, 8, 18, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 10px 22px rgba(0, 0, 0, 0.18),
    0 0 20px rgba(111, 211, 255, 0.08);
  transition:
    color 220ms var(--ease),
    border-color 220ms var(--ease),
    background-color 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.vibe-node-chip:hover,
.vibe-node-chip:focus-within {
  transform: translate(-50%, -25px);
}

.vibe-node-chip:hover .vibe-chip-ic,
.vibe-node-chip:focus-within .vibe-chip-ic {
  border-color: rgba(123, 232, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08) 22%, rgba(255, 255, 255, 0.02) 36%, rgba(0, 0, 0, 0) 58%),
    linear-gradient(180deg, rgba(122, 168, 255, 0.07), rgba(8, 10, 16, 0.26) 62%, rgba(0, 0, 0, 0.2) 100%),
    rgba(14, 16, 22, 0.72);
  color: #c8f3ff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 10px 16px rgba(255, 255, 255, 0.08),
    inset 0 -10px 18px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(123, 232, 255, 0.16) inset,
    0 18px 38px rgba(0, 0, 0, 0.36),
    0 0 44px rgba(111, 211, 255, 0.3);
  transform: translateY(-2px);
}

.vibe-node-chip:hover .vibe-chip-label,
.vibe-node-chip:focus-within .vibe-chip-label {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 14, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 26px rgba(0, 0, 0, 0.2),
    0 0 24px rgba(111, 211, 255, 0.12);
}

.vibe-quote {
  margin: 0;
  display: grid;
  gap: 16px;
  padding: clamp(20px, 2.4vw, 28px) 0 0;
  border-top: 1px solid rgba(224, 162, 74, 0.62);
}

.vibe-quote p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.95rem, 4.2vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.96;
  max-width: 17ch;
}

.vibe-quote footer {
  max-width: 82ch;
  color: var(--ink-soft);
  font-size: clamp(0.96rem, 1.08vw, 1.03rem);
}

.vibe-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.vibe-card {
  min-width: 0;
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(244, 241, 234, 0.03), rgba(244, 241, 234, 0.016)),
    rgba(11, 11, 15, 0.84);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.vibe-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.vibe-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.38rem, 2.4vw, 1.74rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.vibe-card p {
  margin: 0;
  color: var(--ink-soft);
}

.vibe-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-mute);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.vibe-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(224, 162, 74, 0.12);
}

.vibe-status-dot-online {
  background: #6fd3ff;
  box-shadow: 0 0 0 6px rgba(111, 211, 255, 0.12);
}

.vibe-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vibe-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(224, 162, 74, 0.22);
  border-radius: 999px;
  background: rgba(224, 162, 74, 0.06);
  color: var(--ink);
  font-size: 0.84rem;
  white-space: nowrap;
}


@keyframes vibe-core-orb {
  0%,
  100% {
    opacity: 0.82;
    transform: translate(-50%, -50%) scale(0.985);
  }
  50% {
    opacity: 0.98;
    transform: translate(-50%, -50%) scale(1.02);
  }
}

@keyframes vibe-nebula {
  0%,
  100% {
    opacity: 0.44;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.02);
  }
}

@keyframes vibe-flow {
  from {
    stroke-dashoffset: 100;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes vibe-core-rays {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes vibe-core-flicker {
  0%,
  100% {
    filter: blur(0.6px) brightness(1);
  }
  25% {
    filter: blur(0.6px) brightness(1.03);
  }
  52% {
    filter: blur(0.6px) brightness(0.99);
  }
  78% {
    filter: blur(0.6px) brightness(1.04);
  }
}

@keyframes vibe-orbit-a {
  from {
    transform: rotate(0deg) translateX(56px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(56px) rotate(-360deg);
  }
}

@keyframes vibe-orbit-b {
  from {
    transform: rotate(80deg) translateX(43px) rotate(-80deg);
  }
  to {
    transform: rotate(440deg) translateX(43px) rotate(-440deg);
  }
}

@keyframes vibe-orbit-c {
  from {
    transform: rotate(210deg) translateX(50px) rotate(-210deg);
  }
  to {
    transform: rotate(-150deg) translateX(50px) rotate(150deg);
  }
}

@keyframes vibe-orbit-d {
  from {
    transform: rotate(150deg) translateX(34px) rotate(-150deg);
    opacity: 0.38;
  }
  50% {
    opacity: 0.82;
  }
  to {
    transform: rotate(510deg) translateX(34px) rotate(-510deg);
    opacity: 0.38;
  }
}

@media (max-width: 1080px) {
  .vibe-hero,
  .vibe-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .vibe-quote p {
    max-width: 13ch;
  }
}

@media (max-width: 700px) {
  .vibe-shell {
    gap: 22px;
  }

  .vibe-quote {
    margin-top: 14px;
    padding-top: 28px;
  }

  .vibe-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .vibe-status {
    letter-spacing: 0.14em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vibe-core-orb,
  .vibe-core-rays,
  .vibe-core-sparks,
  .vibe-core-spark,
  .vibe-core-orb::before,
  .vibe-core-orb::after,
  .vibe-connector {
    animation: none;
  }

  .vibe-connector-pulse {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    stroke-opacity: calc(var(--line-opacity) * 0.56);
  }

  .vibe-field-inner,
  .vibe-nodes,
  .vibe-node-chip,
  .vibe-chip-ic,
  .vibe-chip-label {
    transition: none !important;
  }
}

.desktop-only{display:none}
