﻿/* ============================================================
   flo — editorial dark portfolio
   ============================================================ */

:root {
  --bg:        #0a0a0a;
  --bg-soft:   #111114;
  --surface:   #15151b;
  --surface-2: #1c1c24;
  --line:      rgba(255, 255, 255, 0.08);
  --line-2:    rgba(255, 255, 255, 0.14);
  --text:      #f4f4f6;
  --text-2:    #a8a8b3;
  --text-3:    #6a6a76;
  --blue:      #2d3cff;
  --blue-soft: #2638cc;
  --blue-glow: rgba(45, 60, 255, 0.35);

  --f-sans:   "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-serif:  "Instrument Serif", "Times New Roman", serif;
  --f-mono:   "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --frame: 32px;
  --frame-sm: 20px;
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--blue); color: var(--text); }

/* ---------- Editorial corner frame ---------- */
.frame {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  padding: var(--frame);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto 1fr auto;
}
.frame > * { pointer-events: auto; }

.frame-tl, .frame-tc, .frame-tr,
.frame-bl, .frame-bc, .frame-br {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.frame-tl { grid-column: 1; grid-row: 1; justify-self: start; }
.frame-tc { grid-column: 2; grid-row: 1; justify-self: center; color: var(--text-2); }
.frame-tr { grid-column: 3; grid-row: 1; justify-self: end; }
.frame-bl { grid-column: 1; grid-row: 3; justify-self: start; }
.frame-bc { grid-column: 2; grid-row: 3; justify-self: center; color: var(--text-2); }
.frame-br { grid-column: 3; grid-row: 3; justify-self: end; }

.frame .dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 999px;
  box-shadow: 0 0 12px var(--blue-glow);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.85); }
}
@media (max-width: 720px) {
  .frame { padding: var(--frame-sm); }
  .frame-tl, .frame-tr, .frame-bl, .frame-br { font-size: 10px; }
  .frame-tc, .frame-bc { display: none; }
}

/* ---------- Floating menu ---------- */
.menu {
  position: fixed;
  top: 56px;
  left: 50%;
  transform: translate(-50%, -120%);
  z-index: 90;
  display: flex;
  align-items: center;
  background: rgba(20, 20, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  gap: 2px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.menu.show { transform: translate(-50%, 0); }
.menu a {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.menu a:hover { color: var(--text); }
.menu a.cta {
  background: var(--blue);
  color: var(--text);
  margin-left: 6px;
  font-weight: 600;
}
.menu a.cta:hover { background: var(--blue-soft); }
.cta-icon { display: none; }

@media (max-width: 720px) {
  .menu {
    transform: translate(-50%, 0);
    max-width: calc(100vw - 24px);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .menu::-webkit-scrollbar { display: none; }
  .menu a { font-size: 11px; padding: 7px 10px; }
  .menu a.cta { padding: 7px 10px; }
  .cta-text { display: none; }
  .cta-icon { display: inline-flex; align-items: center; }
}

/* ---------- Section wrapper ---------- */
section { position: relative; padding: 120px 64px; }
@media (max-width: 720px) { section { padding: 80px 24px; } }

.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 64px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.section-num {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.08em;
}
.section-title {
  font-family: var(--f-sans);
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}
.section-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
}
.section-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: 100px 64px 80px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) {
  .hero { padding: 70px 24px 80px; }
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 220px);
    margin-top: -40px;
  }
  .hero-wordmark {
    order: 1;
    text-shadow:
      0 2px 12px rgba(0, 0, 0, 0.9),
      0 4px 32px rgba(0, 0, 0, 0.7),
      0 0 60px rgba(0, 0, 0, 0.5);
  }
  .hero-signature { order: 2; margin-top: 12px; margin-bottom: 0; }
}

/* faint radial glow */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 50% 60%, rgba(45, 60, 255, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 800px 500px at 80% 20%, rgba(45, 60, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: 1400px;
  z-index: 2;
  text-align: center;
}

/* hero signature */
.hero-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
  position: relative;
  z-index: 12;
}
.sig-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--line-2);
}
.sig-eyebrow {
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-2);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.sig-eyebrow em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--text);
}
@media (max-width: 720px) {
  .sig-line { width: 30px; }
  .sig-eyebrow { font-size: 12px; }
}

.hero-wordmark {
  font-size: clamp(4.5rem, 17vw, 14rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.06em;
  position: relative;
  z-index: 10;
  mix-blend-mode: normal;
}
.hero-wordmark em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  -webkit-text-stroke: 0;
}
.hero-wordmark .stroke {
  -webkit-text-stroke: 1.5px var(--text);
  color: transparent;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
}

/* Reel mockup stack behind wordmark */
.stack {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(820px, 95%);
  height: 460px;
  transform: translate(-50%, -42%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}
@media (max-width: 720px) {
  .stack { height: 300px; transform: translate(-50%, -55%); top: 40%; }
}

.stack-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 250px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.02);
  z-index: 1;
}
@media (max-width: 720px) {
  .stack-card { width: 100px; height: 180px; border-radius: 14px; }
}

.stack-card .ph {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
}

/* placeholder mockup faces */
.ph-1 { background: linear-gradient(155deg, #1b1f3a 0%, #2d3cff 100%); }
.ph-2 { background: linear-gradient(165deg, #2d3cff 0%, #0a0a0a 70%); }
.ph-3 { background: linear-gradient(135deg, #0a0a0a 0%, #2d3cff 80%); }
.ph-4 { background: linear-gradient(180deg, #15151b 0%, #2d3cff 100%); }
.ph-5 { background: linear-gradient(135deg, #2d3cff 0%, #15151b 50%, #2d3cff 100%); }

.ph-label {
  font-family: var(--f-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
}
.ph-title {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 28px;
  color: white;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.stack-card.c1 { transform: translate(-50%, -50%) translate(-320px, 60px) rotate(-16deg); z-index: 1; }
.stack-card.c2 { transform: translate(-50%, -50%) translate(-180px, 10px) rotate(-8deg); z-index: 2; }
.stack-card.c3 { transform: translate(-50%, -50%) translate(0, -10px) rotate(0deg); z-index: 3; }
.stack-card.c4 { transform: translate(-50%, -50%) translate(180px, 10px) rotate(8deg); z-index: 2; }
.stack-card.c5 { transform: translate(-50%, -50%) translate(320px, 60px) rotate(16deg); z-index: 1; }

@media (max-width: 720px) {
  .stack-card.c1 { transform: translate(-50%, -50%) translate(-180px, 40px) rotate(-16deg); }
  .stack-card.c2 { transform: translate(-50%, -50%) translate(-100px, 6px) rotate(-8deg); }
  .stack-card.c3 { transform: translate(-50%, -50%) translate(0, -8px) rotate(0deg); }
  .stack-card.c4 { transform: translate(-50%, -50%) translate(100px, 6px) rotate(8deg); }
  .stack-card.c5 { transform: translate(-50%, -50%) translate(180px, 40px) rotate(16deg); }
}

/* services chip stack (top-right of hero, like inspo4) */
.chips-pill {
  position: absolute;
  right: 4%;
  bottom: 14%;
  z-index: 11;
  background: var(--blue);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 200px;
  box-shadow: 0 20px 50px var(--blue-glow);
}
.chips-pill .chip {
  font-size: 12px;
  font-weight: 500;
  padding: 8px 12px;
  background: rgba(255,255,255,0.14);
  border-radius: 8px;
  letter-spacing: 0.01em;
  text-align: left;
  color: white;
  white-space: nowrap;
}
@media (max-width: 720px) { .chips-pill { display: none; } }

/* selected works badge (left of hero) */
.year-badge {
  position: absolute;
  left: 6%;
  bottom: 14%;
  z-index: 11;
  display: flex;
  align-items: center;
  gap: 14px;
}
.year-badge .circle {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.05em;
  line-height: 1;
  text-align: center;
}
.year-badge .label {
  text-align: left;
}
.year-badge .label .top { font-size: 13px; font-weight: 500; color: var(--text); }
.year-badge .label .bot { font-size: 12px; color: var(--text-2); }
@media (max-width: 720px) { .year-badge { display: none; } }

/* hero footer CTA row */
.hero-foot {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 6;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--blue);
  color: var(--text);
}
.btn-primary:hover { background: var(--blue-soft); transform: translateY(-2px); }
.btn-ghost {
  border-color: var(--line-2);
  color: var(--text);
}
.btn-ghost:hover { background: var(--surface); border-color: rgba(255,255,255,0.3); }
.btn .arrow { font-family: var(--f-mono); font-size: 12px; }
.btn-icon { width: 16px; height: 16px; flex-shrink: 0; display: block; }
.phone-wrap { position: relative; display: inline-flex; align-items: center; gap: 4px; }
.phone-info-btn { position: relative; cursor: default; font-size: 11px; color: var(--text-3); display: inline-flex; align-items: center; }
.phone-info-btn .phone-info-tip { display: none; position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: #1c1c24; border: 1px solid rgba(255,255,255,0.14); border-radius: 10px; padding: 10px 14px; width: 230px; font-size: 11px; line-height: 1.55; color: #a8a8b3; white-space: normal; z-index: 200; font-family: 'Space Grotesk', sans-serif; letter-spacing: normal; text-align: left; pointer-events: none; box-shadow: 0 8px 24px rgba(0,0,0,0.5); }
.phone-info-btn:hover .phone-info-tip, .phone-info-btn:focus .phone-info-tip { display: block; pointer-events: auto; }
.tip-wa-link { color: #2d3cff; font-weight: 600; text-decoration: none; }
.tip-wa-link:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .hero-foot { bottom: 100px; padding: 0 24px; flex-direction: column; align-items: stretch; }
}

/* ============================================================
   INTRO PARAGRAPH
   ============================================================ */
.intro {
  padding: 80px 64px;
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) { .intro { padding: 60px 24px; } }
.intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
}
@media (max-width: 720px) {
  .intro-inner { grid-template-columns: 1fr; gap: 24px; }
}
.intro-label {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.1em;
  padding-top: 12px;
}
.intro-text {
  font-family: var(--f-sans);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text);
  font-weight: 400;
  text-wrap: pretty;
}
.intro-text em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--text);
  font-weight: 400;
}
.intro-text .accent { color: var(--blue); }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: 80px 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) { .stats { padding: 60px 24px; } }

.stats-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat {
  padding: 24px;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: none; }
@media (max-width: 720px) {
  .stat:nth-child(3) { border-left: none; border-top: 1px solid var(--line); }
  .stat:nth-child(4) { border-top: 1px solid var(--line); }
  .stat:nth-child(2) { border-top: 0; }
}

.stat-num {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--f-sans);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.05em;
}
.stat-num em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
  margin-left: 0;
}
.stat-label {
  margin-top: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   WORKS (reels grid)
   ============================================================ */
.works .reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 1200px) { .works .reels-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .works .reels-grid { grid-template-columns: 1fr; } }

.reel {
  background: var(--bg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.3s ease;
}
.reel:hover { background: var(--bg-soft); }

.reel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reel-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.08em;
}
.reel-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--blue);
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--blue);
  text-transform: uppercase;
}

.reel-embed {
  position: relative;
  padding-bottom: 125%;
  background: var(--surface);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.reel-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.reel-foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.reel-title {
  font-family: var(--f-sans);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  flex: 1;
  padding-right: 16px;
}
.reel-views {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-2);
  white-space: nowrap;
}

/* ============================================================
   CREATORS (editorial list)
   ============================================================ */
.creators-list {
  border-top: 1px solid var(--line);
}
.creator-row {
  display: grid;
  grid-template-columns: 60px 80px 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
  cursor: pointer;
}
.creator-row:hover { background: var(--bg-soft); padding-left: 16px; padding-right: 16px; }

.cr-num {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-3);
}
.cr-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18px;
  color: white;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.cr-avatar.alt { background: var(--surface-2); border: 1px solid var(--line-2); }
.cr-avatar { overflow: hidden; padding: 0; }
.cr-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cr-avatar--fallback { background: var(--surface-2); border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; font-family: var(--f-mono); font-weight: 600; font-size: 16px; color: var(--text-2); letter-spacing: 0.05em; }
.cr-avatar--fallback span { display: block; }

.cr-meta-col { min-width: 0; }
.cr-arrow { font-family: var(--f-mono); font-size: 20px; color: var(--text-3); transition: transform 0.2s ease, color 0.2s ease; }
.creator-row:hover .cr-arrow { color: var(--blue); transform: translate(2px, -2px); }

.cr-fol {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-2);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  vertical-align: middle;
  white-space: nowrap;
}

.verified {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: -3px;
  margin-left: 4px;
}
.verified--sm { width: 15px; height: 15px; vertical-align: -2px; }

.cr-name {
  font-family: var(--f-sans);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.cr-name em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
}
.cr-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-3);
  margin-top: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cr-role {
  font-size: 13px;
  color: var(--text-2);
  text-align: right;
  font-family: var(--f-sans);
}
.cr-followers {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--blue);
  padding: 6px 12px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .creator-row {
    grid-template-columns: 32px 48px 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
    padding: 20px 0;
  }
  .cr-name { font-size: 1.2rem; }
  .cr-role { grid-column: 2 / 4; text-align: left; font-size: 12px; }
  .cr-followers { grid-column: 3; grid-row: 1; justify-self: end; font-size: 10px; padding: 4px 8px; }
  .cr-num, .cr-avatar { grid-row: 1 / 3; align-self: start; }
  .cr-avatar { width: 44px; height: 44px; font-size: 14px; }
}

/* ============================================================
   BRANDS marquee
   ============================================================ */
.brands {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.brands-label {
  padding: 0 64px 32px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.1em;
}
@media (max-width: 720px) { .brands-label { padding: 0 24px 24px; } }

.marquee {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: scroll 35s linear infinite;
  align-items: center;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-item {
  font-family: var(--f-sans);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--text);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}
.brand-item:hover { opacity: 1; color: var(--blue); }
.brand-item em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
}
.brand-sep {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

/* ============================================================
   SKILLS
   ============================================================ */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 900px) { .skills-grid { grid-template-columns: 1fr; gap: 56px; } }

.skill-col-title {
  font-family: var(--f-sans);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding-bottom: 16px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}
.skill-col-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}

.skill-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.skill-name {
  font-family: var(--f-sans);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.skill-pct {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: 0.04em;
}
.skill-bar {
  grid-column: 1 / 3;
  height: 2px;
  background: var(--line);
  overflow: hidden;
  margin-top: 8px;
}
.skill-fill {
  height: 100%;
  background: var(--blue);
  width: 0;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  max-width: 1100px;
  margin: 0 auto;
}

.tl-nested {
  margin-top: 16px;
  padding-left: 20px;
  border-left: 2px solid var(--blue);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tl-nested-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tl-nested-item--inset {
  opacity: 0.85;
}
.tl-nested-date {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tl-nested-title {
  font-family: var(--f-sans);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}
.tl-nested-role {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--blue);
}
.tl-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.tl-row:last-child { border-bottom: 1px solid var(--line); }
@media (max-width: 720px) {
  .tl-row { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
}

.tl-date {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  padding-top: 6px;
  text-transform: uppercase;
}

.tl-title {
  font-family: var(--f-sans);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.tl-role {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 12px;
}
.tl-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 640px;
}

/* ============================================================
   YOUTUBE CHANNELS
   ============================================================ */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 1000px) { .yt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .yt-grid { grid-template-columns: 1fr; } }
.yt {
  background: var(--bg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.25s ease;
}
.yt:hover { background: var(--bg-soft); }
.yt-num {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.08em;
}
.yt-name {
  font-family: var(--f-sans);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.yt-handle {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-3);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.yt-arrow {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--blue);
  margin-left: auto;
}

/* ============================================================
   VIBECODING
   ============================================================ */
.vibe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}
@media (max-width: 900px) { .vibe { grid-template-columns: 1fr; gap: 40px; } }

.vibe-title {
  font-family: var(--f-sans);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
}
.vibe-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}
.vibe-desc {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.vibe-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vibe-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--text-2);
  letter-spacing: 0.04em;
}

.code-block {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  font-family: var(--f-mono);
  font-size: 13px;
  line-height: 1.8;
  position: relative;
  overflow: hidden;
}
.code-block::before {
  content: "TERMINAL";
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.1em;
}
.code-block .c-com  { color: var(--text-3); font-style: italic; }
.code-block .c-key  { color: var(--blue); }
.code-block .c-var  { color: #c084fc; }
.code-block .c-fn   { color: #f4f4f6; }
.code-block .c-str  { color: #a8d4ff; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 140px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(45, 60, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 720px) { .contact { padding: 100px 24px; } }

.contact-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.contact-title {
  font-family: var(--f-sans);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.95;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}
.contact-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}
.contact-desc {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.contact-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.contact-meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.contact-meta a { color: var(--text-2); }
.contact-meta a:hover { color: var(--blue); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 32px 64px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  gap: 16px;
}
@media (max-width: 720px) {
  .footer { padding: 24px; grid-template-columns: 1fr; text-align: center; }
}
.footer .right { text-align: right; display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.footer a:hover { color: var(--blue); }
.footer-dot { color: var(--text-3); }
.lang-switch {
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--text-3);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
  line-height: 1;
}
.lang-switch:hover { color: var(--text); border-color: var(--blue); }

/* ============================================================
   reveal animations
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .intro-overlay { display: none !important; }
}

/* ============================================================
   HERO INTRO ANIMATION
   ============================================================ */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}
.intro-overlay.dissolving { pointer-events: none; }
.intro-overlay.gone { display: none; }

.intro-overlay .intro-line {
  font-family: var(--f-sans);
  font-size: clamp(1.4rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(20px);
  line-height: 1.3;
  text-align: center;
}
.intro-overlay .intro-line em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--blue);
}
.intro-overlay .intro-line.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.intro-overlay .intro-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  margin-top: 32px;
  opacity: 0;
  box-shadow: 0 0 20px var(--blue-glow);
}
.intro-overlay .intro-dot.show {
  opacity: 1;
  transition: opacity 0.4s ease;
  animation: pulse 1.5s ease-in-out infinite;
}

/* pixel grid for dissolve */
.pixel-grid {
  position: fixed;
  inset: 0;
  z-index: 199;
  display: grid;
  pointer-events: none;
}
.pixel-grid .px {
  background: var(--bg);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.pixel-grid .px.gone {
  opacity: 0;
  transform: scale(0.5);
}


/* ============================================================
   TRUSTED BY — Brand marquee (endless scroll)
   ============================================================ */
.trusted {
  padding: 80px 64px 100px;
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) { .trusted { padding: 60px 24px 80px; } }

.brand-marquee {
  overflow: hidden;
  cursor: grab;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.brand-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.brand-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px 12px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.25s ease, transform 0.3s cubic-bezier(.2,.7,.2,1);
}
.brand-chip:hover { border-color: var(--line-2); transform: translateY(-2px); }
.brand-chip > img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.bc-meta { display: flex; flex-direction: column; gap: 2px; }
.bc-name {
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 4px;
}
.bc-fol {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .brands-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.brand-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1), border-color 0.3s ease;
}
.brand-card:hover { transform: translateY(-4px); border-color: var(--line-2); }

.brand-logo {
  background: #f4f4f6;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.brand-logo img {
  max-width: 80%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-logo--mono {
  background: #0a0a0a;
  color: var(--text);
}
.brand-wordmark {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.brand-wordmark em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}

.brand-info {
  padding: 16px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.brand-name {
  font-family: var(--f-sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.brand-meta {
  margin-top: 4px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--text-3);
}

/* ============================================================
   SELECTED WORKS — feature layout + carousel
   ============================================================ */
.works .reels-grid {
  /* override to 4-col on wide screens for the 4 features */
}
.reel--feature .reel-tag { background: var(--blue); color: var(--text); border-color: var(--blue); }

.carousel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 56px 0 16px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}
.carousel-label {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.carousel-controls { display: flex; gap: 8px; }
.car-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  color: var(--text);
  font-family: var(--f-mono);
  font-size: 16px;
  border-radius: 4px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.car-btn:hover { background: var(--blue); border-color: var(--blue); }

.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 28%);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}
.carousel::-webkit-scrollbar { height: 6px; }
.carousel::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 3px; }

@media (max-width: 900px) { .carousel { grid-auto-columns: minmax(220px, 65%); } }
@media (max-width: 520px) { .carousel { grid-auto-columns: minmax(200px, 85%); } }

.car-item {
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.car-item:hover { border-color: var(--line-2); }
.car-item .reel-embed { padding-bottom: 177%; border: none; }
.car-cap {
  padding: 12px 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--text-2);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.car-cap span { color: var(--text-3); }

/* ============================================================
   MORE CREATORS — small grid below main list
   ============================================================ */
.more-creators {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.more-label {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.more-grid {
  overflow: hidden;
  cursor: grab;
  padding-bottom: 4px;
}
.more-track {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
}
.more-grid .mini-creator { flex-shrink: 0; min-width: 180px; }

.mini-creator {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color 0.2s ease, transform 0.3s cubic-bezier(.2,.7,.2,1);
}
.mini-creator:hover { border-color: var(--line-2); transform: translateY(-2px); }
.mc-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--surface-2); }
.mc-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mc-avatar--fallback { display: flex; align-items: center; justify-content: center; font-family: var(--f-mono); font-size: 12px; font-weight: 600; color: var(--text-2); border: 1px solid var(--line-2); }
.mc-info { min-width: 0; flex: 1; }
.mc-name {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mc-handle {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.05em;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 300;
  width: min(600px, calc(100vw - 48px));
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.04);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); }
.cookie-banner-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.cookie-banner-text strong { color: var(--text); font-weight: 600; }
.cookie-banner-text a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid var(--line-2);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.cookie-btn--accept {
  background: var(--blue);
  color: var(--text);
  border-color: var(--blue);
}
.cookie-btn--accept:hover { background: var(--blue-soft); border-color: var(--blue-soft); }
.cookie-btn--minimal {
  background: transparent;
  color: var(--text-2);
}
.cookie-btn--minimal:hover { color: var(--text); border-color: var(--line-2); background: var(--surface-2); }
@media (max-width: 480px) {
  .cookie-banner { bottom: 16px; padding: 20px; }
  .cookie-banner-actions { flex-direction: column; }
  .cookie-btn { text-align: center; }
}

/* ============================================================
   LEGAL PAGES (Impressum, Cookie-Richtlinie)
   ============================================================ */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 48px 100px;
}
@media (max-width: 720px) { .legal-page { padding: 100px 24px 80px; } }

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.06em;
  margin-bottom: 48px;
  transition: color 0.2s ease;
}
.legal-back:hover { color: var(--blue); }

.legal-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.legal-title {
  font-family: var(--f-sans);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.legal-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}

.legal-section { margin-bottom: 40px; }
.legal-section-title {
  font-family: var(--f-sans);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--text);
}
.legal-section-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 6px;
}
.legal-body {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
}
.legal-body p + p { margin-top: 12px; }
.legal-body a { color: var(--blue); }
.legal-body a:hover { text-decoration: underline; }
