/* ============================================================
   SIMPLEE CREATIVE — design system
   ink #0D0D0F · surface #191919 · cyan #43C6EC · yellow #FAED25
   Syne (display) · Manrope (body)
   ============================================================ */

:root {
  --ink: #0d0d0f;
  --ink-2: #131316;
  --surface: #191919;
  --surface-2: #202024;
  --line: rgba(255, 255, 255, 0.1);
  --white: #ffffff;
  --bone: #f4f4f1;
  --bone-2: #e9e9e4;
  --line-dark: rgba(13, 13, 15, 0.12);
  --text: #eceff1;
  --text-muted: #a3a8ad;
  --text-ink: #141416;
  --text-ink-muted: #55585c;
  --cyan: #43c6ec;
  --cyan-deep: #1899c4;
  --yellow: #faed25;
  --swatch-dark: #2e2d33;
  --swatch-light: #d6d4cd;
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.44, 1);
  --nav-h: 76px;
  --radius: 20px;
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

::selection { background: var(--yellow); color: var(--ink); }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.section { padding-block: clamp(88px, 12vw, 150px); }

.section--light {
  background: var(--bone);
  color: var(--text-ink);
}

[id] { scroll-margin-top: calc(var(--nav-h) + 12px); }

/* ---------- film grain ---------- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 100px;
  padding: 13px 26px;
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring), background-color 0.25s,
              color 0.25s, border-color 0.25s, box-shadow 0.3s;
  will-change: transform;
}
.btn:active { transform: scale(0.96); }
.btn svg { transition: transform 0.3s var(--ease-spring); }
.btn:hover svg { transform: translate(3px, -3px); }

.btn--primary {
  background: var(--cyan);
  color: var(--ink);
}
.btn--primary:hover {
  background: var(--yellow);
  box-shadow: 0 8px 30px rgba(250, 237, 37, 0.25);
}

.btn--ghost {
  border-color: var(--line);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); }

.btn--dark {
  background: var(--ink);
  color: var(--white);
}
.btn--dark:hover { background: var(--cyan-deep); }

.btn--ink {
  background: var(--ink);
  color: var(--yellow);
}
.btn--ink:hover {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 36px rgba(13, 13, 15, 0.3), 0 0 40px rgba(250, 237, 37, 0.35);
}

.btn--lg { padding: 17px 34px; font-size: 16px; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: transform 0.4s var(--ease-out), background-color 0.3s;
}
.nav.is-scrolled {
  background: rgba(13, 13, 15, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav.is-hidden { transform: translateY(-100%); }

.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-right: auto;
}
.nav__logo img {
  width: 44px; height: 44px;
  transition: transform 0.7s var(--ease-spring);
  will-change: transform;
}
.nav__logo:hover img { transform: perspective(400px) rotateY(360deg) scale(1.12); }
.nav__logo em {
  font-style: normal;
  color: var(--cyan);
  transition: color 0.35s ease;
}
.nav__logo:hover em { color: var(--yellow); }

.nav__links { display: flex; gap: 6px; }
.nav__links a {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 100px;
  transition: color 0.25s, background-color 0.25s;
}
.nav__links a:hover { color: var(--white); background: rgba(255, 255, 255, 0.07); }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 46px; height: 46px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.3s, background-color 0.3s, transform 0.3s var(--ease-spring);
}
.nav__burger:hover {
  border-color: var(--cyan);
  background: rgba(67, 198, 236, 0.1);
  transform: scale(1.06);
}
.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-spring), opacity 0.25s,
              background-color 0.3s, width 0.3s var(--ease-spring);
}
.nav__burger span:nth-child(2) { width: 68%; align-self: flex-end; }
.nav__burger:hover span { background: var(--cyan); }
.nav__burger:hover span:nth-child(2) { width: 100%; }
.nav__burger[aria-expanded="true"] { border-color: var(--yellow); background: rgba(250, 237, 37, 0.12); }
.nav__burger[aria-expanded="true"] span { background: var(--yellow); }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(9px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(13, 13, 15, 0.96);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  display: grid;
  place-items: center;
  gap: 36px;
  padding-top: calc(var(--nav-h) + 16px);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0s 0.35s;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s var(--ease-out), visibility 0s;
}
.mobile-menu__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.mobile-menu.is-open .mobile-menu__eyebrow { opacity: 1; transform: none; }

.mobile-menu nav { display: grid; gap: 8px; text-align: center; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(28px, 7.5vw, 42px);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  padding: 8px 6px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out), color 0.25s;
}
.mobile-menu.is-open a { opacity: 1; transform: none; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: 0.05s; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: 0.1s; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: 0.15s; }
.mobile-menu.is-open a:nth-child(5) { transition-delay: 0.2s; }
.mobile-menu.is-open a:nth-child(6) { transition-delay: 0.25s; }
.mobile-menu a:hover { color: var(--cyan); }

.mobile-menu a.mobile-menu__cta {
  font-size: 18px;
  padding: 20px 44px;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s var(--ease-out) 0.3s, transform 0.45s var(--ease-out) 0.3s;
}
.mobile-menu.is-open .mobile-menu__cta { opacity: 1; transform: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.16;
}
.hero__glow--cyan {
  width: 620px; height: 620px;
  background: var(--cyan);
  top: -180px; right: -140px;
  animation: heroGlowCyan 19s ease-in-out infinite;
}
.hero__glow--yellow {
  width: 420px; height: 420px;
  background: var(--yellow);
  bottom: -160px; left: -160px;
  opacity: 0.08;
  animation: heroGlowYellow 26s ease-in-out infinite;
}
@keyframes heroGlowCyan {
  0%, 100% { opacity: 0.13; transform: translate(0, 0) scale(1); }
  50% { opacity: 0.23; transform: translate(-30px, 24px) scale(1.08); }
}
@keyframes heroGlowYellow {
  0%, 100% { opacity: 0.06; transform: translate(0, 0) scale(1); }
  50% { opacity: 0.12; transform: translate(24px, -20px) scale(1.1); }
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
                    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.35;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 60% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 70% at 60% 40%, #000 30%, transparent 75%);
}

.hero__inner {
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding-block: 48px;
}

p.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.tick {
  width: 22px; height: 2px;
  background: var(--cyan);
  display: inline-block;
  flex-shrink: 0;
}
.hero__eyebrow-text { transform: translateY(2px); }

.hero__copy { container-type: inline-size; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--white);
  text-transform: uppercase;
}
@supports (font-size: 1cqi) {
  .hero__title { font-size: clamp(38px, 9.2cqi, 66px); }
}
.hero__rotator-wrap { color: var(--cyan); display: inline-block; }
.hero__rotator { display: inline-block; }
.hero__rotator.is-out {
  opacity: 0;
  transform: translateX(0.5em) scale(0.96);
  filter: blur(3px);
  transition: opacity 0.26s ease-in, transform 0.26s ease-in, filter 0.26s ease-in;
}
.hero__rotator.is-in-from {
  opacity: 0;
  transform: translateX(-0.6em) scale(0.94);
  filter: blur(4px);
}
.hero__rotator.is-in {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  transition: opacity 0.62s var(--ease-out), transform 0.62s var(--ease-out), filter 0.62s var(--ease-out);
}

.hero__sub {
  max-width: 52ch;
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--text-muted);
  margin-top: 28px;
}
.hero__sub strong { color: var(--yellow); font-weight: 700; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

/* hero art */
.hero__art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
}
.hero__diamond {
  position: relative;
  z-index: 2;
  animation: heroFloat 7s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(67, 198, 236, 0.28));
}
.hero__diamond img {
  width: clamp(240px, 26vw, 380px);
  height: auto;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-22px) rotate(2deg); }
}
.hero__ring {
  position: absolute;
  width: clamp(320px, 34vw, 500px);
  aspect-ratio: 1;
  border: 1px dashed rgba(67, 198, 236, 0.4);
  border-radius: 50%;
  animation: ringSpin 30s linear infinite;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }

.hero__chip {
  position: absolute;
  z-index: 3;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 9px 18px;
  border-radius: 100px;
  animation: heroFloat 6s ease-in-out infinite;
}
.hero__chip--1 { top: 8%; left: 4%; background: var(--yellow); color: var(--ink); animation-delay: -1.5s; }
.hero__chip--2 { bottom: 14%; left: -2%; background: var(--white); color: var(--ink); animation-delay: -3s; }
.hero__chip--3 { top: 30%; right: -2%; background: var(--cyan); color: var(--ink); animation-delay: -4.5s; }

.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}
.hero__scroll:hover { color: var(--cyan); }
.hero__scroll svg { animation: scrollNudge 2s ease-in-out infinite; }
@keyframes scrollNudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* hero entrance */
.reveal-line { display: block; }
.hero .reveal-line {
  opacity: 0;
  transform: translateY(34px);
  animation: lineUp 0.9s var(--ease-out) forwards;
}
.hero__title .reveal-line > span { display: inline-block; }
.hero .reveal-line:nth-of-type(1) { animation-delay: 0.05s; }
.hero__title .reveal-line:nth-of-type(1) { animation-delay: 0.15s; }
.hero__title .reveal-line:nth-of-type(2) { animation-delay: 0.25s; }
.hero__title .reveal-line:nth-of-type(3) { animation-delay: 0.35s; }
.hero__sub.reveal-line { animation-delay: 0.5s; }
.hero__actions.reveal-line { animation-delay: 0.62s; }
@keyframes lineUp {
  to { opacity: 1; transform: none; }
}
.hero__art {
  opacity: 0;
  animation: artIn 1.1s var(--ease-out) 0.45s forwards;
}
@keyframes artIn {
  from { opacity: 0; transform: scale(0.92) translateY(24px); }
  to { opacity: 1; transform: none; }
}

/* ---------- marquee ---------- */
/* Band background is a separate, oversized, rotated layer so the tilt
   never lifts a corner clear of the flat clipping box (that gap was
   exposing the page background at wide viewports). The text rotates
   on its own to match, independent of the scroll-track animation. */
.marquee {
  position: relative;
  overflow: hidden;
  z-index: 2;
  color: var(--ink);
  padding-block: 18px;
  transform: rotate(-1.2deg) scale(1.02);
}
.marquee::before {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  top: -36px;
  bottom: -36px;
  background: var(--yellow);
  border-block: 2px solid var(--ink);
  z-index: -1;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 26px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.marquee__track i {
  font-style: normal;
  color: var(--cyan-deep);
  padding-inline: 14px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- section heads ---------- */
.section__eyebrow {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.section--light .section__eyebrow { color: var(--cyan-deep); }

.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.section__head { margin-bottom: clamp(48px, 6vw, 80px); }

.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.55);
}
.outline--yellow { -webkit-text-stroke: 1.5px var(--yellow); }
.accent { color: var(--cyan-deep); }
.fill-yellow { color: var(--yellow); }
.fill-cyan { color: var(--cyan); }

/* ---------- services grid ---------- */
/* Cards echo the hero's diamond/ring/chip motif (dashed rotating ring,
   solid color badge) instead of a generic icon grid, so this section
   reads as the same visual "ecosystem" as the hero rather than a
   separate, easy-to-skim accordion. */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 2.4vw, 28px);
}

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 36px);
  transition: transform 0.4s var(--ease-spring), border-color 0.35s, box-shadow 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 24px 50px -24px var(--accent-shadow);
}
.service-card--cyan { --accent: var(--cyan); --accent-shadow: rgba(67, 198, 236, 0.4); }
.service-card--yellow { --accent: var(--yellow); --accent-shadow: rgba(250, 237, 37, 0.35); }

.service-card__top {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.service-card__badge {
  position: relative;
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.service-card__ring {
  position: absolute;
  inset: 0;
  border: 1px dashed var(--accent);
  border-radius: 50%;
  opacity: 0.5;
  animation: ringSpin 16s linear infinite;
}
.service-card__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: transform 0.4s var(--ease-spring);
}
.service-card:hover .service-card__icon { transform: scale(1.1) rotate(-8deg); }

.service-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 2vw, 22px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.service-card__desc {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 20px;
}
.service-card__list {
  list-style: none;
  display: grid;
  gap: 10px;
}
.service-card__list li {
  position: relative;
  padding-left: 22px;
  font-weight: 600;
  font-size: 14px;
}
.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.52em;
  width: 12px; height: 2px;
  background: var(--accent);
}

/* ---------- work ---------- */
.work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.6vw, 32px);
}

.work-card {
  --accent: var(--cyan);
  --accent-glow: rgba(67, 198, 236, 0.35);
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--text);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: linear-gradient(165deg, var(--surface) 0%, var(--ink-2) 100%);
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s var(--ease-out),
              border-color 0.35s var(--ease-out);
}
.work-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 28px 64px -22px var(--accent-glow);
}
/* Each card's --accent is set inline to a color sampled from its own
   logo, so the glow always matches the brand it's showing off rather
   than an arbitrary alternating palette. */
.work-card__glow {
  position: absolute;
  top: -30%; right: -18%;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 72%);
  filter: blur(46px);
  pointer-events: none;
  animation: workGlowPulse 5s ease-in-out infinite;
}
.work-card:nth-child(2) .work-card__glow { animation-delay: -0.8s; }
.work-card:nth-child(3) .work-card__glow { animation-delay: -1.6s; }
.work-card:nth-child(4) .work-card__glow { animation-delay: -2.4s; }
.work-card:nth-child(5) .work-card__glow { animation-delay: -3.2s; }
.work-card:nth-child(6) .work-card__glow { animation-delay: -4.1s; }
@keyframes workGlowPulse {
  0%, 100% { opacity: 0.16; transform: scale(1); }
  50% { opacity: 0.36; transform: scale(1.18); }
}

.work-card__canvas {
  position: relative;
  aspect-ratio: 16 / 12;
  display: grid;
  place-items: center;
  padding: 8%;
  overflow: hidden;
}
/* A soft blurred "spotlight" pool sits behind each logo -- light for
   marks that need contrast against dark, a faint accent tint for
   marks that already read fine -- so logos float in glow instead of
   sitting in a flat colored rectangle. */
.work-card__canvas::after {
  content: "";
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(36px);
  z-index: 0;
}
.work-card__canvas--light::after { background: rgba(255, 255, 255, 0.16); }
.work-card__canvas--dark::after { background: var(--accent); opacity: 0.16; }
.work-card__canvas img {
  position: relative;
  z-index: 1;
  max-width: 76%;
  max-height: 76%;
  object-fit: contain;
  transition: transform 0.55s var(--ease-out);
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.45));
}
.work-card:hover .work-card__canvas img { transform: scale(1.08); }

.work-card__meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 24px;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
}
.work-card__meta h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.9vw, 21px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0;
}
.work-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.work-card__tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.work-card__view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.work-card:hover .work-card__view { opacity: 1; transform: none; }
.work-card__view svg { transition: transform 0.3s var(--ease-spring); }
.work-card:hover .work-card__view svg { transform: translate(2px, -2px); }
@media (hover: none) {
  .work-card__view { opacity: 1; transform: none; }
}

.work__note {
  margin-top: clamp(36px, 5vw, 56px);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
}
.work__note a {
  color: var(--cyan);
  font-weight: 800;
  text-decoration: none;
}
.work__note a:hover { text-decoration: underline; }

/* ---------- client wall ---------- */
/* Lives inside .work as a trailing footer band, not a separate section,
   so it inherits the light section background and reads as one
   continuous system with the Selected Work grid above it. */
.clients {
  padding-top: clamp(48px, 6vw, 72px);
  overflow: hidden;
}
.clients__label {
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.clients__marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.clients__track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.clients__track:hover { animation-play-state: paused; }
.clients__set {
  display: flex;
  gap: 20px;
  padding-right: 20px;
}
.tile {
  position: relative;
  display: grid;
  place-items: center;
  width: 220px;
  height: 196px;
  border-radius: 16px;
  padding: 20px;
  flex-shrink: 0;
  border: 1.5px solid transparent;
  transition: transform 0.4s var(--ease-spring), border-color 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out);
}
.tile:hover {
  transform: translateY(-6px) scale(1.04);
  border-color: var(--accent);
  box-shadow: 0 18px 40px -16px var(--accent-glow);
}
.tile img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.4s var(--ease-out);
}
.tile:hover img { transform: scale(1.05); }
.tile--dark { background: var(--swatch-dark); }
.tile--light { background: var(--swatch-light); }

/* ---------- pricing ---------- */
.pricing__lead {
  max-width: 60ch;
  color: var(--text-muted);
  font-size: clamp(16px, 1.6vw, 18px);
  margin-top: 18px;
}

.pricing__deal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  font-weight: 600;
  color: var(--text);
}
.pricing__deal-badge {
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--yellow);
  padding: 6px 14px;
  border-radius: 100px;
}

.pricing__toggle {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  margin: clamp(32px, 4vw, 48px) 0 clamp(40px, 5vw, 64px);
}
.pricing__tab {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-muted);
  background: transparent;
  border: 0;
  border-radius: 100px;
  padding: 12px 22px;
  cursor: pointer;
  transition: background-color 0.3s var(--ease-out), color 0.3s;
}
.pricing__tab:hover { color: var(--text); }
.pricing__tab.is-active { background: var(--cyan); color: var(--ink); }

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-spring), border-color 0.35s, box-shadow 0.35s;
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(67, 198, 236, 0.4); }
.price-card--buyout { max-width: 620px; }

.price-card__badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(67, 198, 236, 0.12);
  border: 1px solid rgba(67, 198, 236, 0.3);
  border-radius: 100px;
  padding: 7px 14px;
  margin-bottom: 18px;
}
.price-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 32px);
  text-transform: uppercase;
}
.pricing__grid .price-card__name { font-size: clamp(19px, 2vw, 22px); }

.price-card__from {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 16px;
}
.price-card__deal {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.price-card__was {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(163, 168, 173, 0.6);
}
.price-card__save {
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--yellow);
  padding: 4px 10px;
  border-radius: 100px;
}
.price-card__deal + .price-card__price { margin-top: 2px; }
.price-card__price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-top: 8px;
}
.price-card__currency {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--yellow);
  transform: translateY(-0.3em);
}
.price-card__price strong {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 52px);
  font-weight: 800;
  line-height: 1;
  color: var(--yellow);
  font-variant-numeric: tabular-nums;
}
.pricing__grid .price-card__price { margin-top: 14px; }
.pricing__grid .price-card__price strong { font-size: clamp(34px, 3.8vw, 42px); }
.price-card__price em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.35em;
}

.price-card__desc { color: var(--text-muted); margin-top: 16px; max-width: 50ch; }
.pricing__grid .price-card__desc { font-size: 14.5px; }

.price-card__list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
}
.price-card__list li { position: relative; padding-left: 26px; font-weight: 600; font-size: 15px; }
.price-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 13px; height: 2px;
  background: var(--cyan);
}
.price-card .btn { margin-top: auto; align-self: flex-start; }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: stretch;
}

.price-card--popular {
  border-color: rgba(67, 198, 236, 0.55);
  background: linear-gradient(165deg, var(--surface) 0%, var(--surface-2) 100%);
  transform: scale(1.035);
  animation: popularGlow 3.6s ease-in-out infinite;
}
.price-card--popular:hover { transform: scale(1.035) translateY(-6px); }
@keyframes popularGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(67, 198, 236, 0.18), 0 20px 50px rgba(67, 198, 236, 0.05); }
  50% { box-shadow: 0 0 0 1px rgba(67, 198, 236, 0.5), 0 24px 60px rgba(67, 198, 236, 0.18); }
}
.price-card__ribbon {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing__note { margin-top: clamp(32px, 4vw, 48px); font-size: 15px; color: var(--text-muted); }
.pricing__note a { color: var(--cyan); font-weight: 700; text-decoration: none; }
.pricing__note a:hover { text-decoration: underline; }

/* ---------- process ---------- */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 2.6vw, 34px);
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), border-color 0.3s;
}
.step:hover { transform: translateY(-6px); border-color: rgba(67, 198, 236, 0.5); }
.step__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 46px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cyan);
  margin-bottom: 22px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.step p { color: var(--text-muted); font-size: 15px; }

/* stats */
.stats-band { padding-top: clamp(16px, 2vw, 28px); padding-bottom: clamp(56px, 7vw, 90px); }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.1;
  color: var(--cyan-deep);
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-ink-muted);
}

/* ---------- about ---------- */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.about__lead {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 27px);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 22px;
}
.about__copy p:not(.about__lead) {
  color: var(--text-ink-muted);
  margin-bottom: 30px;
  max-width: 54ch;
}

.about__team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.4vw, 28px);
}
.member__photo {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bone-2);
}
.member__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.member:hover .member__photo img { transform: scale(1.05); }
.member figcaption {
  display: grid;
  padding-top: 14px;
}
.member strong {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
}
.member span { font-size: 14px; font-weight: 600; color: var(--text-ink-muted); }

/* ---------- quotes ---------- */
.quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
}
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform 0.4s var(--ease-spring), border-color 0.3s;
}
.quote:hover { transform: translateY(-6px); border-color: rgba(250, 237, 37, 0.45); }
.quote p {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
}
.quote footer {
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- big cta ---------- */
.cta {
  background: var(--yellow);
  color: var(--ink);
  text-align: center;
  padding-block: clamp(90px, 12vw, 150px);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(13, 13, 15, 0.14) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 30%, #000 90%);
  mask-image: radial-gradient(ellipse at center, transparent 30%, #000 90%);
}
.cta__title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 1.03;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.cta .btn { position: relative; }

/* ---------- contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.contact__blurb {
  color: var(--text-muted);
  margin-top: 22px;
  max-width: 44ch;
}
.contact__email {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s;
}
.contact__email:hover { border-color: var(--cyan); }

.contact__socials {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}
.contact__socials a {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease-spring), color 0.25s, border-color 0.25s;
}
.contact__socials a:hover {
  transform: translateY(-4px);
  color: var(--ink);
  background: var(--cyan);
  border-color: var(--cyan);
}

/* form */
.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(26px, 3.4vw, 44px);
  display: grid;
  gap: 22px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form__field { display: grid; gap: 8px; }
.form__field label {
  font-weight: 700;
  font-size: 14px;
}
.form__field label span { color: var(--cyan); }
.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  min-height: 50px;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}
.form__field textarea { resize: vertical; }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(67, 198, 236, 0.22);
}
.form__field.has-error input,
.form__field.has-error textarea { border-color: #ff5d5d; }
.form__error {
  display: none;
  font-size: 13px;
  font-weight: 600;
  color: #ff8080;
}
.form__field.has-error .form__error { display: block; }

.form__submit { justify-content: center; border: 0; }
.form__success {
  font-weight: 600;
  color: var(--yellow);
}

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding-block: 40px;
  background: var(--ink-2);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-right: auto;
}
.footer__logo em { font-style: normal; color: var(--cyan); }
.footer__links { display: flex; flex-wrap: wrap; gap: 4px 22px; }
.footer__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.footer__copy { font-size: 13px; color: var(--text-muted); }
.footer__utility { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer__utility a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}
.footer__utility a:hover { color: var(--cyan); }

/* ---------- 404 ---------- */
.notfound {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.notfound__bg { position: absolute; inset: 0; z-index: -1; }
.notfound__inner { text-align: center; padding-block: 40px; }
.notfound__code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(90px, 16vw, 200px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--cyan);
  opacity: 0.5;
}
.notfound__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: -0.2em;
}
.notfound__sub {
  max-width: 52ch;
  margin: 22px auto 0;
  color: var(--text-muted);
  font-size: clamp(16px, 1.6vw, 18px);
}
.notfound__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}
.notfound__links {
  margin-top: 30px;
  font-size: 14px;
  color: var(--text-muted);
}
.notfound__links a {
  color: var(--cyan);
  font-weight: 700;
  text-decoration: none;
}
.notfound__links a:hover { text-decoration: underline; }

/* ---------- legal ---------- */
.legal-hero {
  padding: calc(var(--nav-h) + clamp(56px, 9vw, 100px)) 0 clamp(30px, 5vw, 50px);
}
.legal-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 22px;
}
.legal-updated {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 16px;
}
.legal-hero .reveal-line {
  opacity: 0;
  transform: translateY(30px);
  animation: lineUp 0.8s var(--ease-out) forwards;
}
.legal-hero .reveal-line:nth-of-type(2) { animation-delay: 0.1s; }
.legal-hero .reveal-line:nth-of-type(3) { animation-delay: 0.2s; }

.legal-section { padding-top: clamp(20px, 3vw, 32px); }
.legal-content { max-width: 720px; }
.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 2.2vw, 24px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-top: 40px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: var(--text-muted);
  margin-top: 14px;
  max-width: 68ch;
}
.legal-content strong { color: var(--text); font-weight: 700; }
.legal-content a { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--yellow); }
.legal-content ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.legal-content li {
  position: relative;
  padding-left: 24px;
  color: var(--text-muted);
  max-width: 68ch;
}
.legal-content li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 12px; height: 2px;
  background: var(--cyan);
}

/* ---------- store ---------- */
.nav__links a.is-active { color: var(--white); background: rgba(255, 255, 255, 0.07); }

.store-hero {
  padding: calc(var(--nav-h) + clamp(56px, 9vw, 110px)) 0 clamp(40px, 6vw, 70px);
}
.store-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5.4vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 26px;
}
.store-hero__sub {
  max-width: 56ch;
  color: var(--text-muted);
  font-size: clamp(16px, 1.6vw, 18px);
  margin-top: 22px;
}
.store-hero .reveal-line {
  opacity: 0;
  transform: translateY(34px);
  animation: lineUp 0.9s var(--ease-out) forwards;
}
.store-hero .reveal-line:nth-of-type(2) { animation-delay: 0.12s; }
.store-hero .reveal-line:nth-of-type(3) { animation-delay: 0.24s; }

.product-section { padding-top: clamp(24px, 4vw, 40px); }

.product {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(24px, 3.6vw, 52px);
}

.product__demo-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}

.tint-embed {
  background: #0a0a0a;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.tint-embed iframe {
  display: block;
  width: 100%;
  height: 620px;
  border: 0;
}
.tint-embed__link { margin-top: 12px; font-size: 14px; }
.tint-embed__link a {
  color: var(--cyan);
  font-weight: 700;
  text-decoration: none;
}
.tint-embed__link a:hover { text-decoration: underline; }
@media (max-width: 560px) {
  .tint-embed iframe { height: 560px; }
}

.product__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  text-transform: uppercase;
  line-height: 1.05;
  margin-top: 6px;
}
.product__price {
  font-size: 17px;
  color: var(--text-muted);
  margin-top: 12px;
}
.product__price strong {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--yellow);
  margin-right: 6px;
}
.product__desc { color: var(--text-muted); margin-top: 18px; }
.product__includes {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.product__includes li {
  position: relative;
  padding-left: 26px;
  font-weight: 600;
  font-size: 15px;
}
.product__includes li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 13px; height: 2px;
  background: var(--cyan);
}
.product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.custom-card {
  margin-top: clamp(28px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(24px, 3.6vw, 44px);
}
.custom-card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  text-transform: uppercase;
}
.custom-card p { max-width: 52ch; font-weight: 600; margin-top: 8px; }

/* homepage store teaser */
.store-teaser { padding-block: 0; }
/* .store-teaser__band is a transparent positioning wrapper only — the
   glow lives here as a negative-z-index child, which paints above a
   parent's own background in CSS stacking order. Putting the box's
   actual background/border on a separate .store-teaser__inner child
   lets that inner box paint over the glow within its own bounds, so
   the glow only shows in the overflow margin outside the box. */
.store-teaser__band {
  position: relative;
}
.store-teaser__band::after {
  content: "";
  position: absolute;
  inset: -18px;
  background: var(--cyan);
  filter: blur(30px);
  border-radius: calc(var(--radius) + 8px);
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}
.store-teaser__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--ink-2);
  border: 1px solid rgba(67, 198, 236, 0.45);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(24px, 3.6vw, 44px);
  box-shadow: 0 0 0 1px rgba(67, 198, 236, 0.08);
}
.store-teaser__band p.store-teaser__badge {
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--yellow);
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.store-teaser__band h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  text-transform: uppercase;
  line-height: 1.1;
}
.store-teaser__band h2 span { color: var(--cyan); }
.store-teaser__band p { color: var(--text-muted); max-width: 52ch; margin-top: 10px; }

@media (max-width: 900px) {
  .product { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .price-card--popular { transform: none; }
  .price-card--popular:hover { transform: translateY(-6px); }
}

/* ---------- store animations ---------- */

/* hero headline: slow outline color pulse */
.outline--pulse { animation: outlinePulse 4.5s ease-in-out infinite; }
@keyframes outlinePulse {
  0%, 100% { -webkit-text-stroke-color: rgba(255, 255, 255, 0.55); }
  50% { -webkit-text-stroke-color: rgba(67, 198, 236, 0.85); }
}

/* product title: word-by-word cascade on scroll reveal */
.product__title .word-in {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.product__title.in-view .word-in { opacity: 1; transform: none; }
.product__title.in-view .word-in:nth-child(1) { transition-delay: 0.05s; }
.product__title.in-view .word-in:nth-child(2) { transition-delay: 0.15s; }
.product__title.in-view .word-in:nth-child(3) { transition-delay: 0.25s; }

/* price count-up target */
.price-count { font-variant-numeric: tabular-nums; }

.store-hero { position: relative; overflow: hidden; }
.store-hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.store-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 85% 75% at 55% 32%, transparent 0%, transparent 38%, var(--ink) 88%),
    linear-gradient(to bottom, transparent 0%, transparent 45%, var(--ink) 100%);
}
.store-hero .container { position: relative; z-index: 1; }
.store-hero__bg .hero__glow--cyan { animation: glowDriftA 15s ease-in-out infinite; }
.store-hero__bg .hero__glow--yellow { animation: glowDriftB 18s ease-in-out infinite; }
@keyframes glowDriftA {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-32px, 26px); }
}
@keyframes glowDriftB {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(28px, -22px); }
}

/* product card + demo */
.product { transition: border-color 0.5s var(--ease-out); }
.product:hover { border-color: rgba(67, 198, 236, 0.35); }

.tint-embed {
  position: relative;
  animation: demoBreathe 3.6s ease-in-out infinite;
}
@keyframes demoBreathe {
  0%, 100% {
    box-shadow: 0 0 0 1px rgba(67, 198, 236, 0.12), 0 0 22px rgba(67, 198, 236, 0.05);
    border-color: var(--line);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(67, 198, 236, 0.45), 0 0 40px rgba(67, 198, 236, 0.16);
    border-color: rgba(67, 198, 236, 0.45);
  }
}

/* "live" pulse dot on the flagship eyebrow */
.product__info .section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.product__info .section__eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: livePulse 1.9s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(67, 198, 236, 0.55); }
  50% { box-shadow: 0 0 0 6px rgba(67, 198, 236, 0); }
}

/* staggered checklist */
.product__includes li {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.product__includes.in-view li { opacity: 1; transform: none; }
.product__includes.in-view li:nth-child(1) { transition-delay: 0.12s; }
.product__includes.in-view li:nth-child(2) { transition-delay: 0.22s; }
.product__includes.in-view li:nth-child(3) { transition-delay: 0.32s; }
.product__includes.in-view li:nth-child(4) { transition-delay: 0.42s; }
.product__includes.in-view li:nth-child(5) { transition-delay: 0.52s; }

/* buy button sheen */
[data-buy] { position: relative; overflow: hidden; }
[data-buy]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.4) 50%, transparent 58%);
  transform: translateX(-130%);
  animation: buySheen 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes buySheen {
  0%, 24% { transform: translateX(-130%); }
  48%, 100% { transform: translateX(130%); }
}

/* custom-build card */
.custom-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-out);
}
.custom-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(13, 13, 15, 0.13) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.5;
  animation: dotShift 22s linear infinite;
  pointer-events: none;
}
.custom-card > * { position: relative; z-index: 1; }
.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 54px rgba(250, 237, 37, 0.2);
}
@keyframes dotShift {
  to { background-position: 22px 22px; }
}

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in-view { opacity: 1; transform: none; }
/* .reveal's own transition shorthand (0.8s, meant for the one-time
   entrance fade) otherwise wins over .btn's fast spring transition at
   equal specificity — starving magnetic/hover response on any button
   that also happens to carry .reveal. Restore the button's own timing
   once the entrance has played. */
.btn.reveal.in-view {
  transition: transform 0.3s var(--ease-spring), background-color 0.25s,
              color 0.25s, border-color 0.25s, box-shadow 0.3s;
}

/* ---------- focus ---------- */
:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .quotes__grid { grid-template-columns: 1fr; }
  .quotes__grid .quote { max-width: 640px; }
}

/* nav switches to the hamburger menu well above the general tablet
   breakpoint below, since 6 links + the CTA button need ~1006px of
   clear room and start wrapping awkwardly otherwise (see iPad Pro
   landscape / narrow desktop windows). */
@media (max-width: 1200px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

@media (max-width: 860px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding-block: 24px 96px;
  }
  .hero__art { min-height: 320px; margin-top: 8px; }
  .hero__chip--2 { left: 4%; }
  .hero__chip--3 { right: 4%; }

  .contact__grid, .about__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .work__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .process__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .about__team { grid-template-columns: 1fr; }
  .member__photo { aspect-ratio: 4 / 4.4; }
  .hero__title { font-size: clamp(34px, 10.5vw, 48px); }
  .tile { width: 176px; height: 158px; padding: 16px; }
  .pricing__toggle { display: flex; width: 100%; }
  .pricing__tab { flex: 1; text-align: center; padding: 12px 10px; font-size: 13px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .hero .reveal-line, .hero__art { opacity: 1; transform: none; }
  .product__includes li, .product__title .word-in { opacity: 1; transform: none; }
  .marquee__track, .clients__track { animation: none; }
}
