/* ============================================================
   LEVEND TURGAY — levendturgay.com
   Stylesheet — 10-section single-page
   ============================================================ */

/* ----- CSS TOKENS ----- */
:root {
  /* Base backgrounds */
  --bg-page: #05070A;
  --bg-section: #07090C;
  --bg-section-alt: #08090C;

  /* Text */
  --text-primary: #F2F2F0;
  --text-secondary: rgba(242, 242, 240, 0.75);
  --text-muted: rgba(242, 242, 240, 0.55);
  --text-faint: rgba(242, 242, 240, 0.4);

  /* Accents */
  --laser-red: #FF2D3A;
  --laser-orange: #FF6A4D;
  --amber: #FFC178;
  --amber-soft: rgba(255, 193, 120, 0.9);
  --cyan-signal: #7FD4FF;
  --green-active: #3DDC97;

  /* Borders */
  --border: rgba(242, 242, 240, 0.15);
  --border-soft: rgba(242, 242, 240, 0.12);
  --border-hairline: rgba(242, 242, 240, 0.1);

  /* Fonts */
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  /* Sizing */
  --section-padding-x: clamp(24px, 5vw, 64px);
  --section-max-width: 1280px;
  --section-narrow-width: 720px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* Accessibility utilities */
.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;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--laser-red);
  color: var(--text-primary);
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  z-index: 1000;
  transition: top 200ms ease;
}
.skip-link:focus {
  top: 8px;
}

/* ----- SECTION SCAFFOLDING ----- */
.section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.section-inner {
  max-width: var(--section-max-width);
  margin: 0 auto;
  padding: 72px var(--section-padding-x);
}

.section-inner-narrow {
  max-width: var(--section-narrow-width);
  margin: 0 auto;
  padding: 96px var(--section-padding-x);
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-faint);
}
.section-tag.subtag {
  margin-top: 48px;
  margin-bottom: 28px;
  letter-spacing: 2px;
}
.section-tag.amber {
  color: rgba(255, 193, 120, 0.7);
}
.tag-number {
  flex-shrink: 0;
}
.tag-number.amber { color: rgba(255, 193, 120, 0.7); }
.tag-number.amber-soft { color: rgba(255, 193, 120, 0.55); }
.tag-line {
  flex: 1;
  height: 0.5px;
  background: var(--border-soft);
}
.tag-line.amber { background: rgba(255, 193, 120, 0.2); }
.tag-line.amber-soft { background: rgba(255, 193, 120, 0.15); }
.tag-right {
  flex-shrink: 0;
  letter-spacing: 2px;
}
.tag-right.amber { color: rgba(255, 193, 120, 0.9); }
.tag-right.cyan { color: rgba(127, 212, 255, 0.9); }
.tag-right.signal-pulse {
  color: rgba(255, 106, 77, 0.7);
  animation: pulseGentle 2s ease-in-out infinite;
}

@keyframes pulseGentle {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

/* ============================================================
   SECTION 01 — HERO
   ============================================================ */
.section-hero {
  min-height: 100vh;
  background: var(--bg-page);
  display: flex;
  align-items: center;
  position: relative;
  padding: 64px 0;
}

.hero-svg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-svg-layer svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--section-padding-x);
  max-width: var(--section-max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-signal {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.signal-dot {
  width: 6px;
  height: 6px;
  background: var(--green-active);
  border-radius: 50%;
  animation: pulseGentle 2s ease-in-out infinite;
}
.signal-text {
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  opacity: 0.75;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(42px, 9vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  word-spacing: 0.12em;
  font-weight: 400;
}
.hero-headline .word-i {
  color: rgba(242, 242, 240, 0.55);
  display: inline-block;
  margin-right: 0.25em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.hero-headline .word {
  display: inline-block;
  margin-right: 0.3em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.hero-headline.lit .word-i,
.hero-headline.lit .word {
  opacity: 1;
  transform: translateY(0);
}
.hero-headline.lit .word-i {
  opacity: 0.55;
}

.hero-subhead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2.3vw, 24px);
  line-height: 1.45;
  color: var(--text-primary);
  opacity: 0.75;
  max-width: 620px;
  margin: 18px 0 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 44px;
}
.badge {
  padding: 10px 18px;
  border: 0.5px solid rgba(242, 242, 240, 0.25);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  border-radius: 2px;
  opacity: 0.8;
}
.badge-primary {
  border-color: rgba(255, 45, 58, 0.6);
  color: var(--laser-orange);
  opacity: 1;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.hero-scroll-cue span {
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  opacity: 0.5;
}
.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--laser-red), transparent);
}

/* ============================================================
   SECTION 02 — PROPOSITION
   ============================================================ */
.section-proposition {
  background: var(--bg-section);
  border-top: 0.5px solid rgba(255, 45, 58, 0.15);
}

.proposition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-bottom: 48px;
}

.prop-pillar {
  padding: 0 28px;
  border-right: 0.5px solid var(--border-soft);
}
.prop-pillar:first-child { padding-left: 0; }
.prop-pillar:last-child {
  padding-right: 0;
  border-right: none;
}

.prop-tag {
  color: rgba(255, 106, 77, 0.9);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
}
.prop-title {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.2;
  margin-bottom: 14px;
  font-weight: 400;
}
.prop-body {
  color: rgba(242, 242, 240, 0.68);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 18px;
}
.prop-proof {
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
}

.proposition-closer {
  border-top: 0.5px solid rgba(242, 242, 240, 0.18);
  padding-top: 36px;
  max-width: 720px;
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.4;
  opacity: 0.9;
}

/* ============================================================
   SECTION 03 — PRESENT DAY
   ============================================================ */
.section-present {
  background: linear-gradient(180deg, #0A0D12 0%, #141820 50%, #0A0D12 100%);
  padding: 16px 0;
}
.section-present .section-inner {
  padding-top: 72px;
  padding-bottom: 72px;
}

.present-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

.present-role-label {
  color: rgba(255, 193, 120, 0.85);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
}

.present-company {
  color: #F5E9D4;
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  font-weight: 400;
}
.present-subtitle {
  color: rgba(245, 233, 212, 0.65);
  font-size: 14px;
  font-style: italic;
  margin-bottom: 28px;
}
.present-body {
  color: rgba(245, 233, 212, 0.88);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.present-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 32px 0 24px;
}
.chip {
  padding: 6px 12px;
  border: 0.5px solid rgba(242, 242, 240, 0.2);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  border-radius: 2px;
}
.chip.amber {
  border-color: rgba(255, 193, 120, 0.35);
  color: rgba(255, 193, 120, 0.9);
}

.present-thesis {
  color: rgba(245, 233, 212, 0.5);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  padding-top: 20px;
  border-top: 0.5px solid rgba(255, 193, 120, 0.2);
  max-width: 480px;
}

.present-stats {
  padding: 28px;
  border: 0.5px solid rgba(255, 193, 120, 0.25);
  border-radius: 2px;
  background: rgba(255, 193, 120, 0.02);
}
.stats-heading {
  color: rgba(255, 193, 120, 0.7);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 0.5px solid rgba(255, 193, 120, 0.18);
}
.stat-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 0.5px solid rgba(255, 193, 120, 0.18);
  gap: 12px;
}
.stat-row:last-child { border-bottom: none; }
.stat-label {
  color: rgba(255, 193, 120, 0.7);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
}
.stat-value-wrap {
  text-align: right;
}
.stat-value {
  color: #F5E9D4;
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1;
}
.stat-suffix {
  color: rgba(245, 233, 212, 0.6);
  font-size: 11px;
  font-style: italic;
  margin-left: 4px;
}

/* ============================================================
   SECTION 04 — SIGNALS
   ============================================================ */
.section-signals {
  background: var(--bg-section);
}

.signals-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.signal-tile {
  border: 0.5px solid var(--border);
  border-radius: 2px;
  padding: 28px 24px;
  position: relative;
  background: rgba(255, 255, 255, 0.015);
  transition: border-color 700ms ease;
}
.signal-tile.lit {
  border-color: rgba(255, 45, 58, 0.55);
}
.signal-tile.lit::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 1px;
  background: var(--laser-red);
  opacity: 0.7;
}
.signal-wide {
  grid-column: 1 / 2;
}
.signal-full {
  grid-column: 1 / -1;
  margin-top: 4px;
}
.signal-label {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
}
.signal-value-wrap {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.signal-counter {
  font-weight: 400;
}
.signal-suffix {
  font-size: 20px;
  color: rgba(242, 242, 240, 0.6);
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 400;
}
.signal-desc {
  color: rgba(242, 242, 240, 0.55);
  font-size: 12px;
  line-height: 1.5;
  margin-top: 14px;
}
.signal-year {
  color: rgba(255, 106, 77, 0.9);
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  margin-right: 6px;
}

/* ============================================================
   SECTION 05 — SELECTED WORK
   ============================================================ */
.section-work {
  background: var(--bg-section);
}

.work-intro {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.25;
  opacity: 0.92;
  font-weight: 400;
  max-width: 620px;
  margin-bottom: 8px;
}
.work-intro-accent {
  color: var(--laser-orange);
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.75em;
}

/* ----- Featured track (horizontal scroll) ----- */
.work-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 24px var(--section-padding-x) 32px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: max(var(--section-padding-x), calc((100vw - var(--section-max-width)) / 2));
  max-width: var(--section-max-width);
  margin: 0 auto;
}
.work-track::-webkit-scrollbar { height: 6px; }
.work-track::-webkit-scrollbar-track { background: rgba(242, 242, 240, 0.05); }
.work-track::-webkit-scrollbar-thumb { background: rgba(255, 45, 58, 0.5); border-radius: 3px; }

.work-card {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 0.5px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}
.work-featured {
  width: 560px;
}

.work-visual {
  width: 100%;
  aspect-ratio: 2/1;
  background: #0C0F14;
  position: relative;
  overflow: hidden;
  border-bottom: 0.5px solid var(--border-soft);
  cursor: none;
}
.work-visual .frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 480ms cubic-bezier(0.65, 0.05, 0.36, 1), opacity 480ms ease;
}
.work-visual .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0C0F14;
}
.work-visual .frame.outgoing {
  transform: translateX(-100%);
  opacity: 0;
}
.work-visual .frame.incoming-start {
  transform: translateX(100%);
  opacity: 1;
  transition: none;
}
.work-visual .frame.incoming {
  transform: translateX(0);
  opacity: 1;
}

.flash {
  position: absolute;
  inset: 0;
  background: var(--text-primary);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity 70ms ease-out;
  z-index: 5;
}
.flash.fire {
  opacity: 0.85;
  transition: opacity 30ms ease-in;
}

.reticle {
  position: absolute;
  width: 22px;
  height: 22px;
  margin-left: -11px;
  margin-top: -11px;
  pointer-events: none;
  z-index: 6;
  opacity: 0;
  transition: opacity 150ms ease;
}
.reticle.on { opacity: 1; }

.counter-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(7, 9, 12, 0.7);
  color: rgba(242, 242, 240, 0.75);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  padding: 3px 6px;
  border-radius: 2px;
  border: 0.5px solid var(--border);
  z-index: 4;
}
.counter-badge.amber {
  color: rgba(255, 193, 120, 0.85);
  border-color: rgba(255, 193, 120, 0.3);
}

.work-body {
  padding: 24px 28px 28px;
}
.work-tag {
  color: rgba(255, 106, 77, 0.9);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}
.work-title {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.work-category {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 18px;
  font-style: italic;
}
.work-hook {
  color: rgba(242, 242, 240, 0.85);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.work-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.work-chip {
  padding: 6px 12px;
  border: 0.5px solid rgba(242, 242, 240, 0.2);
  color: rgba(242, 242, 240, 0.7);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  border-radius: 2px;
}
.work-role {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  padding-top: 16px;
  border-top: 0.5px solid var(--border-soft);
}

/* ----- Supporting six grid ----- */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.work-supporting {
  display: flex;
  flex-direction: column;
}
.work-supporting .work-visual {
  aspect-ratio: 2.1/1;
}
.work-supporting .work-body {
  padding: 18px 20px 20px;
}
.work-tag-small {
  color: rgba(255, 106, 77, 0.9);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.work-title-small {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 6px;
  font-weight: 400;
}
.work-category-small {
  color: var(--text-muted);
  font-size: 11px;
  margin-bottom: 12px;
  font-style: italic;
}
.work-hook-small {
  color: rgba(242, 242, 240, 0.75);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 14px;
}
.work-role-small {
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  padding-top: 10px;
  border-top: 0.5px solid var(--border-hairline);
}

/* ----- Bridge transition ----- */
.bridge-divider {
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255, 45, 58, 0.4), rgba(255, 159, 67, 0.5), transparent);
  margin: 40px 0 0;
}

.bridge-panel {
  background: linear-gradient(180deg, #0A0D12 0%, #15181F 100%);
}
.bridge-panel .section-inner {
  padding-top: 72px;
  padding-bottom: 72px;
}

.bridge-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.bridge-date {
  color: rgba(255, 193, 120, 0.9);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  margin-bottom: 18px;
}
.bridge-title {
  color: #F5E9D4;
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  font-weight: 400;
}
.bridge-subtitle {
  color: rgba(245, 233, 212, 0.65);
  font-size: 12px;
  font-style: italic;
  margin-bottom: 24px;
}
.bridge-body {
  color: rgba(245, 233, 212, 0.85);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.bridge-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.bridge-role {
  color: rgba(245, 233, 212, 0.5);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  padding-top: 18px;
  border-top: 0.5px solid rgba(255, 193, 120, 0.2);
}
.work-bridge-img .work-visual {
  aspect-ratio: 1/1;
  border: 0.5px solid rgba(255, 193, 120, 0.25);
  background: #15181F;
}

/* ============================================================
   SECTION 06 — CAPABILITIES
   ============================================================ */
.section-capabilities {
  background: linear-gradient(180deg, var(--bg-section) 0%, #0D0E12 100%);
}

.cap-headline {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.25;
  opacity: 0.92;
  font-weight: 400;
  max-width: 620px;
}
.cap-intro {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 12px;
  margin-bottom: 48px;
  max-width: 620px;
}

.cap-chart {
  position: relative;
  height: 340px;
  margin-bottom: 32px;
}
.cap-zones {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
}
.zone-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2.5px;
}
.zone-label.zone-red { color: rgba(255, 45, 58, 0.85); }
.zone-label.zone-mid {
  color: rgba(255, 170, 100, 0.8);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.zone-label.zone-amber { color: rgba(255, 193, 120, 0.9); }

.cap-axis {
  position: absolute;
  top: 165px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--laser-red) 0%, #FF6A4D 35%, #FFAA64 65%, var(--amber) 100%);
  opacity: 0.5;
}
.cap-glow {
  position: absolute;
  top: 148px;
  left: 0;
  right: 0;
  height: 35px;
  background: linear-gradient(to right, rgba(255, 45, 58, 0.1) 0%, rgba(255, 106, 77, 0.08) 35%, rgba(255, 170, 100, 0.08) 65%, rgba(255, 193, 120, 0.1) 100%);
  filter: blur(8px);
  pointer-events: none;
}

.cap-nodes {
  position: absolute;
  inset: 0;
}
.cap-node {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 5;
}
.cap-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: transform 200ms ease;
}
.cap-node:hover .cap-dot {
  transform: scale(1.6);
}
.cap-label {
  position: absolute;
  color: rgba(242, 242, 240, 0.65);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  pointer-events: none;
  transition: color 200ms ease;
  white-space: nowrap;
}
.cap-node:hover .cap-label { color: var(--text-primary); }
.cap-label.above {
  bottom: 12px;
  left: 50%;
  transform-origin: left bottom;
  transform: rotate(-45deg);
}
.cap-label.below {
  top: 12px;
  left: 50%;
  transform-origin: left top;
  transform: rotate(45deg);
}
.cap-tooltip {
  position: absolute;
  background: #111418;
  border: 0.5px solid rgba(242, 242, 240, 0.3);
  border-radius: 2px;
  padding: 10px 14px;
  min-width: 220px;
  max-width: 260px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 20;
  left: 50%;
  transform: translateX(-50%);
  bottom: 80px;
}
.cap-tooltip.below-tt {
  top: 80px;
  bottom: auto;
}
.cap-node:hover .cap-tooltip { opacity: 1; }
.cap-tt-title {
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}
.cap-tt-desc {
  color: rgba(242, 242, 240, 0.7);
  font-size: 12px;
  line-height: 1.4;
}

.cap-scale {
  display: flex;
  justify-content: space-between;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid var(--border-hairline);
  margin-bottom: 28px;
}

.cap-zones-commentary {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
}
.cap-zone-card p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.55;
}
.cap-zone-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
}
.cap-zone-title.red { color: rgba(255, 45, 58, 0.9); }
.cap-zone-title.mid { color: rgba(255, 170, 100, 0.9); }
.cap-zone-title.amber { color: rgba(255, 193, 120, 0.9); }

/* ============================================================
   SECTION 07 — JOURNEY
   ============================================================ */
.section-journey {
  background: linear-gradient(180deg, var(--bg-section) 0%, #0A0C11 100%);
}

.journey-headline {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.25;
  opacity: 0.92;
  font-weight: 400;
  max-width: 620px;
}
.journey-intro {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 10px;
  margin-bottom: 64px;
  max-width: 620px;
}

.journey-chart {
  position: relative;
  height: 360px;
  margin-bottom: 0;
}
.journey-axis {
  position: absolute;
  top: 180px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--laser-red) 0%, #FF5538 18%, #FF6A4D 38%, #FFAA64 62%, var(--amber) 88%, #FFD8A0 100%);
  opacity: 0.55;
}
.journey-glow {
  position: absolute;
  top: 166px;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(to right, rgba(255, 45, 58, 0.1), rgba(255, 193, 120, 0.1));
  filter: blur(10px);
  pointer-events: none;
}
.journey-ticks {
  position: absolute;
  top: 185px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: rgba(242, 242, 240, 0.25);
  pointer-events: none;
}

.journey-nodes {
  position: absolute;
  inset: 0;
}
.jn-node {
  position: absolute;
  transform: translate(-50%, 0);
  cursor: pointer;
  z-index: 5;
}
.jn-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: transform 200ms ease;
}
.jn-node.large .jn-dot {
  width: 14px;
  height: 14px;
}
.jn-node:hover .jn-dot {
  transform: scale(1.6);
}
.jn-year {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: rgba(242, 242, 240, 0.45);
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
}
.jn-title {
  position: absolute;
  font-family: var(--font-serif);
  font-size: 14px;
  color: rgba(242, 242, 240, 0.85);
  white-space: nowrap;
  left: 50%;
  line-height: 1.2;
}
.jn-node.top .jn-year { bottom: 22px; }
.jn-node.top .jn-title {
  bottom: 38px;
  transform-origin: left bottom;
  transform: translateX(-50%) rotate(-30deg);
}
.jn-node.bottom .jn-year { top: 22px; }
.jn-node.bottom .jn-title {
  top: 38px;
  transform-origin: left top;
  transform: translateX(-50%) rotate(30deg);
}
.jn-tooltip {
  position: absolute;
  background: #111418;
  border: 0.5px solid rgba(242, 242, 240, 0.3);
  border-radius: 2px;
  padding: 12px 16px;
  min-width: 240px;
  max-width: 280px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 20;
  left: 50%;
  transform: translateX(-50%);
}
.jn-node.top .jn-tooltip { bottom: 150px; }
.jn-node.bottom .jn-tooltip { top: 150px; }
.jn-node:hover .jn-tooltip { opacity: 1; }
.jn-tip-head {
  color: rgba(255, 106, 77, 0.9);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.jn-tip-title {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.jn-tip-sub {
  color: rgba(242, 242, 240, 0.6);
  font-size: 11px;
  font-style: italic;
  margin-bottom: 10px;
}
.jn-tip-desc {
  color: rgba(242, 242, 240, 0.75);
  font-size: 12px;
  line-height: 1.5;
}

.journey-eras {
  padding: 40px 0 0;
  margin-top: 48px;
  border-top: 0.5px solid var(--border-hairline);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.journey-era p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.55;
}
.era-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  margin-bottom: 8px;
}
.era-title.red { color: rgba(255, 45, 58, 0.9); }
.era-title.mid { color: rgba(255, 106, 77, 0.9); }
.era-title.amber { color: rgba(255, 193, 120, 0.9); }

/* ============================================================
   SECTION 08 — PHILOSOPHY
   ============================================================ */
.section-philosophy {
  background: linear-gradient(180deg, #0A0C11 0%, #14161C 55%, #0A0C11 100%);
}

.philosophy-body {
  position: relative;
}
.philosophy-quote-mark {
  position: absolute;
  left: -44px;
  top: -30px;
  font-family: var(--font-serif);
  font-size: 120px;
  line-height: 1;
  color: rgba(255, 106, 77, 0.35);
  pointer-events: none;
}

.philosophy-p1 {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.55;
  letter-spacing: -0.005em;
  font-weight: 400;
}
.philosophy-p1 .soft { color: rgba(242, 242, 240, 0.85); }

.philosophy-p2 {
  color: rgba(242, 242, 240, 0.85);
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.6;
  margin-top: 28px;
  letter-spacing: -0.005em;
}

.philosophy-p3 {
  color: rgba(242, 242, 240, 0.75);
  font-family: var(--font-serif);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
  margin-top: 24px;
  letter-spacing: -0.005em;
}

.philosophy-signature {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 0.5px solid rgba(255, 193, 120, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.philosophy-name {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 28px;
  font-style: italic;
  letter-spacing: -0.01em;
}
.philosophy-dateline {
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
}

/* ============================================================
   SECTION 09 — ACTIVE VENTURES
   ============================================================ */
.section-ventures {
  background: var(--bg-section-alt);
}

.ventures-headline {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 28px);
  line-height: 1.3;
  opacity: 0.92;
  font-weight: 400;
  max-width: 620px;
  margin-bottom: 40px;
}

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

.venture-card {
  border: 0.5px solid rgba(127, 212, 255, 0.25);
  border-radius: 2px;
  background: rgba(127, 212, 255, 0.02);
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.venture-card.placeholder-card {
  border: 0.5px dashed rgba(127, 212, 255, 0.3);
  background: transparent;
}

.venture-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}
.venture-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-signal);
  animation: pulseGentle 2s ease-in-out infinite;
}
.venture-status-text {
  color: rgba(127, 212, 255, 0.9);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
}
.venture-name {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  font-weight: 400;
}
.venture-subline {
  color: var(--text-muted);
  font-size: 12px;
  font-style: italic;
  margin-bottom: 18px;
}
.venture-desc {
  color: rgba(242, 242, 240, 0.8);
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
}
.venture-role {
  color: rgba(127, 212, 255, 0.7);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 0.5px solid rgba(127, 212, 255, 0.18);
}
.placeholder-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0;
}
.placeholder-plus {
  width: 36px;
  height: 36px;
  border: 0.5px solid rgba(127, 212, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: rgba(127, 212, 255, 0.7);
  font-size: 18px;
}
.placeholder-label {
  color: rgba(127, 212, 255, 0.7);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.placeholder-hint {
  color: var(--text-faint);
  font-size: 12px;
  font-style: italic;
  max-width: 200px;
  line-height: 1.5;
}

/* ============================================================
   BIO — AI-READABLE LONG VERSION (collapsible)
   ============================================================ */
.bio-expanded {
  background: var(--bg-section);
  padding: 0 var(--section-padding-x);
}
.bio-details {
  max-width: var(--section-narrow-width);
  margin: 64px auto;
  border: 0.5px solid var(--border);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.01);
}
.bio-summary {
  cursor: pointer;
  padding: 22px 28px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
}
.bio-summary::-webkit-details-marker { display: none; }
.bio-summary-label {
  color: rgba(255, 106, 77, 0.9);
}
.bio-summary-title {
  flex: 1;
  letter-spacing: 0;
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: rgba(242, 242, 240, 0.85);
  text-transform: none;
}
.bio-summary-hint {
  color: var(--text-faint);
  font-size: 10px;
}
details[open] .bio-summary-hint { display: none; }
.bio-body {
  padding: 8px 36px 40px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.75;
}
.bio-body h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--text-primary);
  margin: 24px 0 16px;
  font-weight: 400;
}
.bio-body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: rgba(242, 242, 240, 0.92);
  margin: 32px 0 12px;
  font-weight: 400;
}
.bio-body p {
  margin: 0 0 16px;
}

/* ============================================================
   SECTION 10 — CONTACT
   ============================================================ */
.section-contact {
  background: linear-gradient(180deg, var(--bg-section) 0%, #0C0E14 60%, var(--bg-section) 100%);
}
.section-contact .section-inner {
  padding: 88px var(--section-padding-x) 64px;
}

.contact-headline {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 28px 0 20px;
  max-width: 720px;
  font-weight: 400;
}
.contact-intro {
  color: rgba(242, 242, 240, 0.7);
  font-size: 15px;
  line-height: 1.65;
  max-width: 720px;
  margin-bottom: 56px;
}

.contact-doors {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 18px;
  margin-bottom: 56px;
}

.door {
  border: 0.5px solid var(--border);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.015);
  padding: 28px 26px 26px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: border-color 300ms ease, background 300ms ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.door:hover {
  border-color: rgba(255, 106, 77, 0.5);
  background: rgba(255, 106, 77, 0.03);
}
.door-form {
  cursor: default;
}
.door-label {
  color: rgba(255, 106, 77, 0.85);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
}
.door-title {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
  font-weight: 400;
}
.door-desc {
  color: rgba(242, 242, 240, 0.6);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}
.door-email {
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 14px;
  word-break: break-all;
}
.door-action {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  padding-top: 16px;
  border-top: 0.5px solid var(--border-soft);
  transition: color 200ms ease;
}
.door:hover .door-action-text {
  color: var(--laser-orange);
}

.field {
  display: block;
  margin-bottom: 12px;
}
.field-label {
  display: block;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.field-input {
  width: 100%;
  background: rgba(242, 242, 240, 0.04);
  border: 0.5px solid rgba(242, 242, 240, 0.18);
  border-radius: 2px;
  padding: 8px 10px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 13px;
  transition: border-color 200ms ease;
}
.field-input:focus {
  outline: none;
  border-color: rgba(255, 106, 77, 0.6);
}
textarea.field-input {
  min-height: 58px;
  resize: vertical;
  font-family: var(--font-sans);
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.send-btn {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 0.5px solid rgba(255, 45, 58, 0.6);
  color: var(--laser-orange);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 200ms ease;
  margin-top: 6px;
}
.send-btn:hover {
  background: rgba(255, 45, 58, 0.1);
}
.send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.form-status {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  min-height: 14px;
}
.form-status.success { color: var(--green-active); }
.form-status.error { color: var(--laser-red); }

/* ----- Footer ----- */
.site-footer {
  padding-top: 36px;
  border-top: 0.5px solid var(--border-hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-id {
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
}
.footer-handcraft {
  color: var(--text-faint);
  font-size: 11px;
  font-style: italic;
}
.footer-signal {
  color: rgba(255, 106, 77, 0.6);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  animation: pulseGentle 2s ease-in-out infinite;
}

/* ============================================================
   RESPONSIVE — MOBILE BREAKPOINTS
   ============================================================ */

/* Tablet */
@media (max-width: 900px) {
  .proposition-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .prop-pillar {
    padding: 0;
    border-right: none;
    padding-bottom: 28px;
    border-bottom: 0.5px solid var(--border-soft);
  }
  .prop-pillar:last-child { border-bottom: none; }

  .present-grid,
  .bridge-grid,
  .journey-eras,
  .cap-zones-commentary {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .signals-grid {
    grid-template-columns: 1fr 1fr;
  }
  .signal-wide { grid-column: auto; }
  .signal-full { grid-column: 1 / -1; }

  .work-grid,
  .ventures-grid,
  .contact-doors {
    grid-template-columns: 1fr;
  }

  .work-featured { width: calc(100vw - 48px); }
}

/* Mobile */
@media (max-width: 640px) {
  .section-inner {
    padding: 56px var(--section-padding-x);
  }
  .section-inner-narrow {
    padding: 72px var(--section-padding-x);
  }

  .hero-headline {
    font-size: clamp(40px, 13vw, 64px);
  }
  .hero-badges {
    gap: 8px;
  }
  .badge {
    padding: 8px 12px;
    font-size: 10px;
  }

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

  .section-tag {
    flex-wrap: wrap;
  }
  .tag-right {
    order: 3;
    width: 100%;
    margin-top: 6px;
  }

  .cap-chart { height: 300px; }
  .cap-label {
    font-size: 8px;
  }

  .journey-chart { height: 420px; }
  .jn-title { font-size: 11px; }

  .philosophy-quote-mark {
    left: -8px;
    top: -10px;
    font-size: 80px;
  }

  .contact-headline {
    font-size: clamp(22px, 6vw, 28px);
  }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  :root {
    --section-padding-x: 20px;
  }
  .hero-headline {
    font-size: 38px;
  }
  .work-featured {
    width: calc(100vw - 40px);
  }
  .cap-label { display: none; }
  .jn-title { display: none; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-headline .word-i,
  .hero-headline .word {
    opacity: 1;
    transform: none;
  }
  .hero-headline .word-i { opacity: 0.55; }
}
