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

:root {
  --black:  #0A0A0A;
  --white:  #FFFFFF;
  --accent: #f59794;
  --gray-50: #F7F7F7;
  --gray-100: #EFEFEF;
  --gray-200: #DEDEDE;
  --gray-400: #999;
  --gray-600: #555;
  --f: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--f); background: var(--white); color: var(--black); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: var(--f); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* ─── PILLS ─── */
.btn-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 100px;
  font-size: .875rem; font-weight: 600;
  transition: .2s var(--ease); white-space: nowrap;
}
.btn-pill--dark  { background: var(--black); color: var(--white); }
.btn-pill--dark:hover { background: #222; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-pill--outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.35); }
.btn-pill--outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

.btn-pill--toggle {
  border-color: rgba(255,255,255,.55);
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn-pill--toggle:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}
.btn-pill--toggle.active {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}
.btn-pill--white { background: var(--white); color: var(--black); }
.btn-pill--white:hover { background: var(--gray-100); transform: translateY(-2px); }
.btn-pill--white-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); }
.btn-pill--white-outline:hover { border-color: var(--white); }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.88); backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.nav.scrolled { border-color: var(--gray-200); }
.nav__inner { display: flex; align-items: center; height: 64px; gap: 0; }

.nav__logo { margin-right: auto; display: flex; align-items: center; }
.nav__logo-img { height: 32px; width: auto; display: block; border-radius: 8px; }

.nav__links { display: flex; gap: 28px; margin-right: 32px; }
.nav__links a { font-size: .82rem; font-weight: 500; color: var(--gray-600); transition: color .2s; }
.nav__links a:hover { color: var(--black); }

.nav__cta {
  font-size: .82rem; font-weight: 700;
  background: var(--black); color: var(--white);
  padding: 9px 20px; border-radius: 100px;
  transition: background .2s;
}
.nav__cta:hover { background: #333; }

.nav__burger { display: none; flex-direction: column; gap: 5px; margin-left: 16px; }
.nav__burger span { display: block; width: 20px; height: 1.5px; background: var(--black); border-radius: 2px; transition: .3s; }

.mobile-nav {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--gray-200);
  padding: 20px 32px 24px; z-index: 199; flex-direction: column; gap: 0;
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { display: block; padding: 13px 0; font-weight: 500; border-bottom: 1px solid var(--gray-100); font-size: .9rem; }
.mobile-nav .nav__cta { margin-top: 16px; text-align: center; }

/* ─── SECTION LABELS ─── */
.section-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gray-400);
  margin-bottom: 20px; display: block;
}
.section-label--light { color: rgba(255,255,255,.4); }

.section-title {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.08;
}
.section-title--white { color: var(--white); }

.section-head-row {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 48px;
}
.section-head-row .section-title { margin-bottom: 0; }
.section-link {
  font-size: .82rem; font-weight: 600; color: var(--gray-400);
  white-space: nowrap; padding-bottom: 4px;
  transition: color .2s;
}
.section-link:hover { color: var(--black); }

/* ─── HERO ─── */
.hero {
  position: relative;
  background: var(--black);
  padding-top: 64px; /* nav height */
  overflow: hidden;
}

.hero__watermark {
  position: absolute; top: 0; left: 0; right: 0;
  font-size: clamp(60px, 10vw, 130px);
  font-weight: 900; letter-spacing: -.04em;
  color: rgba(255,255,255,.03);
  white-space: nowrap; overflow: hidden;
  pointer-events: none; user-select: none;
  line-height: 1;
  padding-top: 80px;
}

.hero__inner {
  position: relative; z-index: 2;
  padding-top: 100px; padding-bottom: 80px;
}

.hero__eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.0;
  color: var(--white); margin-bottom: 28px;
}
.hero__title .dot { color: var(--accent); }

.hero__middle {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700; color: rgba(255,255,255,.85);
  letter-spacing: -.02em; line-height: 1.3;
  margin-bottom: 16px; max-width: 560px;
}

.hero__sub {
  font-size: .95rem; color: rgba(255,255,255,.45);
  line-height: 1.8; margin-bottom: 40px;
  max-width: 560px;
}

.hero__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.hero__see-more {
  font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.4);
  transition: color .2s; margin-left: 6px;
}
.hero__see-more:hover { color: var(--white); }

/* Hero stats */
.hero__stats {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.hero__stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.hstat {
  padding: 28px 32px; position: relative;
  text-align: left;
}
.hstat + .hstat { border-left: 1px solid rgba(255,255,255,.08); }
.hstat strong {
  display: block; font-size: clamp(28px, 3vw, 42px);
  font-weight: 800; letter-spacing: -.04em; color: var(--white);
  line-height: 1; margin-bottom: 6px;
}
.hstat span { font-size: .75rem; color: rgba(255,255,255,.35); font-weight: 500; letter-spacing: .02em; }

/* ─── BRANDS ─── */
.brands { padding: 52px 0; border-bottom: 1px solid var(--gray-100); overflow: hidden; }
.brands__label {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gray-400);
  text-align: center; margin-bottom: 24px;
}
.brands__track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.brands__track {
  display: flex; align-items: center; gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.brands__track span {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  color: var(--gray-400); white-space: nowrap;
  padding: 0 32px;
  border-right: 1px solid var(--gray-200);
  transition: color .2s;
}
.brands__track span:hover { color: var(--black); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── WORK / SERVICES ─── */
.work { padding: 100px 0; border-bottom: 1px solid var(--gray-100); }
.work .section-title { margin-bottom: 0; }

/* Slider nav (arrows + dots) */
.slider-nav {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 4px;
}
.slider-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white); color: var(--black);
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: .2s var(--ease);
  line-height: 1;
}
.slider-btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.slider-btn:disabled { opacity: .25; cursor: default; }
.slider-dots { display: flex; gap: 6px; align-items: center; }
.slider-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gray-200); transition: .2s;
}
.slider-dot.active { background: var(--black); width: 18px; border-radius: 3px; }

/* Viewport clips the track */
.slider-viewport {
  overflow: hidden;
  margin-top: 40px;
}
.slider-track {
  display: flex;
  gap: 2px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Each card: fixed width = 1/3 of viewport minus gaps */
.work-card {
  flex: 0 0 calc((100% - 4px) / 3);
  min-width: 0;
  position: relative; overflow: hidden;
  background: var(--gray-50); cursor: pointer;
  border: 1px solid var(--gray-100);
}
.work-card:hover .work-card__img { transform: scale(1.04); }

.work-card__img {
  width: 100%; height: 260px;
  background: var(--gray-200);
  transition: transform .5s var(--ease);
  position: relative; overflow: hidden;
}
.wc-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  object-position: center bottom;
  transition: transform .5s var(--ease);
}
.wc-img--2 { object-position: center bottom; }
.wc-img--3 { object-position: center bottom; }
.work-card:hover .wc-img { transform: scale(1.04); }

/* Image colors */
.wc1 { background: #0f0f1a; }
.wc2 { background: #0f1a14; }
.wc-soon {
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
}
.wc-soon::after {
  content: 'Image Coming Soon';
  font-size: .62rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gray-400);
}

/* Status badges */
.wc-status {
  position: absolute; top: 14px; left: 14px;
  font-size: .62rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
}
.wc-status--upcoming { background: var(--accent); color: #fff; }
.wc-status--live     { background: var(--black); color: #fff; }

/* Coming soon dim */
.work-card--soon { opacity: .6; }
.work-card--soon:hover { opacity: 1; }

.work-card__info {
  padding: 20px 22px 22px;
  border-top: 1px solid var(--gray-200);
}
.wc-tag {
  font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gray-400);
  display: block; margin-bottom: 6px;
}
.work-card__info h4 {
  font-size: .9rem; font-weight: 700; letter-spacing: -.01em;
  margin-bottom: 4px; line-height: 1.3;
}
.work-card__info p { font-size: .75rem; color: var(--gray-400); font-weight: 500; }

/* ─── WHY ─── */
.why { padding: 100px 0; background: var(--gray-50); border-bottom: 1px solid var(--gray-100); }
.why .section-title { margin-bottom: 20px; }

.why__subtitle {
  font-size: .9rem; color: var(--gray-600); line-height: 1.8;
  max-width: 640px; margin-bottom: 56px;
}

.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

.why-card {
  background: var(--white); padding: 40px 32px 36px;
  border: 1px solid var(--gray-200);
  transition: box-shadow .25s;
}
.why-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.07); z-index: 1; }

.why-card--dark { background: var(--black); border-color: var(--black); }
.why-card--dark h3 { color: var(--white); }
.why-card--dark p { color: rgba(255,255,255,.45); }
.why-card--dark .why-card__num { color: rgba(255,255,255,.12); }

.why-card__num {
  font-size: 2.8rem; font-weight: 900; letter-spacing: -.04em;
  color: var(--gray-100); line-height: 1; margin-bottom: 28px;
}
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 14px; letter-spacing: -.02em; }
.why-card p { font-size: .85rem; color: var(--gray-600); line-height: 1.7; }

/* ── WHY YEPPE: Stacked rows ── */
.stack__list { border-top: 1.5px solid var(--gray-200); }

.stack-item {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start;
  padding: 44px 0; border-bottom: 1.5px solid var(--gray-200);
  transition: background .2s;
}
.stack-item:hover { background: var(--gray-50); margin: 0 -32px; padding: 44px 32px; }

.stack-item__left { display: flex; flex-direction: column; gap: 10px; }

.stack-num {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900; letter-spacing: -.06em; line-height: 1;
  color: var(--accent);
}

.stack-item__left h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.2;
  text-transform: uppercase;
}

.stack-audience {
  font-size: .65rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gray-400);
}

.stack-item__right {
  font-size: .88rem; color: var(--gray-600); line-height: 1.8; padding-top: 12px;
}

/* ─── STORY ─── */
.story {
  padding: 100px 0;
  background: var(--accent);
  border-bottom: none;
}

.story .section-label { color: rgba(255,255,255,.5); }
.story .story__title { color: var(--white); }

.story__layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

.story__title { line-height: 1.08; }

.story__body {
  display: flex; flex-direction: column; gap: 24px;
  padding-top: 8px;
}

.story__body p {
  font-size: .95rem; color: rgba(255,255,255,.8); line-height: 1.85;
}

/* ─── FOR BRANDS ─── */
.for-brands { padding: 100px 0; border-bottom: 1px solid var(--gray-100); }
.for-brands__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.for-brands .section-title { margin-bottom: 20px; }
.for-brands__left > p {
  font-size: .9rem; color: var(--gray-600); line-height: 1.7;
  margin-bottom: 32px; max-width: 420px;
}

.brand-list { margin-bottom: 40px; }
.brand-list li {
  display: flex; gap: 12px;
  font-size: .85rem; color: var(--gray-600); padding: 11px 0;
  border-bottom: 1px solid var(--gray-100);
}
.brand-list li span { color: var(--black); font-weight: 700; flex-shrink: 0; }

/* Dashboard */
.brand-stat-box {
  background: var(--black); border-radius: 16px;
  padding: 36px; color: var(--white);
}
.bsb-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.bsb-label { font-size: .75rem; color: rgba(255,255,255,.4); width: 190px; flex-shrink: 0; }
.bsb-bar {
  flex: 1; height: 4px; background: rgba(255,255,255,.08);
  border-radius: 100px; overflow: hidden;
}
.bsb-fill {
  height: 100%; background: var(--white); border-radius: 100px;
  width: 0; transition: width 1.2s ease .3s;
}
.bsb-fill.go { width: var(--w); }
.bsb-val { font-size: .75rem; font-weight: 700; color: var(--white); width: 30px; text-align: right; }
.bsb-total {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .78rem; color: rgba(255,255,255,.4);
}
.bsb-total strong { color: var(--white); }

/* ─── FAQ ─── */
.faq { padding: 100px 0; border-bottom: 1px solid var(--gray-100); }
.faq .section-title { margin-bottom: 48px; }

.faq__list { border-top: 1px solid var(--gray-200); }
.faq-item { border-bottom: 1px solid var(--gray-200); }

.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; text-align: left; font-size: .95rem; font-weight: 600;
  color: var(--black); letter-spacing: -.01em; gap: 20px;
  transition: color .2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q span {
  font-size: 1.3rem; font-weight: 300; color: var(--gray-400);
  transition: transform .3s var(--ease), color .2s; flex-shrink: 0;
}
.faq-item.open .faq-q span { transform: rotate(45deg); color: var(--accent); }
.faq-item.open .faq-q { color: var(--black); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding: 0 0 22px; font-size: .875rem; color: var(--gray-600); line-height: 1.75; max-width: 680px; }

/* ─── DOWNLOAD ─── */
.download {
  background: var(--black); padding: 120px 0;
  text-align: center;
}
.download .section-label { justify-content: center; display: flex; }
.download h2 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.05;
  color: var(--white); margin-bottom: 16px;
}
.dl-sub { font-size: .9rem; color: rgba(255,255,255,.35); margin-bottom: 44px; }
.dl-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.dl-brand-cta {
  display: inline-block; margin-top: 24px;
  font-size: 1.1rem; font-weight: 700; letter-spacing: -.01em;
  color: var(--white); border-bottom: 2px solid rgba(255,255,255,.4);
  padding-bottom: 4px;
  transition: border-color .2s, color .2s;
}
.dl-brand-cta:hover { border-color: var(--white); }

/* ─── FOOTER ─── */
.footer {
  background: #f59794;
  border-top: none;
  padding: 48px 0 32px;
}
.footer__top {
  display: flex; align-items: center; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.3);
  margin-bottom: 28px; flex-wrap: wrap;
}
.footer__logo { margin-right: auto; display: flex; align-items: center; }
.footer__logo-img { height: 32px; width: auto; display: block; border-radius: 8px; }

.footer__nav { display: flex; gap: 28px; }
.footer__nav a { font-size: .78rem; color: rgba(255,255,255,.7); font-weight: 500; transition: color .2s; }
.footer__nav a:hover { color: var(--white); }

.footer__social { display: flex; gap: 16px; }
.footer__social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: background .2s, color .2s;
}
.footer__social a svg { width: 15px; height: 15px; }
.footer__social a:hover { background: rgba(255,255,255,.5); color: var(--white); }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .72rem; color: rgba(255,255,255,.6); flex-wrap: wrap; gap: 12px;
}
.footer__bottom div { display: flex; gap: 20px; }
.footer__bottom a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer__bottom a:hover { color: var(--white); }

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .results__grid { grid-template-columns: repeat(2, 1fr); }
  .result-item:nth-child(3n) { border-right: 1px solid rgba(255,255,255,.08); }
  .result-item:nth-child(2n) { border-right: none; }
  .for-brands__layout { grid-template-columns: 1fr; gap: 48px; }
  .story__layout { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .work-card:first-child { grid-row: auto; }
  .hero__stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hstat { border-top: 1px solid rgba(255,255,255,.08); }
  .hstat + .hstat { border-left: none; }
  .hstat:nth-child(2n+1) { border-left: none; }
  .hstat:nth-child(2n) { border-left: 1px solid rgba(255,255,255,.08); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .container { padding: 0 20px; }
  .section-head-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .work__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .results__grid { grid-template-columns: 1fr 1fr; }
  .hero__title { font-size: clamp(40px, 11vw, 60px); }
  .footer__nav { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 520px) {
  .why__grid { grid-template-columns: 1fr; }
  .results__grid { grid-template-columns: 1fr; }
  .result-item { border-right: none !important; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .dl-btns { flex-direction: column; align-items: center; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__logo { margin-right: 0; }
}
