/* ═══════════════════════════════════════════════════════════
   PORTFOLIO 2026 — MAIN STYLESHEET
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --white:       #FFFFFF;
  --off-white:   #F8F8FC;
  --light:       #F0F0F8;
  --border:      #E4E4F0;
  --text-muted:  #8888AA;
  --text-body:   #444466;
  --text-heading:#14142B;
  --accent:      #6C63FF;
  --accent-dark: #4F46E5;
  --accent-soft: #EEF0FF;
  --accent2:     #FF6584;
  --accent2-soft:#FFF0F3;
  --green:       #22C55E;
  --green-soft:  #F0FFF4;

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  --shadow-sm:   0 2px 8px rgba(108,99,255,.08);
  --shadow-md:   0 8px 32px rgba(108,99,255,.12);
  --shadow-lg:   0 24px 64px rgba(108,99,255,.16);

  --trans:       all .3s cubic-bezier(.4,0,.2,1);
  --trans-slow:  all .6s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--accent); }

/* ─── SCROLL REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transition: opacity .7s cubic-bezier(.4,0,.2,1),
              transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal--up    { transform: translateY(40px); }
.reveal--left  { transform: translateX(-50px); }
.reveal--right { transform: translateX(50px); }
.reveal.visible {
  opacity: 1;
  transform: translate(0);
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--trans);
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(108,99,255,.35);
}
.btn--primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 8px 32px rgba(108,99,255,.5);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--text-heading);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(108,99,255,.3);
}
.btn--white {
  background: var(--white);
  color: var(--accent);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn--white:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--contact {
  background: var(--accent);
  color: var(--white);
  padding: 10px 20px;
  font-size: .85rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 16px rgba(108,99,255,.3);
}
.btn--contact:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 24px rgba(108,99,255,.45);
  transform: translateY(-1px);
}

/* ─── TAGS & PILLS ──────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: .78rem;
  font-weight: 500;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(108,99,255,.15);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--radius-xl);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.pill--personal {
  background: var(--accent-soft);
  color: var(--accent);
}
.pill--personal::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.pill--team {
  background: var(--accent2-soft);
  color: var(--accent2);
}
.pill--team::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent2);
  display: inline-block;
}
.pill--category {
  background: var(--light);
  color: var(--text-muted);
}

/* ─── SECTION SHARED ────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  height: 1px;
  width: 32px;
  background: var(--accent);
  opacity: .4;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: var(--trans);
  animation: slideDown .6s cubic-bezier(.4,0,.2,1) both;
}
.header.scrolled {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,.04);
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav { display: flex; align-items: center; gap: 40px; }
.nav__logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-heading);
  text-decoration: none;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  text-decoration: none;
  color: var(--text-body);
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  transition: var(--trans);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s cubic-bezier(.4,0,.2,1);
  transform-origin: left;
}
.nav__link:hover,
.nav__link.active {
  color: var(--accent);
}
.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 80px;
}

/* Image side */
.hero__image-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero__image-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.hero__profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.hero__image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--accent-soft);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--accent);
  font-size: .9rem;
  font-weight: 500;
  border: 2px dashed rgba(108,99,255,.25);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero__image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-soft) 0%, #F0F0FF 100%);
}
.hero__image-placeholder > * { position: relative; z-index: 1; }
.hero__image-deco {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: .12;
  animation: float 6s ease-in-out infinite;
}
.hero__image-deco--1 {
  width: 180px; height: 180px;
  bottom: -50px; right: -50px;
  animation-delay: 0s;
}
.hero__image-deco--2 {
  width: 100px; height: 100px;
  top: -30px; left: -30px;
  background: var(--accent2);
  animation-delay: 3s;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: var(--radius-xl);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-heading);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: pulse 2s ease-in-out infinite;
}

/* Content side */
.hero__content { display: flex; flex-direction: column; gap: 24px; }
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
}
.hero__eyebrow-line {
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.hero__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.1;
  letter-spacing: -.03em;
}
.hero__title-highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 480px;
}
.hero__subtitle strong { color: var(--text-heading); font-weight: 600; }
.hero__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hero__cta-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 0; right: 0;
  width: fit-content;
  margin: 0 auto;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  animation: fadeInUp 1s .8s both;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* Background shapes */
.hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__bg-shape--1 {
  width: 600px; height: 600px;
  top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(108,99,255,.06) 0%, transparent 70%);
}
.hero__bg-shape--2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(255,101,132,.06) 0%, transparent 70%);
}

/* ═══════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════ */
.stats {
  padding: 48px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stats__item {
  flex: 1;
  text-align: center;
  padding: 16px 32px;
}
.stats__number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1;
  margin-bottom: 8px;
}
.stats__number::after { content: '+'; color: var(--accent); }
.stats__label {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.stats__divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   PROJECTS
   ═══════════════════════════════════════════════════════════ */
.projects {
  padding-top: 120px;
  padding-bottom: 100px;
  background: var(--white);
}

/* ── Sticky toggle bar ─────────────────────────────────── */
.projects__sticky-bar {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  margin-bottom: 0;
}

/* ── Toggle pill ───────────────────────────────────────── */
.projects__toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 5px;
  width: fit-content;
}
.toggle__btn {
  position: relative;
  z-index: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 28px;
  border-radius: var(--radius-xl);
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color .3s ease;
  white-space: nowrap;
  font-family: inherit;
}
.toggle__btn.active { color: var(--text-heading); }
.toggle__slider {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all .35s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}

/* ── Project list ──────────────────────────────────────── */
.project-list {}

/* ── Individual project section ────────────────────────── */
.project-section {
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1),
              transform .6s cubic-bezier(.4,0,.2,1);
}
.project-section.ps-visible {
  opacity: 1;
  transform: translateY(0);
}
.project-section.hidden {
  display: none;
}

.project-section__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 88px;
  align-items: center;
}
.project-section--reverse .project-section__inner {
  grid-template-columns: 1fr 1.15fr;
}
.project-section--reverse .project-section__visual { order: 2; }
.project-section--reverse .project-section__content { order: 1; }

/* ── Visual / image placeholder ────────────────────────── */
.project-section__visual {
  position: relative;
  display: flex;
  align-items: center;
}
.project-section__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.project-section:hover .project-section__image {
  transform: translateY(-4px);
}
.project-section__image--fit-height {
  width: auto;
  height: 100%;
  max-height: 480px;
}
.project-section__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  background: linear-gradient(135deg, var(--ph-a), var(--ph-b));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  overflow: hidden;
  position: relative;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.project-section__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -55deg,
      rgba(255,255,255,.04) 0px,
      rgba(255,255,255,.04) 1px,
      transparent 1px,
      transparent 28px
    );
}
.project-section__placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,.12) 0%, transparent 60%);
}
.project-section__placeholder svg {
  position: relative;
  z-index: 1;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.project-section:hover .project-section__placeholder {
  transform: translateY(-4px);
}
.project-section:hover .project-section__placeholder svg {
  transform: scale(1.08);
}

/* Subtle floating deco behind image */
.project-section__visual-deco {
  position: absolute;
  inset: -16px;
  border-radius: calc(var(--radius-lg) + 16px);
  background: linear-gradient(135deg, var(--ph-a, var(--accent)), var(--ph-b, var(--accent2)));
  opacity: .07;
  z-index: -1;
  transition: opacity .4s ease;
}
.project-section:hover .project-section__visual-deco { opacity: .14; }

/* ── Content ────────────────────────────────────────────── */
.project-section__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.project-section__index {
  font-family: 'Syne', sans-serif;
  font-size: 5.5rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  letter-spacing: -.04em;
  display: block;
  margin-bottom: 20px;
  transition: color .3s ease;
  user-select: none;
}
.project-section:hover .project-section__index { color: rgba(108,99,255,.12); }
.project-section__meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.project-section__title {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.project-section__desc {
  font-size: .97rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 440px;
}
.project-section__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.project-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: .01em;
  transition: gap .25s ease, color .2s ease;
}
.project-section__cta:hover {
  color: var(--accent-dark);
  gap: 13px;
}

/* ── Shared tool tag ────────────────────────────────────── */
.tool-tag {
  font-size: .75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: var(--radius-xl);
}

/* ── CTA below list ─────────────────────────────────────── */
.projects__cta {
  text-align: center;
  margin-top: 72px;
}

/* ═══════════════════════════════════════════════════════════
   EDUCATION / TIMELINE
   ═══════════════════════════════════════════════════════════ */
.education {
  padding: 120px 0;
  background: var(--off-white);
}

.timeline {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(108,99,255,.1));
  transform: translateX(-50%);
}

.timeline__item {
  position: relative;
  width: 50%;
  padding: 0 48px 56px 0;
  text-align: left;
}
.timeline__item--right {
  align-self: flex-end;
  padding: 0 0 56px 48px;
  text-align: left;
}
.timeline__dot {
  position: absolute;
  right: -9px; top: 8px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(108,99,255,.15);
  transition: var(--trans);
}
.timeline__item--right .timeline__dot {
  right: auto; left: -9px;
}
.timeline__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.timeline__card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(108,99,255,.2);
  transform: translateY(-3px);
}
.timeline__year {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}
.timeline__title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}
.timeline__institution {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 500;
}
.timeline__desc {
  font-size: .85rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 14px;
}
.timeline__tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }
.timeline__item--right .timeline__tags { justify-content: flex-start; }

/* ═══════════════════════════════════════════════════════════
   VENTURES
   ═══════════════════════════════════════════════════════════ */
.ventures {
  padding: 120px 0;
  background: var(--white);
}

.venture-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.venture-feature__visual {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.venture-feature__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108,99,255,.08) 0%, rgba(108,99,255,.02) 100%);
}
.venture-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.venture-feature:hover .venture-feature__img {
  transform: scale(1.04);
}

.venture-feature__body {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
}

.venture-feature__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.venture-feature__year {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
}
.venture-feature__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(34,197,94,.25);
  padding: 3px 10px;
  border-radius: var(--radius-xl);
}
.venture-feature__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.75); }
}

.venture-feature__title {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.1;
  margin-bottom: 10px;
}
.venture-feature__role {
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 20px;
}
.venture-feature__desc {
  font-size: .92rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 32px;
}

.venture-feature__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.venture-feature__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.venture-feature__stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1;
}
.venture-feature__stat-label {
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}
.venture-feature__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin: 0 24px;
  flex-shrink: 0;
}

.venture-feature__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.venture-feature__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  transition: var(--trans);
}
.venture-feature__cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(108,99,255,.4);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact {
  padding: 120px 0;
  background: var(--text-heading);
  position: relative;
  overflow: hidden;
}
.contact__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.contact__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.contact__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.contact__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact__bg-shape {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,.2) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

/* ─── PAGE HERO (Projekte-Seite) ────────────────────────── */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  background: var(--off-white);
}
.page-hero__inner {
  text-align: center;
}
.page-hero__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.1;
  margin: 12px 0 16px;
}
.page-hero__desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.footer {
  background: #0D0D1A;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}
.footer__copy {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.footer__links {
  display: flex;
  gap: 20px;
}
.footer__links a {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .2s ease;
}
.footer__links a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes fadeInUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-16px) rotate(5deg); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,.1); }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(24px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes cardOut {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(.94); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .project-section__inner,
  .project-section--reverse .project-section__inner {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
  .venture-feature { grid-template-columns: 1fr; }
  .venture-feature__visual { min-height: 280px; }
}

@media (max-width: 768px) {
  .nav__list { display: none; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    padding-top: 32px;
  }
  .hero__image-wrap { order: -1; }
  .hero__image-frame { max-width: 300px; margin: 0 auto; }
  .hero__eyebrow, .hero__cta-group, .hero__tags { justify-content: center; }
  .hero__title br { display: none; }
  .stats__grid { flex-wrap: wrap; }
  .stats__item { flex: 1 1 40%; }
  .stats__divider { display: none; }
  /* Project sections stack on mobile */
  .project-section__inner,
  .project-section--reverse .project-section__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .project-section--reverse .project-section__visual { order: 0; }
  .project-section--reverse .project-section__content { order: 0; }
  .project-section__index { font-size: 4rem; }
  .venture-feature__body { padding: 36px 28px; }
  .venture-feature__title { font-size: 2rem; }
  .timeline::before { left: 16px; }
  .timeline__item,
  .timeline__item--right {
    width: 100%;
    padding: 0 0 48px 48px;
    text-align: left;
    align-self: flex-start;
  }
  .timeline__dot,
  .timeline__item--right .timeline__dot {
    left: 7px; right: auto;
  }
  .timeline__tags,
  .timeline__item--right .timeline__tags { justify-content: flex-start; }
  .footer__inner { flex-direction: column; text-align: center; }
  .header__inner { gap: 16px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.4rem; }
  .section-title { font-size: 1.8rem; }
  .contact__title { font-size: 2rem; }
  .projects__toggle { flex-direction: column; width: 100%; }
  .toggle__btn { width: 100%; text-align: center; }
  .project-section { padding: 56px 0; }
}
