/*
Theme Name: People Like Us
Theme URI: https://peoplelikeus.de
Author: People Like Us Agency
Description: Custom theme for People Like Us Creative Agency
Version: 2.0
License: GNU General Public License v2 or later
Template: astra
Text Domain: peoplelikeus
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@300;400;500;700&display=swap');

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

:root {
  --black:  #050505;
  --white:  #f7f5f2;
  --gray1:  #111111;
  --gray2:  #1c1c1c;
  --muted:  rgba(247,245,242,0.4);
  --border: rgba(247,245,242,0.07);
  --ff-display: 'Bebas Neue', sans-serif;
  --ff-body:    'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── CUSTOM CURSOR ────────────────────────────────────────── */
.plu-cursor {
  width: 10px; height: 10px;
  background: var(--white);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}

.plu-cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(247,245,242,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  mix-blend-mode: difference;
}

/* ── ASTRA OVERRIDES ──────────────────────────────────────── */
#masthead, .main-header-bar, .site-header { display: none !important; }
.ast-container { max-width: 100% !important; padding: 0 !important; }
.entry-content, .ast-article-single, .ast-page-builder-template { padding: 0 !important; margin: 0 !important; }
.entry-header, .post-navigation, .ast-adjacent-posts { display: none !important; }
#colophon, .site-footer { display: none !important; }
#content, #primary, .site-content { padding: 0 !important; margin: 0 !important; }
body.ast-page-builder-template .hentry { margin: 0 !important; }

/* ── NAV ──────────────────────────────────────────────────── */
.plu-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 5vw;
  mix-blend-mode: difference;
  transition: padding 0.4s;
}

.plu-nav.scrolled { padding: 20px 5vw; }

.plu-nav__logo {
  font-family: var(--ff-display);
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--white);
}

.plu-nav__links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.plu-nav__links a {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.5;
  transition: opacity 0.2s;
}

.plu-nav__links a:hover { opacity: 1; }

.plu-nav__count {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--white);
  opacity: 0.3;
}

/* ── HERO ─────────────────────────────────────────────────── */
.plu-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 5vw;
  gap: 60px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.plu-hero::before {
  content: 'PLU';
  position: absolute;
  font-family: var(--ff-display);
  font-size: 40vw;
  color: rgba(247,245,242,0.018);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.plu-hero__left {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.plu-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.5);
  margin-bottom: 32px;
  border: 1px solid var(--border);
  padding: 8px 14px;
}

.plu-hero__headline {
  font-family: var(--ff-display);
  font-size: clamp(88px, 12vw, 180px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.15s forwards;
}

.plu-hero__headline .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(247,245,242,0.25);
}

.plu-hero__sub {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 360px;
  margin-bottom: 48px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.35s forwards;
}

.plu-hero__sub strong { color: var(--white); font-weight: 500; }

.plu-hero__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.5s forwards;
}

/* ── TIKTOK PHONE MOCKUP ──────────────────────────────────── */
.plu-hero__right {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.4s forwards;
}

.plu-phone {
  position: relative;
  width: 280px;
  height: 560px;
  background: #0a0a0a;
  border-radius: 40px;
  border: 2px solid rgba(247,245,242,0.12);
  overflow: hidden;
  box-shadow:
    0 0 0 8px rgba(247,245,242,0.03),
    0 40px 120px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(247,245,242,0.08);
}

.plu-phone::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: rgba(247,245,242,0.15);
  border-radius: 3px;
  z-index: 10;
}

.plu-phone__screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.plu-phone__slides {
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.plu-phone__slide {
  width: 280px;
  height: 560px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.plu-phone__slide-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a1a1a 0%, #0d0d0d 100%);
}

.plu-phone__slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
}

.plu-phone__slide-content {
  position: relative;
  z-index: 2;
  padding: 20px 18px 24px;
  width: 100%;
}

.plu-phone__slide-tag {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.5);
  margin-bottom: 6px;
}

.plu-phone__slide-title {
  font-family: var(--ff-display);
  font-size: 22px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 10px;
}

.plu-phone__slide-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: rgba(247,245,242,0.4);
}

.plu-phone__slide-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(247,245,242,0.3);
}

/* Phone side actions (TikTok-style) */
.plu-phone__actions {
  position: absolute;
  right: 12px;
  bottom: 100px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.plu-phone__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  color: rgba(247,245,242,0.5);
}

.plu-phone__action-icon {
  width: 36px;
  height: 36px;
  background: rgba(247,245,242,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Progress dots */
.plu-phone__dots {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 6;
}

.plu-phone__dot {
  width: 3px;
  height: 3px;
  background: rgba(247,245,242,0.2);
  border-radius: 2px;
  transition: all 0.3s;
}

.plu-phone__dot.active {
  height: 18px;
  background: var(--white);
}

/* Swipe hint */
.plu-phone__hint {
  position: absolute;
  bottom: 30px;
  left: 0; right: 0;
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.25);
  z-index: 6;
  animation: pulse 2s ease-in-out infinite;
}

/* Slide colors */
.plu-phone__slide:nth-child(1) .plu-phone__slide-bg {
  background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
}
.plu-phone__slide:nth-child(2) .plu-phone__slide-bg {
  background: linear-gradient(160deg, #151515 0%, #0d0d0d 100%);
}
.plu-phone__slide:nth-child(3) .plu-phone__slide-bg {
  background: linear-gradient(160deg, #121212 0%, #080808 100%);
}
.plu-phone__slide:nth-child(4) .plu-phone__slide-bg {
  background: linear-gradient(160deg, #181818 0%, #0a0a0a 100%);
}

/* Phone glow */
.plu-phone-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(247,245,242,0.04) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ── TICKER ───────────────────────────────────────────────── */
.plu-ticker {
  background: var(--white);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.plu-ticker__inner {
  display: inline-flex;
  animation: ticker 25s linear infinite;
}

.plu-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 700;
  padding-right: 24px;
}

.plu-ticker__item::after {
  content: '✦';
  font-size: 8px;
  opacity: 0.4;
}

/* ── CLIENTS ──────────────────────────────────────────────── */
.plu-clients {
  padding: 100px 5vw;
  border-bottom: 1px solid var(--border);
}

.plu-clients__label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 56px;
  text-align: center;
}

.plu-clients__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 60px;
}

.plu-clients__item {
  font-family: var(--ff-display);
  font-size: 26px;
  letter-spacing: 0.08em;
  color: rgba(247,245,242,0.12);
  transition: color 0.35s;
  cursor: default;
}

.plu-clients__item:hover { color: rgba(247,245,242,0.65); }

/* ── ABOUT ────────────────────────────────────────────────── */
.plu-about {
  padding: 160px 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.plu-section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.4);
  margin-bottom: 32px;
  border-left: 2px solid var(--white);
  padding-left: 16px;
}

.plu-heading {
  font-family: var(--ff-display);
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 36px;
}

.plu-heading .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(247,245,242,0.2);
}

.plu-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 36px;
}

.plu-text strong { color: var(--white); font-weight: 500; }

.plu-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.plu-stat__num {
  font-family: var(--ff-display);
  font-size: 44px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.plu-stat__lbl {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.25);
}

.plu-about__photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray1);
}

.plu-about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
  filter: grayscale(100%);
}

.plu-about__photo:hover img { transform: scale(1.04); }

.plu-about__photo-corner {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--white);
  color: var(--black);
  padding: 14px 20px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ── SERVICES ─────────────────────────────────────────────── */
.plu-services {
  padding: 160px 5vw;
  background: var(--gray1);
  border-top: 1px solid var(--border);
}

.plu-services__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

.plu-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.plu-card {
  background: var(--gray1);
  padding: 52px 44px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.plu-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0%; height: 2px;
  background: var(--white);
  transition: width 0.4s ease;
}

.plu-card:hover { background: var(--gray2); }
.plu-card:hover::after { width: 100%; }

.plu-card__num {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(247,245,242,0.15);
  margin-bottom: 44px;
  font-family: var(--ff-display);
  font-size: 40px;
}

.plu-card__title {
  font-family: var(--ff-display);
  font-size: 30px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
}

.plu-card__desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(247,245,242,0.35);
  font-weight: 300;
}

/* ── CASES ────────────────────────────────────────────────── */
.plu-cases {
  padding: 160px 5vw;
  border-top: 1px solid var(--border);
}

.plu-cases__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

.plu-cases__list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}

.plu-case-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 36px 40px;
  background: var(--black);
  transition: background 0.25s, padding 0.25s;
  cursor: default;
}

.plu-case-row:hover {
  background: var(--gray2);
  padding-left: 56px;
}

.plu-case-row__num {
  font-family: var(--ff-display);
  font-size: 36px;
  color: rgba(247,245,242,0.1);
}

.plu-case-row__client {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.plu-case-row__title {
  font-family: var(--ff-display);
  font-size: 28px;
  color: var(--white);
}

.plu-case-row__tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.25);
  border: 1px solid var(--border);
  padding: 8px 14px;
  white-space: nowrap;
}

/* ── CTA ──────────────────────────────────────────────────── */
.plu-cta {
  padding: 200px 5vw;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.plu-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(247,245,242,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.plu-cta__eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.plu-cta__heading {
  font-family: var(--ff-display);
  font-size: clamp(72px, 12vw, 180px);
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 56px;
}

.plu-cta__heading .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(247,245,242,0.2);
}

.plu-cta__sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 56px;
  font-weight: 300;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.plu-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.25s;
}

.plu-btn--primary {
  background: var(--white);
  color: var(--black);
  padding: 16px 28px;
}

.plu-btn--primary:hover {
  background: rgba(247,245,242,0.85);
  transform: translateY(-1px);
}

.plu-btn--ghost {
  color: var(--muted);
  border-bottom: 1px solid rgba(247,245,242,0.15);
  padding-bottom: 3px;
}

.plu-btn--ghost:hover { color: var(--white); }

/* ── FOOTER ───────────────────────────────────────────────── */
.plu-footer {
  padding: 80px 5vw 48px;
  border-top: 1px solid var(--border);
}

.plu-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 64px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.plu-footer__logo {
  font-family: var(--ff-display);
  font-size: 32px;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}

.plu-footer__tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 280px;
}

.plu-footer__col-title {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.25);
  margin-bottom: 24px;
}

.plu-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plu-footer__links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.plu-footer__links a:hover { color: var(--white); }

.plu-footer__bottom {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(247,245,242,0.2);
  letter-spacing: 0.08em;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
  0%, 100% { opacity: 0.25; }
  50%       { opacity: 0.6; }
}

.plu-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}

.plu-reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .plu-hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 80px; }
  .plu-hero__right { padding-top: 0; }
  .plu-about { grid-template-columns: 1fr; gap: 60px; }
  .plu-about__photo { aspect-ratio: 4/3; max-height: 400px; }
  .plu-grid-3 { grid-template-columns: 1fr 1fr; }
  .plu-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .plu-nav__links, .plu-nav__count { display: none; }
  .plu-hero__headline { font-size: 72px; }
  .plu-services__head, .plu-cases__head { flex-direction: column; gap: 20px; }
  .plu-grid-3 { grid-template-columns: 1fr; }
  .plu-case-row { grid-template-columns: 1fr; gap: 12px; }
  .plu-case-row__num, .plu-case-row__tag { display: none; }
  .plu-stats { grid-template-columns: 1fr 1fr; }
  .plu-footer__top { grid-template-columns: 1fr; }
  .plu-footer__bottom { flex-direction: column; gap: 12px; }
  .plu-phone { width: 240px; height: 480px; }
  .plu-phone__slide { width: 240px; height: 480px; }
}
