/* ============================================================
   HIDDEN CREATIVE — Website v2 (Contrast-style light theme)
   White canvas · black chunky type · red accent · video cards
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f4f4f8;
  --ink: #0e0f10;
  --red: #ee2024;
  --red-soft: #ffe9eb;
  --yellow: #ffd948;
  --gray: #666666;
  --lgray: #7a7b7c;
  --border: #ebebef;
  --dark: #0b0b0b;
  --font: -apple-system, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Inter, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --r: 24px; --r-lg: 40px; --r-sm: 16px;
  --shadow: rgba(38, 42, 62, 0.06) 0px 5px 25px 0px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { -webkit-tap-highlight-color: transparent; overscroll-behavior-y: none; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a, button { touch-action: manipulation; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--red); color: #fff; }

/* ---------- layout ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section { padding: 80px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--dark); color: #fff; }

/* ---------- type ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--red);
}
h1 { font-size: clamp(48px, 7.6vw, 104px); line-height: 0.88; font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(34px, 4.6vw, 58px); line-height: 1.05; font-weight: 700; letter-spacing: -0.015em; }
h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.accent { color: var(--red); }
.sub { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.6; color: var(--gray); max-width: 580px; }
.section--dark .sub { color: #b9b5aa; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--border);
  transition: transform 0.4s var(--ease);
}
.nav__in { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav__logo { font-size: 21px; font-weight: 800; letter-spacing: 0.03em; }
.nav__logo span { color: var(--red); }
.nav__links { display: flex; gap: 32px; align-items: center; }
.nav__links a { font-size: 14.5px; font-weight: 600; color: var(--gray); transition: color 0.25s; position: relative; }
.nav__links a:hover, .nav__links a.active { color: var(--ink); }
.nav__cta {
  font-size: 13.5px; font-weight: 700; color: #fff !important;
  background: var(--ink); padding: 11px 22px; border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s;
}
.nav__cta:hover { transform: translateY(-2px); background: var(--red); }
.dropdown { position: relative; }
.dropdown::after {
  content: ""; position: absolute; top: 100%; left: -18px; width: 260px; height: 32px;
}
.dropdown__menu {
  position: absolute; top: 32px; left: -18px; min-width: 260px;
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 10px; display: none; box-shadow: var(--shadow);
}
.dropdown:hover .dropdown__menu { display: block; }
.dropdown__menu a { display: block; padding: 11px 14px; border-radius: 10px; font-size: 14px; color: var(--gray); }
.dropdown__menu a:hover { background: var(--bg-soft); color: var(--ink); }
.dropdown__menu a b { color: var(--red); font-weight: 800; margin-right: 8px; font-size: 12px; }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 70px; left: 0; right: 0;
    background: #fff; padding: 24px 32px; gap: 18px;
    border-bottom: 1px solid var(--border);
    max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .nav__burger { display: block; }
  .dropdown { width: 100%; }
  .dropdown:hover .dropdown__menu { display: none; }
  .dropdown__menu {
    position: static; box-shadow: none; border: 0; padding: 6px 0 0 12px;
    min-width: 0; width: 100%; display: none; margin-top: 10px;
  }
  .dropdown.open .dropdown__menu { display: flex; flex-direction: column; gap: 2px; }
}

/* ---------- hero (Contrast style: heading + big video card) ---------- */
.hero { padding: 170px 0 60px; text-align: center; }
.hero .kicker { justify-content: center; }
.hero h1 { margin: 24px auto 24px; max-width: 980px; }
.hero .sub { margin: 0 auto; }
.hero__ctas { display: flex; gap: 14px; margin-top: 36px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 100px; font-size: 16px; font-weight: 600;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s;
}
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { transform: translateY(-3px); background: #d61b1f; }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { transform: translateY(-3px); background: var(--red); }
.btn--ghost { border: 1.5px solid #d8d5cd; color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-3px); }

/* video card — the signature component */
.vcard {
  position: relative; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  aspect-ratio: 16 / 9; background: #000;
}
.vcard--hero { margin-top: 64px; border-radius: var(--r-lg); }
.vcard .media {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  animation: kenburns 20s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.1) translate(-1.5%, 1.5%); }
}
.vcard .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 84px; height: 84px; border-radius: 50%; background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 26px; z-index: 2;
  animation: pulse 2.4s ease-in-out infinite; cursor: pointer;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(238,32,36,0.4); }
  55% { box-shadow: 0 0 0 24px rgba(238,32,36,0); }
}
.vcard .tag {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
  background: rgba(0,0,0,0.55); color: #ddd; padding: 7px 12px; border-radius: 999px;
  border: 1px dashed rgba(255,255,255,0.35);
}
.vcard--sm { aspect-ratio: 4 / 3; box-shadow: 0 14px 40px rgba(17,17,17,0.08); }

/* ---------- red ticker ---------- */
.ticker {
  background: var(--red-soft); color: var(--red); overflow: hidden; padding: 15px 0;
  transform: rotate(-2deg) scale(1.04); margin: 26px -20px;
}
.ticker__track {
  display: flex; gap: 44px; width: max-content; white-space: nowrap;
  animation: scroll-x 30s linear infinite;
  font-size: 13px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
}
@keyframes scroll-x { to { transform: translateX(-50%); } }
.ticker__track span::after { content: "✦"; margin-left: 44px; opacity: 0.6; }

/* ---------- feature rows (Contrast alternating) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature + .feature { margin-top: 110px; }
.feature--flip .f-copy { order: 2; }
@media (max-width: 900px) { .feature { grid-template-columns: 1fr; gap: 30px; } .feature--flip .f-copy { order: 0; } }
.f-copy .num {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.16em;
  color: var(--red); background: var(--red-soft); padding: 6px 12px; border-radius: 999px;
  margin-bottom: 18px;
}
.f-copy h2 { font-size: clamp(30px, 3.6vw, 46px); }
.f-copy .sub { margin-top: 16px; font-size: 16.5px; }
.f-copy .go { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; font-weight: 700; color: var(--ink); }
.f-copy .go:hover { color: var(--red); }
.f-bullets { margin-top: 22px; display: grid; gap: 10px; }
.f-bullets div { display: flex; gap: 10px; font-size: 14.5px; color: var(--gray); align-items: baseline; }
.f-bullets div::before { content: "✓"; color: var(--red); font-weight: 800; }

/* ---------- small cards row ---------- */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid--3 { grid-template-columns: 1fr; } .grid--2 { grid-template-columns: 1fr; } }
.mini {
  border: 1px solid var(--border); border-radius: 20px; overflow: hidden; background: #fff;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.mini:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.mini .vcard { border-radius: 0; border: 0; box-shadow: none; aspect-ratio: 16/10; }
.mini .pad { padding: 22px 24px 26px; }
.mini .pad h3 { font-size: 17px; }
.mini .pad p { font-size: 13.5px; color: var(--gray); margin-top: 6px; line-height: 1.55; }
.mini .pad .go { font-size: 13.5px; font-weight: 700; color: var(--red); margin-top: 12px; display: inline-block; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { padding: 34px 28px; border-radius: 20px; background: #fff; border: 1px solid var(--border); }
.stat__n { font-size: clamp(40px, 4.6vw, 58px); font-weight: 800; letter-spacing: -0.02em; }
.stat__n em { color: var(--red); font-style: normal; }
.stat__l { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--lgray); margin-top: 8px; }

/* ---------- phone / engagement ---------- */
.engage { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
@media (max-width: 900px) { .engage { grid-template-columns: 1fr; } }
.phone-stage { position: relative; display: flex; justify-content: center; min-height: 620px; align-items: center; }
.phone {
  width: 280px; height: 570px; border-radius: 44px; background: #000;
  border: 8px solid #1c1c1c; position: relative; overflow: hidden;
  box-shadow: 0 40px 90px rgba(17,17,17,0.28);
}
.phone::before {
  content: ""; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 105px; height: 25px; background: #000; border-radius: 999px; z-index: 3;
}
.phone__media { position: absolute; inset: 0; background-size: cover; background-position: center; animation: kenburns 16s ease-in-out infinite alternate; }
.phone__ui {
  position: absolute; left: 16px; right: 16px; bottom: 20px; z-index: 2;
  color: #fff; font-size: 13px; text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.phone__ui b { display: block; font-size: 15px; margin-bottom: 3px; }
.float-heart { position: absolute; bottom: 90px; font-size: 22px; z-index: 4; animation: floatup 3.4s ease-in forwards; opacity: 0; }
@keyframes floatup {
  0% { opacity: 0; transform: translateY(0) scale(0.7); }
  12% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-340px) translateX(var(--drift, 10px)) scale(1.25); }
}
.chatpop {
  position: absolute; z-index: 4; background: #fff; color: #111;
  padding: 10px 14px; border-radius: 14px; font-size: 12.5px; font-weight: 600;
  box-shadow: 0 14px 38px rgba(17,17,17,0.18); opacity: 0;
  animation: popin 0.6s var(--ease) forwards;
  display: flex; gap: 8px; align-items: center; border: 1px solid var(--border);
}
.chatpop .em { font-size: 15px; }
@keyframes popin { from { opacity: 0; transform: translateY(14px) scale(0.9); } to { opacity: 1; transform: none; } }
.engage__chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.chip {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--border); color: var(--gray); background: #fff;
}
.chip--hot { border-color: var(--red); color: var(--red); background: var(--red-soft); }

/* ---------- big quote ---------- */
.bigquote { text-align: center; max-width: 860px; margin: 0 auto; }
.bigquote p { font-size: clamp(22px, 2.6vw, 32px); font-weight: 700; line-height: 1.35; letter-spacing: -0.01em; }
.bigquote footer { margin-top: 30px; font-size: 14px; color: var(--gray); display: flex; align-items: center; justify-content: center; gap: 14px; }
.bigquote .avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--red);
  color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.ph-note {
  display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: 0.14em;
  color: var(--lgray); border: 1px dashed #d5d2c9; padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase; margin-bottom: 18px;
}

/* ---------- checklist ---------- */
.checks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 900px) { .checks { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .checks { grid-template-columns: 1fr; } }
.check {
  display: flex; gap: 10px; align-items: baseline; background: #fff;
  border: 1px solid var(--border); border-radius: 14px; padding: 15px 18px;
  font-size: 14px; font-weight: 600; color: #333;
}
.check::before { content: "✓"; color: var(--red); font-weight: 800; }

/* ---------- marquees (clients + media, near the end) ---------- */
.marquee { overflow: hidden; position: relative; padding: 22px 0; }
.marquee__track { display: flex; gap: 60px; width: max-content; animation: scroll-x var(--speed, 40s) linear infinite; align-items: center; }
.marquee--rev .marquee__track { animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__label { text-align: center; font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--lgray); margin-bottom: 6px; }
.logo-tile {
  height: 62px; width: 148px; border-radius: 14px; overflow: hidden;
  background: #fff; border: 1px solid var(--border);
  filter: grayscale(1); opacity: 0.85; transition: filter 0.3s, opacity 0.3s;
}
.logo-tile img { height: 100%; width: 100%; object-fit: cover; }
.logo-tile:hover { filter: grayscale(0); opacity: 1; }
.wordmark {
  font-size: 17px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase;
  color: #b3afa5; white-space: nowrap;
}

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 30px 24px; border-radius: 20px; background: #fff; border: 1px solid var(--border); }
.step__k { font-size: 12px; font-weight: 800; letter-spacing: 0.15em; color: var(--red); }
.step h3 { margin: 12px 0 10px; font-size: 18px; }
.step p { font-size: 13.5px; line-height: 1.55; color: var(--gray); }

/* ---------- service pages ---------- */
.svc-hero { padding: 170px 0 70px; }
.svc-hero__media { margin-top: 56px; }
.cols3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .cols3 { grid-template-columns: 1fr; } }
.list-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 28px 26px; }
.list-card h3 { font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); margin-bottom: 18px; }
.list-card ul { list-style: none; }
.list-card li { font-size: 14.5px; padding: 9px 0 9px 24px; position: relative; border-bottom: 1px solid #f2efe9; color: #333; }
.list-card li:last-child { border-bottom: 0; }
.list-card li::before { content: ""; position: absolute; left: 2px; top: 16px; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

/* ---------- portfolio ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .work-grid { grid-template-columns: 1fr; } }
.work { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; background: #eee; cursor: pointer; border: 1px solid var(--border); }
.work img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.work:hover img { transform: scale(1.07); }
.work__meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 22px 18px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: #fff; }
.work__meta b { display: block; font-size: 16px; }
.work__meta span { font-size: 12px; color: #cfccc4; }
.work--ph { display: flex; align-items: center; justify-content: center; border: 1px dashed #d5d2c9; background: var(--bg-soft); }
.work--ph .inner { text-align: center; color: var(--lgray); font-size: 13px; }
.work--ph .inner b { display: block; font-size: 15px; color: var(--gray); margin-bottom: 4px; }

/* ---------- CTA band + footer ---------- */
.cta-band { background: var(--red); color: #fff; padding: 96px 0; text-align: center; }
.cta-band h2 { max-width: 760px; margin: 16px auto 0; }
.cta-band .kicker { color: #ffd9da; justify-content: center; }
.cta-band .btn--ink { margin-top: 36px; background: var(--dark); }
.cta-band .btn--ink:hover { background: #000; }
footer.site { background: var(--dark); padding: 70px 0 36px; color: #9a968c; font-size: 14px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
footer.site h4 { color: #fff; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
footer.site a { display: block; padding: 5px 0; color: #9a968c; transition: color 0.2s; }
footer.site a:hover { color: #fff; }
footer.site .nav__logo { color: #fff; }
.foot-bottom { border-top: 1px solid #2a2a2a; padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; }

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.08s; } .rv-d2 { transition-delay: 0.16s; }
.rv-d3 { transition-delay: 0.24s; } .rv-d4 { transition-delay: 0.32s; }

/* hero word reveal */
.hw { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hw > span { display: inline-block; transform: translateY(110%); animation: wordup 0.9s var(--ease) forwards; }
@keyframes wordup { to { transform: translateY(0); } }
.jl { display: inline-block; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .rv { opacity: 1; transform: none; }
}

.sec-head { margin-bottom: 52px; }
.sec-head h2 { margin-top: 16px; }
.sec-head .sub { margin-top: 16px; }
.center { text-align: center; }
.center .sub { margin-left: auto; margin-right: auto; }
.center .kicker { justify-content: center; }


/* ---------- floating widget (bottom-left, persistent) ---------- */
.fwidget {
  position: fixed; left: 22px; bottom: 22px; z-index: 90;
  width: 270px; background: #fff; border-radius: 16px;
  box-shadow: rgba(38, 42, 62, 0.14) 0px 10px 40px 0px;
  border: 1px solid var(--border); padding: 14px; font-size: 14px;
}
.fwidget__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.fwidget__top b { font-size: 13px; }
.fwidget__close { cursor: pointer; color: var(--lgray); background: none; border: 0; font-size: 16px; line-height: 1; }
.fwidget__thumb { border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; background-size: cover; background-position: center; margin-bottom: 10px; position: relative; }
.fwidget__thumb::after { content: "▶"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; background: rgba(0,0,0,0.25); }
.fwidget__title { font-weight: 600; font-size: 14px; margin-bottom: 10px; }
.fwidget .btn { width: 100%; justify-content: center; padding: 11px 0; font-size: 14px; }
@media (max-width: 700px) { .fwidget { display: none; } }

/* ---------- starred testimonial cards ---------- */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .tcards { grid-template-columns: 1fr; } }
.tcard { background: #fff; border-radius: 24px; box-shadow: var(--shadow); border: 1px solid var(--border); padding: 24px; }
.tcard .stars { color: var(--red); font-size: 15px; letter-spacing: 3px; margin-bottom: 12px; }
.tcard h3 { font-size: 17px; margin-bottom: 8px; }
.tcard p { font-size: 15px; line-height: 1.55; color: var(--gray); font-weight: 500; }
.tcard footer { margin-top: 18px; display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--lgray); }
.tcard .avatar { width: 40px; height: 40px; border-radius: 100px; background: var(--red); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.tcard footer b { color: var(--ink); display: block; }

/* ---------- HERO v3 — split, 3D tilt stage ---------- */
.hero2 {
  min-height: 100vh; display: flex; align-items: center;
  padding: 110px 0 40px; position: relative; overflow: hidden;
}
.hero2__grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; width: 100%;
}
@media (max-width: 950px) { .hero2__grid { grid-template-columns: 1fr; gap: 44px; } .hero2 { padding-top: 130px; } }
.hero2 h1 { font-size: clamp(46px, 5.6vw, 84px); }
.hero2 .sub { margin-top: 24px; }
.hero2 .hero__ctas { justify-content: flex-start; margin-top: 34px; }
.hero2__trust { margin-top: 40px; font-size: 13px; color: var(--lgray); display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.hero2__trust b { color: var(--gray); font-weight: 600; }
.hero2__trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero2__trust span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--red); }

/* 3D stage */
.stage3d { position: relative; perspective: 1300px; }
.stage3d .blob {
  position: absolute; inset: -12% -14%; z-index: 0; filter: blur(46px); opacity: 0.55;
  background: radial-gradient(closest-side, rgba(238,32,36,0.32), rgba(255,233,235,0.55) 62%, transparent);
  animation: blobmorph 12s ease-in-out infinite alternate;
}
@keyframes blobmorph {
  0%   { border-radius: 52% 48% 61% 39% / 44% 59% 41% 56%; transform: rotate(0deg) scale(1); }
  50%  { border-radius: 39% 61% 45% 55% / 58% 42% 58% 42%; transform: rotate(9deg) scale(1.07); }
  100% { border-radius: 60% 40% 52% 48% / 41% 55% 45% 59%; transform: rotate(-7deg) scale(0.98); }
}
.tilt {
  position: relative; z-index: 1; transform-style: preserve-3d;
  transition: transform 0.18s ease-out; will-change: transform;
}
.tilt .vcard { aspect-ratio: 4 / 4.6; border-radius: var(--r-lg); box-shadow: rgba(38,42,62,0.16) 0px 30px 60px -12px; }
@media (max-width: 950px) { .tilt .vcard { aspect-ratio: 16 / 11; } }

/* floating depth chips */
.fchip {
  position: absolute; z-index: 2; background: #fff; border: 1px solid var(--border);
  border-radius: 100px; padding: 10px 16px; font-size: 12.5px; font-weight: 700;
  box-shadow: rgba(38,42,62,0.12) 0 10px 30px; white-space: nowrap;
  display: flex; gap: 8px; align-items: center; will-change: transform;
  animation: chipFloat 6s ease-in-out infinite;
  animation-delay: var(--fd, 0s);
  animation-duration: var(--fdur, 6s);
}
.fchip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.fchip--sq { border-radius: 16px; padding: 12px 14px; font-size: 18px; }
@keyframes chipFloat {
  0%   { transform: translate(0,0) rotate(0deg); }
  25%  { transform: translate(5px,-16px) rotate(3deg); }
  50%  { transform: translate(-4px,-26px) rotate(-3deg); }
  75%  { transform: translate(-7px,-11px) rotate(2deg); }
  100% { transform: translate(0,0) rotate(0deg); }
}
@media (max-width: 950px) { .fchip { display: none; } }

/* ============================================================
   AMBIENT LAYER — subtle background life (felt, not seen)
   ============================================================ */

/* 1) film grain over everything — ~2% opacity, pure texture */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 2000; pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* 2) white sections get a whisper of warmth in one corner */
.section:not(.section--soft):not(.section--dark) {
  background:
    radial-gradient(1100px 480px at 88% -8%, rgba(238, 32, 36, 0.06), transparent 62%),
    radial-gradient(900px 420px at -6% 108%, rgba(38, 42, 62, 0.05), transparent 60%);
}

/* 3) fog sections get depth instead of flat gray */
.section--soft {
  background:
    radial-gradient(1000px 460px at 12% -6%, rgba(238, 32, 36, 0.045), transparent 58%),
    linear-gradient(180deg, #f5f4f9 0%, #efeef4 100%);
}

/* 4) hero ambience — masked dot grid + two soft light pools */
.hero2 {
  background:
    radial-gradient(900px 520px at 78% 18%, rgba(238, 32, 36, 0.075), transparent 60%),
    radial-gradient(760px 480px at 6% 82%, rgba(38, 42, 62, 0.06), transparent 62%);
}
.hero2::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(14, 15, 16, 0.10) 1px, transparent 1.1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(720px 560px at 72% 34%, #000 0%, transparent 70%);
  mask-image: radial-gradient(720px 560px at 72% 34%, #000 0%, transparent 70%);
}

/* 5) red CTA band gets depth too */
.cta-band {
  background:
    radial-gradient(900px 500px at 82% -12%, rgba(255, 255, 255, 0.10), transparent 60%),
    radial-gradient(700px 420px at 8% 112%, rgba(0, 0, 0, 0.14), transparent 62%),
    var(--red);
}

/* 6) hairline transitions between white and fog sections */
.section--soft { border-top: 1px solid rgba(14,15,16,0.045); border-bottom: 1px solid rgba(14,15,16,0.045); }


/* ============================================================
   STRUCTURE LAYER — editorial guides + grid patches
   ============================================================ */

/* fixed vertical hairlines at content edges — the invisible grid, made visible */
.guides { position: fixed; inset: 0; pointer-events: none; z-index: 1; }
.guides::before, .guides::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(14,15,16,0.07) 12%, rgba(14,15,16,0.07) 88%, transparent);
}
.guides::before { left: max(24px, calc(50% - 590px)); }
.guides::after { right: max(24px, calc(50% - 590px)); }
@media (max-width: 700px) { .guides { display: none; } }

/* dot-grid patch in the corner of every white section */
.section { position: relative; }
.section:not(.section--soft):not(.section--dark)::before {
  content: ""; position: absolute; top: 0; right: 0; width: 46%; height: 65%;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(14,15,16,0.09) 1px, transparent 1.1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(closest-side at 78% 18%, #000 0%, transparent 100%);
  mask-image: radial-gradient(closest-side at 78% 18%, #000 0%, transparent 100%);
}

/* soft sections get the patch bottom-left, mirrored */
.section--soft::after {
  content: ""; position: absolute; bottom: 0; left: 0; width: 42%; height: 60%;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(14,15,16,0.08) 1px, transparent 1.1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(closest-side at 22% 80%, #000 0%, transparent 100%);
  mask-image: radial-gradient(closest-side at 22% 80%, #000 0%, transparent 100%);
}
.section--soft { position: relative; }
.section .wrap { position: relative; z-index: 2; }

/* ============================================================
   AWWWARDS LAYER — preloader, cursor, kinetic type
   ============================================================ */
#preloader {
  position: fixed; inset: 0; z-index: 5000; background: var(--dark);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 18px;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}
#preloader.done { transform: translateY(-100%); }
#preloader .pre__logo { color: #fff; font-size: 30px; font-weight: 800; letter-spacing: 0.03em; }
#preloader .pre__logo span { color: var(--red); animation: predot 1s ease-in-out infinite alternate; display: inline-block; }
@keyframes predot { from { transform: scale(1); } to { transform: scale(1.5); } }
#preloader .pre__count { color: #555; font-size: 13px; font-weight: 700; letter-spacing: 0.2em; }
@media (prefers-reduced-motion: reduce) { #preloader { display: none; } }

/* custom cursor */
.cur-dot, .cur-ring { position: fixed; top: 0; left: 0; z-index: 6000; pointer-events: none; border-radius: 50%; }
.cur-dot { width: 8px; height: 8px; background: var(--red); }
.cur-ring {
  width: 36px; height: 36px; border: 1.5px solid rgba(238,32,36,0.55);
  transition: width 0.25s, height 0.25s, margin 0.25s, border-color 0.25s;
}
.cur-ring.big { width: 58px; height: 58px; margin: -11px 0 0 -11px; border-color: rgba(238,32,36,0.9); }
@media (pointer: coarse) { .cur-dot, .cur-ring { display: none; } }

/* kinetic char spans */
.ch { display: inline-block; will-change: transform; }
.sec-head h2, .f-copy h2 { overflow: hidden; }

/* smooth-scroll html hint */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* buttons need transition off transform for magnetic effect */
.btn, .nav__cta { transition: background 0.25s, color 0.25s, border-color 0.25s; will-change: transform; }

/* ---------- delight layer ---------- */
#progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 7000;
  background: var(--red); transform-origin: 0 50%; transform: scaleX(0);
  pointer-events: none;
}
.confetti {
  position: fixed; width: 9px; height: 9px; z-index: 8000; pointer-events: none;
  border-radius: 2px;
}
.vcard, .phone { will-change: transform; }

/* ---------- real video + reel modal ---------- */
video.media, video.phone__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.logo-tile--media { filter: grayscale(1); opacity: 0.8; }
.logo-tile--media:hover { filter: grayscale(0); opacity: 1; }
.reel-modal {
  position: fixed; inset: 0; z-index: 9000; background: rgba(8,8,8,0.92);
  display: flex; align-items: center; justify-content: center; padding: 4vw;
  opacity: 0; transition: opacity 0.35s ease; backdrop-filter: blur(6px);
}
.reel-modal.open { opacity: 1; }
.reel-modal video { max-width: min(1100px, 92vw); max-height: 82vh; border-radius: 18px; box-shadow: 0 40px 120px rgba(0,0,0,0.6); }
.reel-modal .close {
  position: absolute; top: 26px; right: 30px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--red); color: #fff; border: 0; font-size: 18px; cursor: pointer;
}

/* ---------- official logo ---------- */
.nav__logoimg { height: 26px; display: block; }
#preloader img { display: block; }

/* ---------- photostrip (between the takes) ---------- */
.photostrip { overflow: hidden; padding: 20px 0 30px; }
.photostrip__track { gap: 26px; align-items: center; }
.pcard {
  width: 280px; height: 340px; border-radius: 18px; overflow: hidden; flex: 0 0 auto;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transform: rotate(-2.2deg); transition: transform 0.4s var(--ease), box-shadow 0.4s;
  background: #eee;
}
.pcard:nth-child(even) { transform: rotate(2deg) translateY(12px); }
.pcard:hover { transform: rotate(0deg) scale(1.05); box-shadow: rgba(38,42,62,0.18) 0 20px 50px; z-index: 2; }
.pcard img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- clickable work tiles ---------- */
.work { display: block; }
.work__go {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  background: #fff; color: var(--ink); padding: 8px 13px; border-radius: 999px;
  opacity: 0; transform: translateY(-6px); transition: all 0.3s var(--ease);
}
.work:hover .work__go { opacity: 1; transform: none; }

/* ---------- integrations orbit (plug & play) ---------- */
.orbit-stage { display: flex; flex-direction: column; align-items: center; }
.orbit { position: relative; width: 460px; height: 460px; flex: 0 0 auto; }
@media (max-width: 1000px) { .orbit { transform: scale(0.8); margin: -40px 0; } }
@media (max-width: 480px) { .orbit { transform: scale(0.62); margin: -80px 0; } }
.orbit__blob {
  position: absolute; inset: 8%; border-radius: 50%; filter: blur(42px); opacity: 0.5;
  background: radial-gradient(closest-side, rgba(238,32,36,0.25), rgba(255,233,235,0.5) 60%, transparent);
  animation: blobpulse 7s ease-in-out infinite alternate;
}
@keyframes blobpulse { from { transform: scale(0.94); } to { transform: scale(1.06); } }
.orbit__ring { position: absolute; border: 1.5px dashed #e3e0e8; border-radius: 50%; }
.orbit__ring--1 { inset: 24%; }
.orbit__ring--2 { inset: 2%; }
.orbit__center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 108px; height: 108px; border-radius: 26px; background: #fff;
  border: 1px solid var(--border); box-shadow: rgba(38,42,62,0.14) 0 14px 44px;
  display: flex; align-items: center; justify-content: center; z-index: 3;
}
.orbit__center img { width: 76px; }
.oring { position: absolute; inset: 0; animation: ospin var(--dur, 46s) linear infinite; }
.oring--1 { --dur: 38s; }
.oring--2 { --dur: 64s; animation-direction: reverse; }
@keyframes ospin { to { transform: rotate(360deg); } }
.oitem {
  position: absolute; top: 50%; left: 50%; width: 0; height: 0;
  transform: rotate(var(--a)) translateX(var(--r, 120px));
}
.oring--2 .oitem { --r: 224px; }
.oring--1 .oitem { --r: 120px; }
.oitem span {
  display: flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; margin: -29px 0 0 -29px; border-radius: 16px;
  background: #fff; border: 1px solid var(--border);
  box-shadow: rgba(38,42,62,0.1) 0 8px 26px;
  animation: ospin var(--dur, 46s) linear infinite reverse;
  transition: transform 0.3s var(--ease);
}
.oring--2 .oitem span { animation-direction: normal; animation-duration: 64s; }
.oring--1 .oitem span { animation-duration: 38s; }
.oitem span:hover { transform: scale(1.18); }
.oitem img { width: 30px; height: 30px; }
.orbit__note { font-size: 12.5px; color: var(--lgray); margin-top: 10px; text-align: center; }
.f-bullets b { color: var(--ink); }
