/* ============================================================
   MONOGRAPH STUDIO — Premium UI/UX Stylesheet
   ============================================================ */

:root {
  --bg: #f4efe7;
  --surface: rgba(255, 255, 255, 0.74);
  --line: rgba(16, 26, 34, 0.1);
  --text: #14202a;
  --muted: #58656d;
  --muted-strong: #71808a;
  --dark: #0d1419;
  --accent: #c89b5d;
  --accent-soft: #ecd7b6;
  --accent-cool: #94aebb;
  --accent-rose: #d27aa0;
  --accent-violet: #8f81f7;
  --accent-mint: #7fc4bb;
  --accent-sun: #f0b16c;
  --shadow: 0 40px 120px rgba(10, 14, 18, 0.12);
  --shadow-soft: 0 18px 50px rgba(10, 14, 18, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --content-width: min(1240px, calc(100vw - 48px));
  --font-sans: "Instrument Sans", "Aptos", "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 18%, rgba(210, 122, 160, 0.12), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(143, 129, 247, 0.12), transparent 24%),
    radial-gradient(circle at 58% 80%, rgba(127, 196, 187, 0.12), transparent 26%),
    radial-gradient(circle at 18% 82%, rgba(200, 155, 93, 0.08), transparent 24%),
    linear-gradient(180deg, #f7f3ec 0%, #f4efe7 42%, #f0e7dd 100%);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 155, 93, 0.92), rgba(200, 155, 93, 0.4));
  box-shadow: 0 0 20px rgba(200, 155, 93, 0.35);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: exclusion;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.22s cubic-bezier(0.19, 1, 0.22, 1),
              opacity 0.3s ease;
  will-change: transform, left, top;
  opacity: 0;
}

.custom-cursor.is-active {
  opacity: 1;
}

.custom-cursor.is-hovering {
  transform: translate(-50%, -50%) scale(2.8);
  background: radial-gradient(circle, rgba(200, 155, 93, 0.5), rgba(200, 155, 93, 0.15));
}

/* ============================================================
   PAGE LOAD CURTAIN
   ============================================================ */
.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d1419, #1a2530);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-curtain.is-done {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

.curtain-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: curtainPulse 1.6s ease-in-out infinite alternate;
}

.curtain-monogram {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(200, 155, 93, 0.95), rgba(148, 174, 187, 0.8));
  color: #fdf8f1;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  box-shadow: 0 0 60px rgba(200, 155, 93, 0.35);
}

.curtain-text {
  color: rgba(248, 243, 236, 0.7);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

@keyframes curtainPulse {
  from { opacity: 0.7; transform: scale(0.97); }
  to   { opacity: 1;   transform: scale(1); }
}

/* ============================================================
   AURORA AMBIENT BLOBS
   ============================================================ */
.aurora-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  will-change: transform;
}

.aurora-blob-1 {
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 155, 93, 0.5), transparent 70%);
  animation: auroraFloat1 18s ease-in-out infinite alternate;
}

.aurora-blob-2 {
  bottom: 10%;
  left: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(148, 174, 187, 0.5), transparent 70%);
  animation: auroraFloat2 22s ease-in-out infinite alternate;
}

.aurora-blob-3 {
  top: 40%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 155, 93, 0.3), transparent 70%);
  animation: auroraFloat3 25s ease-in-out infinite alternate;
}

@keyframes auroraFloat1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-80px, 60px) scale(1.15); }
}

@keyframes auroraFloat2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(60px, -80px) scale(1.2); }
}

@keyframes auroraFloat3 {
  from { transform: translate(0, 0) scale(0.9); }
  to   { transform: translate(-40px, 40px) scale(1.1); }
}

/* ============================================================
   GRAIN OVERLAY
   ============================================================ */
.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  z-index: 1;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.8) 0.4px, transparent 0.4px),
    radial-gradient(rgba(13, 20, 25, 0.3) 0.3px, transparent 0.3px);
  background-position: 0 0, 8px 8px;
  background-size: 18px 18px;
  mix-blend-mode: soft-light;
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: 3px;
  pointer-events: none;
}

.scroll-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(148, 174, 187, 0.95), rgba(200, 155, 93, 0.98));
  box-shadow: 0 0 22px rgba(200, 155, 93, 0.45);
  transform-origin: left center;
}

/* ============================================================
   HEADER — Glassmorphism 2.0
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 0;
  transition:
    background-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled {
  background: rgba(244, 239, 231, 0.72);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  box-shadow: 
    0 1px 0 rgba(255, 255, 255, 0.5),
    0 20px 60px rgba(15, 23, 29, 0.08);
  border-bottom: 1px solid rgba(200, 155, 93, 0.12);
}

.header-inner,
.hero-grid,
.section,
.site-footer-inner,
.section-stats,
.cta-grid {
  width: var(--content-width);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brandmark */
.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brandmark-monogram {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(200, 155, 93, 0.95), rgba(148, 174, 187, 0.8));
  color: #fdf8f1;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.brandmark:hover .brandmark-monogram {
  transform: rotate(-6deg) scale(1.06);
}

.brandmark-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brandmark-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brandmark-text span:last-child {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Navigation */
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(200, 155, 93, 0), rgba(200, 155, 93, 1), rgba(200, 155, 93, 0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  font-weight: 600;
}

/* Header Contact Info — plain text links, not buttons */
.header-contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.header-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  transition: color 0.25s ease;
  cursor: pointer;
}

.header-contact-link:hover,
.header-contact-link:focus-visible {
  color: var(--accent);
}

.header-contact-link svg {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

.header-contact-link:hover svg {
  opacity: 1;
}

.header-contact-divider {
  color: var(--line);
  font-size: 0.8rem;
  user-select: none;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(16, 26, 34, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  cursor: pointer;
  gap: 5px;
  z-index: 50;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(200, 155, 93, 0.3);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.25s ease;
  transform-origin: center;
}

body.nav-open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.nav-open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: rgba(244, 239, 231, 0.88);
  backdrop-filter: blur(40px) saturate(1.5);
  -webkit-backdrop-filter: blur(40px) saturate(1.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s 0.5s;
}

body.nav-open .mobile-nav {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s 0s;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 600;
  color: var(--text);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s ease;
}

body.nav-open .mobile-nav a {
  opacity: 1;
  transform: translateY(0);
}

body.nav-open .mobile-nav a:nth-child(1) { transition-delay: 0.1s; }
body.nav-open .mobile-nav a:nth-child(2) { transition-delay: 0.15s; }
body.nav-open .mobile-nav a:nth-child(3) { transition-delay: 0.2s; }
body.nav-open .mobile-nav a:nth-child(4) { transition-delay: 0.25s; }
body.nav-open .mobile-nav a:nth-child(5) { transition-delay: 0.3s; }
body.nav-open .mobile-nav a:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav a:hover {
  color: var(--accent);
}

/* ============================================================
   BUTTONS — Magnetic style
   ============================================================ */
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease;
  overflow: hidden;
  cursor: pointer;
  will-change: transform;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.3) 50%, transparent 80%);
  transform: translateX(-140%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(140%);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  color: #fbf7f0;
  background: linear-gradient(135deg, #b98949 0%, #d27aa0 52%, #8f81f7 100%);
  box-shadow: 0 22px 40px rgba(143, 129, 247, 0.22);
}

.button-primary:hover {
  box-shadow: 0 28px 52px rgba(143, 129, 247, 0.32);
}

.button-ghost {
  color: var(--text);
  border-color: rgba(16, 26, 34, 0.12);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px);
}

.button-ghost:hover {
  border-color: rgba(200, 155, 93, 0.3);
  background: rgba(255, 255, 255, 0.85);
}

.header-button {
  white-space: nowrap;
}

/* ============================================================
   EYEBROW / KICKER shared styles
   ============================================================ */
.eyebrow,
.comparison-label,
.service-kicker,
.pricing-tier,
.pricing-pill {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-block;
  color: rgba(200, 155, 93, 0.95);
  font-size: 0.78rem;
  font-weight: 700;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  overflow: clip;
  padding: 42px 0 88px;
  min-height: calc(100svh - 40px);
  background:
    radial-gradient(circle at 12% 18%, rgba(210, 122, 160, 0.22), transparent 26%),
    radial-gradient(circle at top right, rgba(148, 174, 187, 0.24), transparent 30%),
    radial-gradient(circle at 78% 20%, rgba(143, 129, 247, 0.2), transparent 26%),
    radial-gradient(circle at 56% 82%, rgba(127, 196, 187, 0.12), transparent 24%),
    linear-gradient(140deg, rgba(13, 20, 25, 0.98) 0%, rgba(13, 20, 25, 0.94) 52%, rgba(29, 36, 42, 0.92) 100%);
  color: #f9f5ee;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--hero-spotlight-x, 50%) var(--hero-spotlight-y, 30%), rgba(240, 177, 108, 0.16), transparent 18%),
    radial-gradient(circle at calc(var(--hero-spotlight-x, 50%) + 10%) calc(var(--hero-spotlight-y, 30%) + 6%), rgba(143, 129, 247, 0.12), transparent 20%);
  opacity: 0.9;
  pointer-events: none;
  transition: background-position 0.18s ease;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
}

.hero-glow-a {
  top: 6%;
  right: 8%;
  width: 360px;
  height: 360px;
  background: rgba(200, 155, 93, 0.24);
  animation: heroGlowPulse 8s ease-in-out infinite alternate;
}

.hero-glow-b {
  bottom: 8%;
  left: 40%;
  width: 300px;
  height: 300px;
  background: rgba(148, 174, 187, 0.18);
  animation: heroGlowPulse 10s ease-in-out infinite alternate-reverse;
}

.hero-mesh {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  mix-blend-mode: screen;
  opacity: 0.28;
}

.hero-mesh-a {
  top: 12%;
  left: 46%;
  width: 300px;
  height: 300px;
  background:
    conic-gradient(from 140deg, rgba(210, 122, 160, 0.58), rgba(143, 129, 247, 0.08), rgba(240, 177, 108, 0.48), rgba(127, 196, 187, 0.12), rgba(210, 122, 160, 0.58));
  animation: heroMeshDrift 15s ease-in-out infinite alternate;
}

.hero-mesh-b {
  right: 10%;
  bottom: 18%;
  width: 220px;
  height: 220px;
  background:
    conic-gradient(from 20deg, rgba(127, 196, 187, 0.46), rgba(143, 129, 247, 0.1), rgba(240, 177, 108, 0.38), rgba(127, 196, 187, 0.46));
  animation: heroMeshDrift 18s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlowPulse {
  from { transform: scale(1); opacity: 0.7; }
  to   { transform: scale(1.2); opacity: 1; }
}

@keyframes heroMeshDrift {
  from { transform: translate3d(0, 0, 0) rotate(0deg) scale(0.98); }
  to   { transform: translate3d(26px, -20px, 0) rotate(20deg) scale(1.08); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 34px;
  min-height: calc(100svh - 120px);
}

.hero-copy {
  max-width: 600px;
}

.hero-copy h1 {
  margin: 16px 0 20px;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 6.7rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

/* Hero text split animation */
.hero-word {
  display: inline-block;
  overflow: hidden;
}

.hero-word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-word-inner.is-revealed {
  transform: translateY(0);
}

.hero-lead {
  max-width: 560px;
  margin: 0;
  color: rgba(245, 240, 233, 0.76);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-note {
  max-width: 480px;
  margin-top: 18px;
  color: rgba(245, 240, 233, 0.56);
  font-size: 0.95rem;
}

.hero-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.hero-signal-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 124px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(18px);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.hero-signal-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  opacity: 0.45;
  filter: blur(12px);
}

.hero-signal-card-warm::before {
  background: radial-gradient(circle, rgba(240, 177, 108, 0.76), transparent 70%);
}

.hero-signal-card-violet::before {
  background: radial-gradient(circle, rgba(143, 129, 247, 0.72), transparent 70%);
}

.hero-signal-card-cool::before {
  background: radial-gradient(circle, rgba(127, 196, 187, 0.72), transparent 70%);
}

.hero-signal-value {
  position: relative;
  z-index: 1;
  color: #fff6eb;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-signal-label {
  position: relative;
  z-index: 1;
  color: rgba(248, 243, 236, 0.72);
  font-size: 0.84rem;
  line-height: 1.45;
}

.hero-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.contact-strip-label {
  color: rgba(248, 243, 236, 0.56);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  color: rgba(250, 245, 239, 0.9);
  font-size: 0.92rem;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}

.contact-chip:hover,
.contact-chip:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(236, 215, 182, 0.42);
  background: rgba(255, 255, 255, 0.14);
  color: #fffdf8;
  box-shadow: 0 12px 30px rgba(200, 155, 93, 0.15);
}

/* Hero media stage */
.hero-stage {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  min-height: 600px;
}

/* Hero video — dominant element */
.hero-video-wrap {
  flex: 1 1 0;
  min-height: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 40px 120px rgba(10, 14, 18, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 120px rgba(143, 129, 247, 0.12);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Image row below video */
.hero-images-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  flex-shrink: 0;
}

.hero-thumb {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
  aspect-ratio: 1;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s ease;
  cursor: pointer;
}

.hero-thumb:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-thumb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: rgba(255,255,255,0.88);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Expanded hero media collage */
.hero-media {
  position: relative;
  min-width: 0;
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.88fr);
  grid-template-rows: minmax(0, 1.04fr) minmax(0, 0.92fr) minmax(150px, 0.66fr);
  gap: 16px;
  min-height: 690px;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: -20px -26px -20px 34px;
  border-radius: 42px;
  background:
    radial-gradient(circle at top right, rgba(143, 129, 247, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(210, 122, 160, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  opacity: 0.9;
  z-index: -2;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 88% 18%, rgba(240, 177, 108, 0.14), transparent 18%),
    radial-gradient(circle at 20% 82%, rgba(127, 196, 187, 0.14), transparent 18%);
  filter: blur(20px);
  opacity: 0.8;
  z-index: -1;
}

.hero-media-card,
.hero-still {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(13, 20, 25, 0.34);
  box-shadow:
    0 28px 80px rgba(10, 14, 18, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  isolation: isolate;
}

.hero-media-card::after,
.hero-still::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, rgba(13, 20, 25, 0.16) 100%);
  pointer-events: none;
}

.hero-media-card-main {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.hero-media-card-watch {
  grid-column: 2;
  grid-row: 1;
}

.hero-media-card-ambient {
  grid-column: 2;
  grid-row: 2;
}

.hero-still-clinic {
  grid-column: 1;
  grid-row: 3;
}

.hero-still-launch {
  grid-column: 2;
  grid-row: 3;
}

.hero-video-wrap {
  height: 100%;
  min-height: 0;
  border-radius: inherit;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  background: #10161b;
}

.hero-video-wrap-feature,
.hero-video-wrap-secondary {
  min-height: 100%;
}

.hero-media-meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(13, 20, 25, 0.1), rgba(13, 20, 25, 0.76));
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  z-index: 1;
}

.hero-media-meta-compact {
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 14px 16px;
  border-radius: 18px;
}

.hero-media-kicker {
  color: rgba(250, 243, 233, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-media-title {
  color: #fff9f0;
  font-size: 0.95rem;
  line-height: 1.38;
  max-width: 20ch;
}

.hero-media-card-main .hero-media-title {
  font-size: 1.02rem;
  max-width: 28ch;
}

.hero-still {
  min-height: 0;
}

.hero-still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-still-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px 16px 14px;
  background: linear-gradient(to top, rgba(13, 20, 25, 0.88), rgba(13, 20, 25, 0));
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 1;
}

.hero-stage-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  color: #fff7ee;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.hero-stage-chip-top {
  top: -12px;
  left: 22px;
}

.hero-stage-chip-bottom {
  right: 18px;
  bottom: -12px;
  background: linear-gradient(135deg, rgba(210, 122, 160, 0.24), rgba(143, 129, 247, 0.2));
  color: #fffaf6;
}

.cta-visual,
.service-card,
.pricing-card,
.process-step,
.comparison-panel,
.stat-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.service-image::after,
.cta-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(13, 20, 25, 0.15) 100%);
  pointer-events: none;
}

/* ============================================================
   TICKER BAND
   ============================================================ */
.ticker-band {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin-top: -26px;
  padding: 19px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(10, 15, 19, 0.98), rgba(18, 26, 31, 0.94), rgba(10, 15, 19, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 44px rgba(10, 14, 18, 0.18);
  backdrop-filter: blur(18px);
}

.ticker-band::before,
.ticker-band::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(32px, 8vw, 160px);
  z-index: 2;
  pointer-events: none;
}

.ticker-band::before {
  left: 0;
  background: linear-gradient(90deg, rgba(10, 15, 19, 1), rgba(10, 15, 19, 0));
}

.ticker-band::after {
  right: 0;
  background: linear-gradient(270deg, rgba(10, 15, 19, 1), rgba(10, 15, 19, 0));
}

.ticker-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding-inline: 28px;
  animation: marquee 24s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(248, 243, 236, 0.74);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(200, 155, 93, 0.95);
}

/* ============================================================
   SHOWCASE REEL — Cinematic Slideshow
   ============================================================ */
.section-reel {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.reel-container {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  max-height: 700px;
  overflow: hidden;
  background: #0d1419;
}

.reel-slideshow {
  position: absolute;
  inset: 0;
}

.reel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reel-slide.is-active {
  opacity: 1;
  transform: scale(1);
  animation: kenBurns 8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.reel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: linear-gradient(180deg, rgba(13, 20, 25, 0.35) 0%, rgba(13, 20, 25, 0.65) 100%);
  z-index: 2;
}

.reel-overlay-text {
  text-align: center;
  color: #f9f5ee;
}

.reel-overlay-text .eyebrow {
  display: block;
  margin-bottom: 12px;
}

.reel-overlay-text h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #f9f5ee;
}

/* Slide navigation dots */
.reel-slide-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.reel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.reel-dot.is-active {
  background: rgba(200, 155, 93, 0.9);
  border-color: rgba(200, 155, 93, 0.9);
  transform: scale(1.3);
}

.reel-dot:hover {
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

/* Reel bottom gradient */
.reel-container::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
  z-index: 3;
}

/* ============================================================
   SECTIONS — Shared
   ============================================================ */
.section {
  position: relative;
  padding: 120px 0;
  z-index: 2;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.cta-copy h2 {
  margin: 14px 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4.25rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.section-heading p,
.service-body p,
.pricing-copy,
.process-step p {
  color: var(--muted);
}

.comparison-grid,
.services-grid,
.pricing-grid {
  display: grid;
  gap: 24px;
  margin-top: 46px;
}

/* ============================================================
   BEFORE/AFTER SLIDER (replaces old comparison)
   ============================================================ */
.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-panel,
.service-card,
.pricing-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.7));
}

.pricing-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -34% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(200, 155, 93, 0.18), transparent 68%);
  pointer-events: none;
}

.comparison-panel {
  padding: 28px;
}

.comparison-label {
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 700;
}

.comparison-panel-good .comparison-label {
  color: rgba(184, 128, 57, 0.95);
}

.device-frame {
  margin-top: 18px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(11, 17, 22, 0.88);
  color: #f6f1e9;
}

.device-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(246, 241, 233, 0.62);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.device-screen {
  position: relative;
  height: 400px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 20px;
}

.comparison-panel-bad .device-screen img {
  filter: grayscale(0.32) saturate(0.7) contrast(0.92);
}

.device-overlay {
  position: absolute;
  inset: auto 16px 16px 16px;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(6, 9, 12, 0.56);
  backdrop-filter: blur(14px);
  color: rgba(250, 245, 239, 0.88);
  font-size: 1.2rem;
  font-family: var(--font-display);
}

.device-overlay-good {
  max-width: 76%;
}

.device-overlay-good strong {
  font-size: 1.55rem;
  line-height: 1;
}

.device-overlay-good span {
  color: rgba(250, 245, 239, 0.74);
  font-family: var(--font-sans);
  font-size: 0.92rem;
}

.device-points {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(246, 241, 233, 0.74);
  font-size: 0.95rem;
}

.device-points li,
.pricing-features li {
  position: relative;
  padding-left: 18px;
}

.device-points li::before,
.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(200, 155, 93, 0.92), rgba(148, 174, 187, 0.92));
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.service-body,
.pricing-card,
.process-step,
.cta-copy {
  padding: 24px;
}

.service-body h3,
.process-step h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

/* ============================================================
   PROCESS
   ============================================================ */
.section-process {
  position: relative;
  border-top: 1px solid rgba(16, 26, 34, 0.08);
  border-bottom: 1px solid rgba(16, 26, 34, 0.08);
  background:
    radial-gradient(circle at top right, rgba(148, 174, 187, 0.08), transparent 24%),
    rgba(255, 255, 255, 0.4);
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.process-track::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 46px;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 155, 93, 0), rgba(200, 155, 93, 0.9), rgba(200, 155, 93, 0));
}

.process-step {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(200, 155, 93, 0.18), rgba(148, 174, 187, 0.16));
  color: rgba(184, 128, 57, 0.98);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: transform 0.35s ease;
}

.process-step:hover .process-number {
  transform: rotate(-8deg) scale(1.08);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.section-testimonials {
  padding-top: 20px;
  padding-bottom: 80px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 46px;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--accent);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 1px 3px rgba(200, 155, 93, 0.3));
}

.testimonial-quote {
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.45;
  color: var(--text);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.testimonial-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(200, 155, 93, 0.18), rgba(148, 174, 187, 0.16));
  color: rgba(184, 128, 57, 0.98);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-info strong {
  font-size: 0.95rem;
  color: var(--text);
}

.testimonial-info span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ============================================================
   CASE STUDY
   ============================================================ */
.section-casestudy {
  position: relative;
  border-top: 1px solid rgba(16, 26, 34, 0.08);
  background:
    radial-gradient(circle at 80% 20%, rgba(200, 155, 93, 0.06), transparent 22%),
    rgba(255, 255, 255, 0.3);
}

.casestudy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.casestudy-before,
.casestudy-after {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(16, 26, 34, 0.06);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.72);
}

.casestudy-label {
  padding: 16px 24px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.casestudy-label-before {
  color: var(--muted-strong);
}

.casestudy-label-after {
  color: rgba(184, 128, 57, 0.95);
}

.casestudy-visual {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.casestudy-visual img {
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

.casestudy-before:hover .casestudy-visual img,
.casestudy-after:hover .casestudy-visual img {
  transform: scale(1.04);
}

.casestudy-before .casestudy-visual img {
  filter: grayscale(0.28) saturate(0.72) contrast(0.92);
}

.casestudy-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 20px 24px 24px;
  list-style: none;
  font-size: 0.95rem;
}

.casestudy-points-before {
  color: var(--muted);
}

.casestudy-points-after {
  color: var(--text);
}

.casestudy-points li {
  position: relative;
  padding-left: 18px;
}

.casestudy-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.casestudy-points-before li::before {
  background: rgba(113, 128, 138, 0.4);
}

.casestudy-points-after li::before {
  background: linear-gradient(135deg, rgba(200, 155, 93, 0.92), rgba(148, 174, 187, 0.92));
}

/* Deliverables Panel */
.casestudy-deliverables {
  margin-top: 24px;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(13, 20, 25, 0.94), rgba(16, 22, 28, 0.9));
  color: #f8f3ec;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.deliverables-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.deliverables-header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.deliverables-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.deliverable-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s ease;
}

.deliverable-item:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 155, 93, 0.25);
}

.deliverable-count {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #f7f2eb;
  line-height: 1;
}

.deliverable-label {
  font-size: 0.92rem;
  color: rgba(248, 243, 236, 0.76);
  line-height: 1.35;
}

.deliverable-label small {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: rgba(248, 243, 236, 0.48);
}

/* Founder's Note */
.founder-note {
  margin-top: 24px;
}

.founder-note-inner {
  display: flex;
  gap: 24px;
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(12px);
}

.founder-monogram {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(200, 155, 93, 0.95), rgba(148, 174, 187, 0.8));
  color: #fdf8f1;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(200, 155, 93, 0.2);
}

.founder-note-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.founder-note-label {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.founder-note-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.founder-sig {
  font-weight: 600;
  color: var(--text) !important;
  font-size: 0.95rem !important;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 32px;
  margin-bottom: 48px;
  padding: 22px 28px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.52)),
    radial-gradient(circle at 15% 20%, rgba(210, 122, 160, 0.12), transparent 28%),
    radial-gradient(circle at 85% 30%, rgba(143, 129, 247, 0.12), transparent 26%);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(10, 14, 18, 0.08);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  transition: transform 0.3s ease, color 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
  color: #7b285a;
}

.trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   PORTFOLIO GALLERY
   ============================================================ */
.section-portfolio {
  padding-top: 20px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  border: 1px solid rgba(16, 26, 34, 0.06);
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-item:nth-child(2) {
  aspect-ratio: 3 / 4;
  grid-row: span 2;
}

.portfolio-item:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 40px 100px rgba(10, 14, 18, 0.2);
}

.portfolio-item img {
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 20, 25, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-item-overlay {
  opacity: 1;
}

.portfolio-item-overlay span {
  color: rgba(248, 243, 236, 0.6);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portfolio-item-overlay strong {
  display: block;
  margin-top: 6px;
  color: #f9f5ee;
  font-size: 1.1rem;
  line-height: 1.25;
}

.portfolio-expand-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(13, 20, 25, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f9f5ee;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-item:hover .portfolio-expand-icon {
  opacity: 1;
  transform: scale(1);
}

.portfolio-expand-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ============================================================
   LIGHTBOX MODAL
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(13, 20, 25, 0.88);
  backdrop-filter: blur(30px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s linear 0.5s;
  cursor: pointer;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s linear 0s;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 20px;
  object-fit: contain;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.4);
  transform: scale(0.92);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
}

.lightbox.is-open .lightbox-image {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  color: #f9f5ee;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.lightbox-caption {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(248, 243, 236, 0.8);
  font-size: 0.92rem;
}

.lightbox-caption strong {
  display: block;
  color: #f9f5ee;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

/* ============================================================
   PRICING
   ============================================================ */
.section-pricing {
  padding-top: 130px;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card-featured {
  transform: translateY(-10px);
  border-color: rgba(200, 155, 93, 0.3);
  background: linear-gradient(180deg, rgba(16, 22, 28, 0.95), rgba(16, 22, 28, 0.88));
  color: #f8f3ec;
}

.pricing-card-featured .pricing-tier,
.pricing-card-featured .pricing-price,
.pricing-card-featured .pricing-copy,
.pricing-card-featured .pricing-features {
  color: #f8f3ec;
}

.pricing-pill {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(200, 155, 93, 0.14);
  color: rgba(236, 215, 182, 0.96);
  font-size: 0.72rem;
  font-weight: 700;
  animation: pillGlow 3s ease-in-out infinite alternate;
}

.pricing-pill-premium {
  background: linear-gradient(135deg, rgba(210, 122, 160, 0.18), rgba(143, 129, 247, 0.16));
  color: #6d2f59;
}

@keyframes pillGlow {
  from { box-shadow: 0 0 0 rgba(200, 155, 93, 0); }
  to   { box-shadow: 0 0 20px rgba(200, 155, 93, 0.2); }
}

.pricing-tier {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted-strong);
}

.pricing-price {
  margin: 12px 0;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.pricing-price span {
  font-size: 1rem;
  opacity: 0.72;
}

.pricing-copy {
  margin: 0;
}

.pricing-features {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-button {
  width: 100%;
  margin-top: 28px;
}

.pricing-card-premium {
  border-color: rgba(143, 129, 247, 0.24);
  background:
    radial-gradient(circle at top right, rgba(143, 129, 247, 0.14), transparent 30%),
    radial-gradient(circle at bottom left, rgba(210, 122, 160, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(251, 246, 252, 0.78));
  box-shadow:
    0 32px 80px rgba(124, 99, 206, 0.16),
    0 0 0 1px rgba(143, 129, 247, 0.08);
}

.pricing-card-premium .pricing-tier {
  color: #704e96;
}

.pricing-card-premium .pricing-price {
  color: #3e244f;
}

.pricing-card-premium .pricing-button {
  border-color: rgba(143, 129, 247, 0.24);
  background: rgba(255, 255, 255, 0.82);
}

.pricing-card-premium:hover,
.pricing-card-premium:focus-within {
  border-color: rgba(143, 129, 247, 0.4);
  box-shadow:
    0 40px 100px rgba(124, 99, 206, 0.22),
    0 0 0 1px rgba(210, 122, 160, 0.14);
}

/* ============================================================
   CTA ACTION PATHS
   ============================================================ */
.cta-action-paths {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.cta-path {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #f8f3ec;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.cta-path:hover,
.cta-path:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(236, 215, 182, 0.35);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(200, 155, 93, 0.12);
}

.cta-path-primary {
  border-color: rgba(200, 155, 93, 0.4);
  background: linear-gradient(135deg, rgba(185, 137, 73, 0.18), rgba(200, 155, 93, 0.08));
}

.cta-path-primary:hover {
  border-color: rgba(200, 155, 93, 0.6);
  background: linear-gradient(135deg, rgba(185, 137, 73, 0.28), rgba(200, 155, 93, 0.14));
  box-shadow: 0 20px 50px rgba(200, 155, 93, 0.2);
}

.cta-path-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.cta-path-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cta-path-text strong {
  font-size: 1.05rem;
}

.cta-path-text span {
  font-size: 0.84rem;
  color: rgba(248, 243, 236, 0.56);
}

.cta-availability {
  margin: 20px 0 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(200, 155, 93, 0.1);
  border: 1px solid rgba(200, 155, 93, 0.2);
  color: rgba(236, 215, 182, 0.92);
  font-size: 0.84rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.04em;
  animation: pillGlow 3s ease-in-out infinite alternate;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.section-cta {
  padding-top: 40px;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.cta-copy {
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(200, 155, 93, 0.14), transparent 30%),
    linear-gradient(150deg, rgba(13, 20, 25, 0.98), rgba(20, 28, 34, 0.94));
  color: #f8f3ec;
  box-shadow: var(--shadow);
}

.cta-copy h2 {
  color: #f8f3ec;
}

.cta-copy p {
  max-width: 520px;
  color: rgba(248, 243, 236, 0.74);
}

.cta-contact-panel {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.cta-contact-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.cta-contact-label,
.footer-kicker {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cta-contact-label {
  color: rgba(236, 215, 182, 0.95);
  font-size: 0.74rem;
  font-weight: 700;
}

.cta-contact-meta {
  color: rgba(248, 243, 236, 0.56);
  font-size: 0.88rem;
}

.cta-contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-line {
  display: grid;
  gap: 6px;
  min-height: 108px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(13, 20, 25, 0.28);
  color: #f8f3ec;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.contact-line span {
  color: rgba(248, 243, 236, 0.54);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-line strong {
  font-size: 1.08rem;
  line-height: 1.25;
}

.contact-email-text {
  word-break: break-all;
  overflow-wrap: anywhere;
  font-size: 0.95rem;
}

.contact-line:hover,
.contact-line:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(236, 215, 182, 0.4);
  background: rgba(13, 20, 25, 0.38);
  box-shadow: 0 16px 40px rgba(200, 155, 93, 0.1);
}

.cta-visual {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 34px;
}

/* ============================================================
   FLOATING CTA BAR
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 12px 20px;
  background: rgba(13, 20, 25, 0.88);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  border-top: 1px solid rgba(200, 155, 93, 0.15);
  box-shadow: 0 -12px 40px rgba(10, 14, 18, 0.2);
  transform: translateY(100%);
  opacity: 0;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.floating-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.floating-cta.is-dismissed {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.floating-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.floating-cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-cta-text strong {
  color: #f8f3ec;
  font-size: 0.95rem;
}

.floating-cta-text span {
  color: rgba(248, 243, 236, 0.56);
  font-size: 0.82rem;
}

.floating-cta-btn {
  min-height: 42px;
  padding: 0 22px;
  font-size: 0.88rem;
  white-space: nowrap;
  width: auto;
}

.floating-cta-close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(248, 243, 236, 0.6);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease;
}

.floating-cta-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #f8f3ec;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  z-index: 2;
  padding: 26px 0 50px;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(220px, 0.8fr);
  align-items: start;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(16, 26, 34, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand p,
.footer-note {
  margin: 8px 0 0;
}

.footer-kicker {
  display: inline-block;
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 700;
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact a {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: rgba(184, 128, 57, 0.98);
  transform: translateX(2px);
}

.footer-note {
  max-width: 28ch;
}

/* ============================================================
   SHINE CARD — Enhanced
   ============================================================ */
.shine-card {
  --pointer-x: 50%;
  --pointer-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.shine-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.5), transparent 32%),
    linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.18), transparent 80%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

.shine-card:hover,
.shine-card:focus-within {
  border-color: rgba(200, 155, 93, 0.25);
  box-shadow: 
    0 34px 90px rgba(10, 14, 18, 0.16),
    0 0 0 1px rgba(200, 155, 93, 0.08);
}

.shine-card:hover::before,
.shine-card:focus-within::before {
  opacity: 1;
}

/* Image hover zoom */
.service-card:hover .service-image img,
.comparison-panel:hover .device-screen img,
.cta-visual:hover img {
  transform: scale(1.04);
}

.service-image img,
.device-screen img,
.cta-visual img {
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ============================================================
   FOCUS STATES — Per UI/UX Pro Max Checklist
   ============================================================ */
*:focus-visible {
  outline: 3px solid rgba(200, 155, 93, 0.65);
  outline-offset: 3px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(200, 155, 93, 0.65);
  outline-offset: 3px;
}

/* ============================================================
   REVEAL ANIMATIONS — Enhanced Immersive
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}

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

/* Slide-in from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale-in */
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal,
  .reveal-left,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .custom-cursor {
    display: none !important;
  }
}

/* ============================================================
   RESPONSIVE — 1180px
   ============================================================ */
@media (max-width: 1180px) {
  .hero-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 600px;
  }

  .hero-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(340px, 1.14fr) repeat(2, minmax(180px, 0.72fr));
    min-height: auto;
  }

  .hero-media-card-main {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 400px;
  }

  .hero-media-card-watch {
    grid-column: 1;
    grid-row: 2;
    min-height: 230px;
  }

  .hero-media-card-ambient {
    grid-column: 2;
    grid-row: 2;
    min-height: 230px;
  }

  .hero-still-clinic {
    grid-column: 1;
    grid-row: 3;
    min-height: 190px;
  }

  .hero-still-launch {
    grid-column: 2;
    grid-row: 3;
    min-height: 190px;
  }

  .hero-stage-chip-top {
    top: 12px;
    left: 12px;
  }

  .hero-stage-chip-bottom {
    right: 12px;
    bottom: 12px;
  }

  .hero-shot-main {
    inset: 28px 14% 96px 0;
  }

  .services-grid,
  .pricing-grid,
  .process-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: 1 / -1;
  }

  .deliverables-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .process-track::before {
    display: none;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-item:nth-child(2) {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
}

/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */
@media (max-width: 900px) {
  .site-nav,
  .header-contact-info {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-grid {
    min-height: auto;
    gap: 34px;
  }

  .hero-stage {
    min-height: 520px;
  }

  .hero-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(280px, 1fr) repeat(2, minmax(160px, auto));
    gap: 12px;
    min-height: auto;
  }

  .hero-media-card,
  .hero-still {
    border-radius: 24px;
  }

  .hero-media-card-main {
    min-height: 320px;
  }

  .hero-media-card-watch,
  .hero-media-card-ambient {
    min-height: 200px;
  }

  .hero-still-clinic,
  .hero-still-launch {
    min-height: 160px;
  }

  .hero-media-meta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px 16px;
  }

  .hero-media-title {
    font-size: 0.88rem;
  }

  .hero-stage-chip {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    padding: 8px 12px;
  }

  .hero-signal-grid {
    grid-template-columns: 1fr;
  }

  .hero-shot-main {
    inset: 18px 12% 76px 0;
  }

  .hero-shot-portrait {
    width: 40%;
    height: 58%;
  }

  .hero-shot-edit {
    width: 52%;
    height: 30%;
    right: 4%;
  }

  .section {
    padding: 92px 0;
  }

  .stats-grid,
  .services-grid,
  .pricing-grid,
  .process-track {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: auto;
  }

  .casestudy-grid {
    grid-template-columns: 1fr;
  }

  .deliverables-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founder-note-inner {
    flex-direction: column;
  }

  .trust-strip {
    border-radius: var(--radius-lg);
    gap: 8px 24px;
  }

  .floating-cta-text {
    display: none;
  }

  .pricing-card-featured {
    transform: none;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .cta-contact-links {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE — 640px
   ============================================================ */
@media (max-width: 640px) {
  .header-inner,
  .hero-grid,
  .section,
  .site-footer-inner,
  .section-stats,
  .cta-grid {
    width: min(calc(100vw - 28px), 1240px);
  }

  .brandmark-text span:last-child {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 16vw, 4.4rem);
  }

  .hero-stage {
    min-height: 420px;
  }

  .hero-stage {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
  }

  .hero-media-card-main,
  .hero-media-card-watch,
  .hero-media-card-ambient,
  .hero-still-clinic,
  .hero-still-launch {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-media-card-main {
    min-height: 320px;
  }

  .hero-media-card-watch,
  .hero-media-card-ambient {
    min-height: 220px;
  }

  .hero-still-clinic,
  .hero-still-launch {
    min-height: 180px;
  }

  .hero-stage-chip {
    display: none;
  }

  .hero-shot-main {
    inset: 8px 8% 66px 0;
    border-radius: 24px;
  }

  .hero-shot-portrait {
    width: 42%;
    height: 56%;
    border-radius: 22px;
  }

  .hero-shot-edit {
    width: 54%;
    height: 28%;
    border-radius: 20px;
  }

  .hero-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .device-screen {
    height: 320px;
  }

  .comparison-panel,
  .pricing-card,
  .process-step,
  .cta-copy {
    padding: 22px;
  }

  .service-body {
    padding: 22px;
  }

  .service-image {
    height: 220px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-signal-card {
    min-height: 0;
  }

  .hero-contact-strip {
    align-items: stretch;
  }

  .contact-chip {
    width: 100%;
    justify-content: center;
  }

  .deliverables-list {
    grid-template-columns: 1fr;
  }

  .casestudy-visual {
    height: 240px;
  }

  .ticker-track {
    padding-inline: 18px;
  }

  .lightbox {
    padding: 20px;
  }

  .reel-play-btn {
    width: 56px;
    height: 56px;
  }
}

/* Hide cursor on touch devices */
@media (hover: none) {
  .custom-cursor {
    display: none !important;
  }
}
