/* ============ Tokens ============ */
:root {
  /* Brand combo 09 — Vulcanico x Noturno: dark navy + orange pop */
  --bg: #001621;
  --bg-2: #04222e;
  --bg-3: #082c39;
  --fg: #eef4f6;
  --fg-dim: #8fa4ac;
  --fg-faint: #5c7079;
  --line: rgba(238, 244, 246, 0.12);
  --line-strong: rgba(238, 244, 246, 0.22);

  --accent: #ff4103;
  --accent-2: #ff6a2c;
  --accent-ink: #001621;
  --accent-soft: rgba(255, 65, 3, 0.14);
  --accent-line: rgba(255, 65, 3, 0.45);

  --gold-grad: linear-gradient(100deg, #b98a44 0%, #ecd9a6 45%, #c79b52 100%);

  --maxw: 1280px;
  --pad: clamp(1.25rem, 4vw, 4rem);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-sig: "Pinyon Script", cursive;

  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

/* ============ Reset / base ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
  display: inline-block;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
em { font-style: italic; color: var(--accent); }

/* ============ Highlight marker utility ============ */
.hl {
  position: relative;
  display: inline-block;
  padding: 0 0.06em;
}
.hl-text { position: relative; z-index: 2; transition: color 0.45s var(--ease) 0.05s; }
.hl::before {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  top: 6%;
  bottom: 2%;
  z-index: 1;
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  transform: scaleX(0) rotate(-1deg);
  transform-origin: left center;
  transition: transform 0.55s var(--ease);
  border-radius: 2px;
}
.hl.hl-in::before { transform: scaleX(1) rotate(-1deg); }
.hl.hl-in .hl-text { color: var(--accent-ink); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95rem 1.6rem; border-radius: 2px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.01em; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary {
  background: var(--accent); color: var(--accent-ink);
  will-change: transform;
}
.btn-primary:hover {
  background: var(--accent-2);
  box-shadow: 0 10px 30px rgba(255, 65, 3, 0.3);
}
.btn-ghost { border-color: var(--line-strong); color: var(--fg); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ============ Nav ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem var(--pad);
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(0, 22, 33, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}

/* Signature lockup from Jay's logo mockups */
.wordmark { display: inline-flex; flex-direction: column; align-items: flex-start; }
.wordmark-sig {
  font-family: var(--font-sig);
  font-size: 1.9rem;
  line-height: 0.9;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: opacity 0.25s ease;
}
.wordmark-type {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0.1rem 0 0 0.2rem;
  padding-bottom: 0.25rem;
  position: relative;
}
.wordmark-type::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold-grad);
}
.wordmark:hover .wordmark-sig { opacity: 0.75; }

.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a:not(.nav-cta) {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--fg-dim);
  padding-bottom: 0.2rem;
  transition: color 0.2s ease;
}
.nav-links a:not(.nav-cta) span:last-child { position: relative; display: inline-block; }
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; width: 100%; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--fg); }
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }

/* gradient-menu port: icon glow on hover */
.nav-icon {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--fg-faint);
  transition: color 0.2s ease, filter 0.3s ease;
}
.nav-links a:not(.nav-cta):hover .nav-icon,
.nav-links a:not(.nav-cta):focus-visible .nav-icon {
  color: var(--accent-2);
  filter: drop-shadow(0 0 6px var(--accent-line)) drop-shadow(0 0 14px rgba(255, 106, 44, 0.35));
}

.nav-cta {
  border: 1px solid var(--line-strong); padding: 0.5rem 1rem; border-radius: 2px;
  color: var(--fg) !important; transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.nav-cta:hover { border-color: var(--accent); color: var(--accent-ink) !important; background: var(--accent); }

.nav-contact-chip {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--fg-dim);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.4rem 0.8rem 0.4rem 0.65rem;
  transition: color 0.2s ease, border-color 0.25s ease, filter 0.3s ease;
}
.nav-contact-chip .nav-icon {
  width: 14px;
  height: 14px;
  color: var(--fg-dim);
  transition: color 0.2s ease;
}
.nav-contact-chip:hover,
.nav-contact-chip:focus-visible {
  color: var(--fg);
  border-color: var(--accent);
}
.nav-contact-chip:hover .nav-icon,
.nav-contact-chip:focus-visible .nav-icon {
  color: var(--accent-2);
  filter: drop-shadow(0 0 6px var(--accent-line));
}
@media (min-width: 901px) {
  .nav-contact-chip { display: inline-flex; }
}

.nav-ig { display: none; font-size: 0.8rem; letter-spacing: 0.1em; color: var(--fg-dim); transition: color 0.2s ease; }
.nav-ig:hover { color: var(--accent); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--fg); transition: transform 0.3s ease, background 0.3s ease; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); background: var(--accent); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); background: var(--accent); }

/* ============ Mobile sticky CTA bar ============ */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  gap: 0.7rem;
  padding: 0.7rem var(--pad) calc(0.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(0, 22, 33, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.sticky-cta.visible {
  transform: translateY(0);
  opacity: 1;
}
.sticky-cta-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.sticky-cta-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.sticky-cta-primary:hover,
.sticky-cta-primary:active {
  background: var(--accent-2);
  box-shadow: 0 8px 22px rgba(255, 65, 3, 0.35);
  transform: translateY(-1px);
}
.sticky-cta-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line-strong);
}
.sticky-cta-ghost:hover,
.sticky-cta-ghost:active {
  border-color: var(--accent);
  color: var(--accent-2);
}
@media (min-width: 901px) {
  .sticky-cta { display: none !important; }
}
@media (max-width: 900px) {
  .sticky-cta { display: flex; }
}

/* ============ Sections ============ */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(4.5rem, 12vh, 9rem) var(--pad); }
.section-head { margin-bottom: 3.5rem; }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.6rem); margin-top: 0.8rem; }

/* ============ Reveal ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============ Hero ============ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--pad);
}
.hero-media { position: absolute; inset: 0; overflow: hidden; z-index: 0;
  will-change: transform;
  background: radial-gradient(120% 120% at 70% 20%, #0a2f3d 0%, #001621 55%); }
.hero-video { position: relative; z-index: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.hero-scrim { position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(0,22,33,0.5) 0%, rgba(0,22,33,0.2) 40%, rgba(0,22,33,0.95) 100%); }
.hero-inner { position: relative; z-index: 3; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hero-h1 { font-size: clamp(2.9rem, 9vw, 9rem); }
.hero-sub { margin-top: 1.5rem; font-size: clamp(1.05rem, 2vw, 1.4rem); color: var(--fg-dim); max-width: 38ch; }
.hero-actions { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--fg-faint);
}
.scroll-cue::after { content: ""; display: block; width: 1px; height: 32px; margin: 0.6rem auto 0; background: var(--fg-faint); animation: cue 2s ease-in-out infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(0.3); opacity: 0.3; } 50% { transform: scaleY(1); opacity: 1; } }

/* Badge chip above headline */
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  margin-bottom: 1.6rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(238, 244, 246, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--fg-dim);
}

/* ---- Hero shapes (shape-landing-hero port) ---- */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0;
  animation: shapeFadeIn 1.4s var(--ease) forwards, shapeFloat 16s ease-in-out infinite;
}
.shape-1 {
  top: 8%; left: 4%; width: 460px; height: 110px;
  background: linear-gradient(100deg, rgba(255, 65, 3, 0.12), rgba(255, 106, 44, 0.04));
  box-shadow: 0 0 120px 20px rgba(255, 65, 3, 0.06);
  animation-delay: 0s, 0.4s;
  animation-duration: 1.4s, 18s;
}
.shape-2 {
  top: 58%; left: -6%; width: 380px; height: 90px;
  background: linear-gradient(100deg, rgba(255, 106, 44, 0.1), rgba(255, 65, 3, 0.03));
  box-shadow: 0 0 100px 16px rgba(255, 106, 44, 0.05);
  animation-delay: 0.15s, 1.2s;
  animation-duration: 1.4s, 14s;
}
.shape-3 {
  top: 2%; right: 8%; width: 320px; height: 80px;
  background: linear-gradient(100deg, rgba(96, 176, 199, 0.1), rgba(96, 176, 199, 0.02));
  box-shadow: 0 0 90px 14px rgba(96, 176, 199, 0.05);
  animation-delay: 0.3s, 0.8s;
  animation-duration: 1.4s, 20s;
}
.shape-4 {
  bottom: 6%; right: -4%; width: 420px; height: 100px;
  background: linear-gradient(100deg, rgba(255, 65, 3, 0.09), rgba(255, 65, 3, 0.02));
  box-shadow: 0 0 110px 18px rgba(255, 65, 3, 0.06);
  animation-delay: 0.45s, 0.2s;
  animation-duration: 1.4s, 17s;
}
.shape-5 {
  top: 34%; left: 42%; width: 260px; height: 64px;
  background: linear-gradient(100deg, rgba(255, 106, 44, 0.08), rgba(255, 106, 44, 0.02));
  box-shadow: 0 0 80px 12px rgba(255, 106, 44, 0.04);
  animation-delay: 0.6s, 1.6s;
  animation-duration: 1.4s, 15s;
}
.shape-6 {
  bottom: 22%; left: 20%; width: 300px; height: 70px;
  background: linear-gradient(100deg, rgba(96, 176, 199, 0.08), rgba(96, 176, 199, 0.02));
  box-shadow: 0 0 90px 14px rgba(96, 176, 199, 0.04);
  animation-delay: 0.75s, 0.6s;
  animation-duration: 1.4s, 19s;
}
.shape-1 { --r: -14deg; }
.shape-2 { --r: 18deg; }
.shape-3 { --r: -24deg; }
.shape-4 { --r: 10deg; }
.shape-5 { --r: -8deg; }
.shape-6 { --r: 22deg; }
@keyframes shapeFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes shapeFloat {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-22px) rotate(calc(var(--r, 0deg) + 2deg)); }
}

/* ============ Marquee strip ============ */
.marquee {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  border-top: 1px solid var(--bg);
  border-bottom: 1px solid var(--bg);
  padding: 1.1rem 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
  will-change: transform;
}
.marquee-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  padding-right: clamp(1.2rem, 3vw, 2.5rem);
}
.marquee-set span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 3.6vw, 2.4rem);
  letter-spacing: -0.01em;
  color: var(--bg);
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-dot {
  font-size: clamp(1rem, 2.4vw, 1.6rem) !important;
  opacity: 0.55;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ============ Work card-stack ============ */
.stack {
  margin-top: 1rem;
  --stack-h: clamp(360px, 52vw, 560px);
}
.stack-viewport {
  position: relative;
  height: var(--stack-h);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1600px;
  touch-action: pan-y;
}
.stack-cards {
  position: relative;
  width: min(640px, 86%);
  height: 100%;
  list-style: none;
}
.stack-card {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, -400px) scale(0.8);
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease), box-shadow 0.4s ease, border-color 0.4s ease;
  will-change: transform, opacity;
  cursor: grab;
}
.stack-card:active { cursor: grabbing; }
.stack-card.is-active {
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--accent-line);
  border-color: var(--accent-line);
}
.stack-card.is-prev1 {
  z-index: 4;
  opacity: 0.85;
  transform: translate3d(-46%, 2%, -120px) scale(0.9) rotate(-6deg);
}
.stack-card.is-next1 {
  z-index: 4;
  opacity: 0.85;
  transform: translate3d(46%, 2%, -120px) scale(0.9) rotate(6deg);
}
.stack-card.is-prev2 {
  z-index: 3;
  opacity: 0.5;
  transform: translate3d(-82%, 5%, -280px) scale(0.8) rotate(-11deg);
}
.stack-card.is-next2 {
  z-index: 3;
  opacity: 0.5;
  transform: translate3d(82%, 5%, -280px) scale(0.8) rotate(11deg);
}
.stack-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.stack-card-media img,
.stack-card-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.stack-card-media video { opacity: 0; }
.stack-card.is-playing .stack-card-media video { opacity: 1; }
.stack-card-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.82) 100%);
}
.stack-card-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: clamp(1.2rem, 3vw, 2rem);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}
.stack-card.is-active .stack-card-info {
  opacity: 1;
  transform: none;
}
.stack-tag {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.stack-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  margin-top: 0.35rem;
}
.stack-context {
  margin-top: 0.4rem;
  color: var(--fg-dim);
  font-size: 0.92rem;
  max-width: 42ch;
}
.stack-controls {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}
.stack-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--fg);
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.stack-arrow:hover {
  border-color: var(--accent);
  color: var(--accent-ink);
  background: var(--accent);
}
.stack-arrow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.stack-dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.stack-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--line-strong);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.stack-dot:hover { background: var(--fg-dim); }
.stack-dot.is-active {
  background: var(--accent);
  transform: scale(1.25);
}
.stack-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============ Services (display-cards + spotlight) ============ */
.services { overflow: visible; }
.svc-deck {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}
.svc-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  filter: grayscale(0.6) brightness(0.92);
  transform: rotate(-1.2deg) translateY(0.4rem);
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease),
    border-color 0.4s ease, box-shadow 0.4s ease;
  will-change: transform, filter;
}
.svc-card:nth-child(2) {
  transform: rotate(1.2deg) translateY(1.2rem);
}
.svc-card--lead {
  border-color: var(--accent-line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.svc-card:hover,
.svc-card:focus-within {
  transform: rotate(0deg) translateY(-10px);
  filter: grayscale(0) brightness(1);
  border-color: var(--accent-line);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 65, 3, 0.25);
  z-index: 2;
}
.svc-card-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 65, 3, 0.15), transparent 40%);
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.svc-card:hover .svc-card-glow,
.svc-card:focus-within .svc-card-glow {
  opacity: 1;
}
.svc-card-kicker {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.svc-card-title {
  position: relative;
  z-index: 1;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin-top: 0.9rem;
  color: var(--fg);
}
.svc-card--lead .svc-card-title { font-size: clamp(2.1rem, 4.2vw, 3rem); }
.svc-card-copy {
  position: relative;
  z-index: 1;
  margin-top: 0.9rem;
  color: var(--fg-dim);
  max-width: 42ch;
  font-size: clamp(0.98rem, 1.3vw, 1.05rem);
}
.svc-card-chips {
  position: relative;
  z-index: 1;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0 0;
  padding: 0;
}
.svc-card-chips li {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--fg);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.svc-card:hover .svc-card-chips li {
  border-color: var(--accent-line);
  background: var(--accent-soft);
}
.svc-card-cta {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

/* ============ Process (How we work) ============ */
.process .section-head h2 { max-width: 16ch; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}
.step {
  position: relative;
  padding: clamp(2.2rem, 4vw, 3.2rem) clamp(1.4rem, 3vw, 2.4rem) clamp(2.4rem, 4vw, 3rem);
  border-right: 1px solid var(--line);
  overflow: hidden;
  transition: background 0.4s ease;
}
.step:last-child { border-right: none; }
.step::before {
  content: "";
  position: absolute;
  top: -2px; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.step.reveal.in::before { transform: scaleX(1); }
.step:nth-child(2)::before { transition-delay: 0.15s; }
.step:nth-child(3)::before { transition-delay: 0.3s; }
.step-kicker {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
}
.step h3 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  margin: 1.1rem 0 0.9rem;
  letter-spacing: -0.03em;
  transition: color 0.3s ease, transform 0.3s ease;
}
.step p {
  color: var(--fg-dim);
  max-width: 30ch;
  font-size: 1.02rem;
}
.step-arrow {
  display: none;
  position: absolute;
  top: 50%; right: -1.1rem;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  z-index: 2;
  opacity: 0.9;
}
@media (min-width: 901px) {
  .step-arrow { display: block; }
}
.step:hover { background: var(--bg-2); }
.step:hover h3 { color: var(--accent); transform: translateX(4px); }
.step:hover .step-arrow { animation: nudge 1.1s ease-in-out infinite; }
@keyframes nudge {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(6px); }
}

/* ---- Timeline chip row ---- */
.timeline-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.timeline-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: 0.86rem;
  color: var(--fg-dim);
  padding: 0.6rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-2);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.timeline-chip:hover {
  border-color: var(--accent-line);
  transform: translateY(-2px);
}
.timeline-chip .chip-strong {
  color: var(--fg);
  font-weight: 600;
}

/* ============ FAQ ============ */
.faq {
  margin-top: clamp(3.5rem, 8vw, 5.5rem);
}
.faq-head { margin-bottom: 1.8rem; }
.faq-head h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  margin-top: 0.6rem;
  letter-spacing: -0.02em;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.2rem, 3vw, 1.6rem) 0.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--fg);
  transition: color 0.25s ease;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { content: ""; }
.faq-marker {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid var(--accent-line);
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease;
}
.faq-item:hover .faq-q { color: var(--accent); }
.faq-item:hover .faq-marker { border-color: var(--accent); }
.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}
.faq-a-wrap > .faq-a {
  overflow: hidden;
  min-height: 0;
}
.faq-a p {
  color: var(--fg-dim);
  max-width: 60ch;
  font-size: 1rem;
  padding-bottom: clamp(1.2rem, 3vw, 1.6rem);
}
.faq-item[open] .faq-a-wrap { grid-template-rows: 1fr; }
.faq-item[open] .faq-marker {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--accent-ink);
}

/* ============ About ============ */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-photo {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 4px;
  background: linear-gradient(150deg, #0a2f3d 0%, #001621 65%);
  border: 1px solid var(--line);
  overflow: visible;
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}
.about-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--accent);
  border-radius: 4px;
  transform: translate(14px, 14px) rotate(2deg);
  z-index: -1;
}
.about-photo:hover { transform: rotate(0deg); }
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.about-copy h2 {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  margin: 0.8rem 0 1.2rem;
}
.about-copy p {
  color: var(--fg-dim);
  max-width: 54ch;
}
.about-copy p + p { margin-top: 1.2rem; }
.sig {
  font-family: var(--font-sig);
  font-size: 2.4rem;
  color: var(--fg);
  line-height: 1;
}
.about-copy .sig { margin-top: 1.6rem; }

/* ============ Testimonials ============ */
.testimonials { position: relative; }
.testi-launch {
  position: relative;
  max-width: 62ch;
  padding-top: 2.4rem;
}
.testi-launch-rule {
  display: block;
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  margin-bottom: 1.8rem;
  border-radius: 2px;
}
.testi-launch-copy {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 2.2rem;
}
.testi {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.testi[hidden] { display: none; }
.testi-photo {
  position: relative;
  aspect-ratio: 4/5;
  perspective: 1200px;
}
.testi-photo-frame {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, #0a2f3d 0%, #001621 65%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease), filter 0.6s var(--ease);
  will-change: transform, opacity;
}
.testi-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testi-initial {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 14vw, 9rem);
  color: var(--accent);
  opacity: 0.85;
  text-shadow: 0 0 60px rgba(255, 65, 3, 0.35);
}
.testi-photo-frame[data-pos="0"] {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  z-index: 3;
  opacity: 1;
  filter: none;
}
.testi-photo-frame[data-pos="1"] {
  transform: translate3d(4%, 6%, -80px) rotate(3deg) scale(0.94);
  z-index: 2;
  opacity: 0.7;
  filter: saturate(0.8) brightness(0.75);
}
.testi-photo-frame[data-pos="2"] {
  transform: translate3d(8%, 12%, -160px) rotate(6deg) scale(0.88);
  z-index: 1;
  opacity: 0.4;
  filter: saturate(0.6) brightness(0.6);
}
.testi-photo-frame[data-pos="out"] {
  transform: translate3d(-6%, -8%, -60px) rotate(-6deg) scale(0.92);
  opacity: 0;
  z-index: 0;
}
.testi-body { position: relative; }
.testi-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 1.8rem;
}
.testi-quote .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.testi-quote .w.in { opacity: 1; transform: translateY(0); }
.testi-person { display: flex; flex-direction: column; gap: 0.2rem; margin-bottom: 2rem; }
.testi-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--fg);
}
.testi-role {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--fg-faint);
}
.testi-controls { display: flex; align-items: center; gap: 1.2rem; }
.testi-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--fg);
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.testi-arrow:hover { border-color: var(--accent); color: var(--accent-ink); background: var(--accent); transform: translateY(-2px); }
.testi-arrow:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.testi-dots { display: flex; align-items: center; gap: 0.5rem; }
.testi-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--line-strong);
  transition: transform 0.3s var(--ease), background 0.3s ease;
}
.testi-dot.active { background: var(--accent); transform: scale(1.35); }

/* ============ Instagram strip ============ */
.ig-strip {
  position: relative;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--accent), #ecd9a6, var(--accent-2)) 1;
  background: var(--bg-2);
  overflow: hidden;
}
.ig-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.05) 45%, transparent 60%);
  transform: translateX(-120%);
  animation: igShimmer 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes igShimmer {
  0%, 100% { transform: translateX(-120%); }
  50% { transform: translateX(120%); }
}
.ig-strip-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(1.6rem, 4vw, 2.4rem) var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 3vw, 2rem);
  flex-wrap: wrap;
  text-align: center;
}
.ig-strip-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.ig-strip-handle {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  letter-spacing: -0.01em;
  color: var(--fg);
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}
.ig-strip-handle:hover { color: var(--accent); transform: translateY(-2px); }
.ig-strip-cta { padding: 0.7rem 1.3rem; font-size: 0.85rem; }

/* ============ Contact ============ */
.contact {
  position: relative;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(60% 50% at 85% 0%, rgba(255, 65, 3, 0.1) 0%, transparent 70%),
    var(--bg);
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 65, 3, 0.05) 50%, transparent 100%);
  pointer-events: none;
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-copy h2 {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  margin: 0.9rem 0 1.4rem;
}
.contact-lede {
  color: var(--fg-dim);
  font-size: 1.05rem;
  max-width: 42ch;
  margin-bottom: 1.6rem;
}
.contact-direct { color: var(--fg-dim); line-height: 2; font-size: 1.02rem; }
.contact-direct a {
  color: var(--fg);
  border-bottom: 1px solid var(--accent);
  transition: color 0.2s ease;
}
.contact-direct a:hover { color: var(--accent); }
.contact-area {
  margin-top: 1.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  background: var(--bg-3);
  border: 1.5px solid var(--line);
  border-radius: 6px;
  padding: 0.95rem 1.1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  resize: vertical;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--fg-faint); }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--fg-faint); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-2);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field select { cursor: pointer; }

.field input[type="date"] {
  color-scheme: dark;
  cursor: pointer;
}
.field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(1.6) sepia(1) saturate(6) hue-rotate(-10deg);
  opacity: 0.85;
  cursor: pointer;
  transition: opacity 0.2s ease;
  border-radius: 3px;
}
.field input[type="date"]::-webkit-calendar-picker-indicator:hover { opacity: 1; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.btn-contact {
  margin-top: 0.4rem;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 1.05rem 1.6rem;
  border-radius: 6px;
}
.btn-contact:hover { background: var(--fg); color: var(--accent-ink); }
.btn-contact:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.form-sla {
  margin-top: -0.4rem;
  font-size: 0.78rem;
  color: var(--fg-faint);
  text-align: center;
}
.form-status { font-size: 0.9rem; min-height: 1.2rem; }
.form-status.ok { color: var(--accent); }
.form-status.err { color: #ff6b5e; }

/* ============ Footer ============ */
.footer {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 3rem var(--pad) 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-wordmark .sig {
  font-size: 2.1rem;
  line-height: 0.9;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: opacity 0.2s ease;
}
.footer-wordmark:hover .sig { opacity: 0.75; }
.footer-sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--fg-faint);
  font-weight: 500;
}
.footer-wordmark .footer-sub {
  margin: 0.15rem 0 0 0.2rem;
  padding-bottom: 0.25rem;
  position: relative;
}
.footer-wordmark .footer-sub::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold-grad);
}
.footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-links a {
  color: var(--fg-dim);
  font-size: 0.9rem;
  position: relative;
  transition: color 0.2s ease;
}
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0; width: 100%; bottom: -3px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}
.footer-links a:hover { color: var(--fg); }
.footer-links a:hover::after { transform: scaleX(1); }
.footer-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.footer-bottom {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.footer-area {
  color: var(--fg-faint);
  font-size: 0.82rem;
  max-width: 46ch;
}
.footer-copy { color: var(--fg-faint); font-size: 0.8rem; white-space: nowrap; }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(0, 22, 33, 0.97); backdrop-filter: blur(12px);
    padding: 1.5rem var(--pad); gap: 1.2rem; border-bottom: 1px solid var(--line);
  }
  .nav-links.open a:not(.nav-cta)::after { display: none; }
  .nav-ig { display: inline; }
  .nav-toggle { display: flex; }

  .stack { --stack-h: clamp(320px, 88vw, 460px); }
  .stack-cards { width: 92%; }
  .stack-card.is-prev1 { transform: translate3d(-30%, 3%, -160px) scale(0.86) rotate(-5deg); }
  .stack-card.is-next1 { transform: translate3d(30%, 3%, -160px) scale(0.86) rotate(5deg); }
  .stack-card.is-prev2 { opacity: 0; transform: translate3d(-46%, 5%, -280px) scale(0.78) rotate(-8deg); }
  .stack-card.is-next2 { opacity: 0; transform: translate3d(46%, 5%, -280px) scale(0.78) rotate(8deg); }

  .svc-deck { grid-template-columns: 1fr; }
  .svc-card,
  .svc-card:nth-child(2) { transform: none; }
  .svc-card:hover,
  .svc-card:focus-within { transform: translateY(-4px); }

  .steps {
    grid-template-columns: 1fr;
    border-top: none;
    border-bottom: none;
  }
  .step {
    border-right: none;
    border-top: 2px solid var(--line);
    padding: 2.2rem 0.2rem 2.4rem;
  }
  .step:last-child { border-bottom: 2px solid var(--line); }
  .step::before {
    width: 3px; height: 100%;
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .step.reveal.in::before { transform: scaleY(1); }
  .step-arrow { display: none; }
  .step:hover h3 { transform: none; }

  .timeline-row { flex-direction: column; align-items: stretch; }
  .timeline-chip { justify-content: center; text-align: center; }

  .faq-q { gap: 1rem; }

  .about-grid { grid-template-columns: 1fr; }
  .about-photo {
    max-width: 320px;
    margin: 0 auto;
    transform: rotate(-1.5deg);
  }

  .testi { grid-template-columns: 1fr; gap: 2rem; }
  .testi-photo { max-width: 320px; margin: 0 auto; }

  .contact-grid { grid-template-columns: 1fr; }
  .form { padding: 1.4rem; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-video { display: none; }
  .hero-shape { animation: none !important; opacity: 1; }
  .reveal { opacity: 1; transform: none; }
  .scroll-cue::after { animation: none; }
  .marquee-track { animation: none; transform: translateX(0); }
  .hl::before { transform: scaleX(1) rotate(-1deg); }
  .hl .hl-text { color: var(--accent-ink); }
  .step::before { transform: scaleX(1); }
  .step:hover .step-arrow { animation: none; }
  .step:hover h3 { transform: none; }
  .stack-card { transition: opacity 0.3s ease; }
  .stack-card-info { transition: none; }
  .svc-card { transform: none !important; filter: none !important; }
  .svc-card-glow { display: none; }
  .faq-a-wrap { transition: none; }
  .faq-marker { transition: none; }
  .timeline-chip { transition: none; }
  .testi-photo-frame { transition: none !important; }
  .testi-quote .w { opacity: 1 !important; transform: none !important; }
  .testi-arrow:hover { transform: none; }
  .ig-strip::before { animation: none; display: none; }
  .ig-strip-handle:hover { transform: none; }
  .sticky-cta { transition: opacity 0.2s linear; transform: none; }
  .sticky-cta:not(.visible) { opacity: 0; pointer-events: none; }
  .sticky-cta.visible { opacity: 1; }
  .btn-primary, .hero-media { transform: none !important; will-change: auto; }
  * { transition: none !important; }
}

/* ============ Ask AI about me ============ */
.ask-ai { text-align: center; }

.ask-ai-inner {
  max-width: 640px;
  margin: 0 auto;
}

.ask-ai-copy {
  color: var(--fg-dim);
  margin-top: 0.75rem;
}

.ask-ai-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.ask-ai-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.ask-ai-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.ask-ai-mark { color: var(--accent); font-size: 0.8em; }
