/* ════════════════════════════════════════
   JAY HOME 2026 — Light Theme
   All selectors scoped to .jay-home
════════════════════════════════════════ */
.jay-home *, .jay-home *::before, .jay-home *::after {
  box-sizing: border-box;
}
.jay-home {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0f0f0f;
  background: #fff;
  overflow-x: hidden;
}
.jay-home h1, .jay-home h2, .jay-home h3 {
  font-family: 'Oswald', 'Raleway', sans-serif;
  text-transform: uppercase;
}

/* ── SECTION LABEL ── */
.jay-home .jh-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1B96FE;
  margin-bottom: 16px;
}

/* ════ HERO ════ */
.jay-home .jh-hero {
  min-height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 40px 80px;
  overflow: hidden;
}

/* Animated gradient orbs */
.jay-home .jh-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.55;
  will-change: transform;
}
.jay-home .jh-hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(27,150,254,0.35) 0%, rgba(27,150,254,0.05) 70%);
  top: -100px; right: -80px;
  animation: jhOrb1 8s ease-in-out infinite;
}
.jay-home .jh-hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(100,60,255,0.2) 0%, rgba(100,60,255,0.02) 70%);
  bottom: -80px; left: -60px;
  animation: jhOrb2 11s ease-in-out infinite;
}
.jay-home .jh-hero-orb-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(27,220,200,0.18) 0%, transparent 70%);
  top: 40%; left: 10%;
  animation: jhOrb3 14s ease-in-out infinite;
}
@keyframes jhOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-40px, 30px) scale(1.08); }
  66%       { transform: translate(20px, -20px) scale(0.95); }
}
@keyframes jhOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(50px, -40px) scale(1.1); }
}
@keyframes jhOrb3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  50%       { transform: translate(30px, 50px) scale(1.15); opacity: 0.3; }
}

/* ── Why section breathing orbs ── */
.jay-home .jh-why {
  position: relative;
  overflow: hidden;
}
.jay-home .jh-why-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  will-change: transform;
}
.jay-home .jh-why-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(27,150,254,0.22) 0%, rgba(27,150,254,0.03) 70%);
  top: -120px; left: -100px;
  animation: jhOrb1 10s ease-in-out infinite;
}
.jay-home .jh-why-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(100,60,255,0.15) 0%, rgba(100,60,255,0.02) 70%);
  bottom: -80px; right: -60px;
  animation: jhOrb2 13s ease-in-out infinite;
  animation-delay: -4s;
}

.jay-home .jh-hero-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Logo */
.jay-home .jh-hero-logo {
  margin-bottom: 56px;
  will-change: transform;
}
.jay-home .jh-svg-logo {
  width: min(460px, 75vw);
  height: auto;
  overflow: visible;
}
.jay-home .jh-svg-logo path {
  fill: none;
  stroke: #1B96FE;
  stroke-width: 0.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}

/* Hero tagline */
.jay-home .jh-hero-tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
}
.jay-home .jh-line {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #0f0f0f;
  line-height: 1;
  opacity: 0;
  transform: translateY(48px) scale(0.96);
  filter: blur(12px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1),
              filter 0.9s cubic-bezier(0.16,1,0.3,1);
}
.jay-home .jh-line.jh-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.jay-home .jh-line-1 {
  font-size: clamp(28px, 6vw, 80px);
  transition-delay: 0.15s;
  color: #555;
  font-weight: 400;
  letter-spacing: 0.12em;
}
.jay-home .jh-line-2 {
  font-size: clamp(60px, 13vw, 160px);
  color: #1B96FE;
  transition-delay: 0.35s;
  letter-spacing: -0.03em;
}

/* Sub text — two lines */
.jay-home .jh-hero-sub {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(13px, 1.4vw, 15px);
  color: #999;
  margin-bottom: 40px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1) 0.55s,
              transform 0.8s cubic-bezier(0.16,1,0.3,1) 0.55s,
              filter 0.8s cubic-bezier(0.16,1,0.3,1) 0.55s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.jay-home .jh-hero-sub.jh-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.jay-home .jh-hero-sub-line2 {
  display: block;
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 400;
  color: #999;
  letter-spacing: 0.01em;
}

/* CTA wrapper */
.jay-home .jh-hero-cta {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1) 0.8s,
              transform 0.8s cubic-bezier(0.16,1,0.3,1) 0.8s,
              filter 0.8s cubic-bezier(0.16,1,0.3,1) 0.8s;
}
.jay-home .jh-hero-cta.jh-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Scroll-parallax: text zooms up on scroll */
.jay-home .jh-hero-text {
  will-change: transform, opacity;
  transition: none;
}


}

/* ════ MARQUEE ════ */
.jay-home .jh-marquee {
  padding: 20px 0;
  overflow: hidden;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  position: relative;
  z-index: 1;
}
.jay-home .jh-marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: jhMarquee 25s linear infinite;
  width: max-content;
}
.jay-home .jh-marquee-track span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
}
.jay-home .jh-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #1B96FE;
  flex-shrink: 0;
  display: inline-block !important;
}
@keyframes jhMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ════ SERVICES — Stacking Cards ════ */
.jay-home .jh-services {
  position: relative;
  padding: 120px 0 0;
  background: #fff;
}
.jay-home .jh-serv-header {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 24px;
}
.jay-home .jh-serv-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  text-transform: uppercase;
  color: #0f0f0f;
  line-height: 1.05;
  margin-top: 12px;
}

/* Stack container */
.jay-home .jh-serv-stack {
  position: relative;
  padding-bottom: 60px;
  perspective: 1200px;
  perspective-origin: 50% 0%;
}

/* Each card sticks as it comes into view */
.jay-home .jh-serv-card {
  position: sticky;
  top: 80px;
  margin: 0 auto 0;
  max-width: 1100px;
  width: calc(100% - 48px);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  will-change: transform, opacity;
  transform-origin: 50% 0%;
  transform-style: preserve-3d;
  margin-top: 60px;
  background:
    radial-gradient(ellipse 80% 60% at 0% 50%, rgba(27,150,254,0.04) 0%, transparent 60%),
    #fff;
}

.jay-home .jh-serv-card-img {
  height: 100%;
  min-height: 520px;
  overflow: hidden;
  background: #f0f0ee;
}
.jay-home .jh-serv-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.jay-home .jh-serv-card-img--ai {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f8ff 0%, #ede9fe 100%);
}
.jay-home .jh-ai-orb {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  animation: jhAiPulse 3s ease-in-out infinite;
}
.jay-home .jh-ai-orb svg { width: 140px; height: 140px; }
.jay-home .jh-ai-label {
  font-family: 'Oswald', sans-serif;
  font-size: 32px; font-weight: 700; letter-spacing: 0.2em; color: #1B96FE;
}
@keyframes jhAiPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.04); }
}

.jay-home .jh-serv-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
}
.jay-home .jh-serv-num {
  display: block;
  font-family: 'Oswald', monospace;
  font-size: 11px; font-weight: 300;
  letter-spacing: 0.3em; color: #1B96FE;
  margin-bottom: 16px; opacity: 0.8;
}
.jay-home .jh-serv-card-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -0.01em;
  color: #0f0f0f; margin-bottom: 20px;
  text-transform: uppercase;
}
.jay-home .jh-serv-card-body p {
  font-size: 16px; line-height: 1.75;
  color: #666; margin-bottom: 32px;
  max-width: 360px;
}
.jay-home .jh-serv-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #1B96FE; text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1.5px solid rgba(27,150,254,0.35);
  width: fit-content;
  transition: gap 0.35s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s ease,
              transform 0.3s cubic-bezier(0.16,1,0.3,1),
              color 0.25s ease;
}
.jay-home .jh-serv-link:hover {
  gap: 18px;
  transform: translateY(-2px);
  border-color: #1B96FE;
  color: #0077dd;
}
/* Arrow: slide right on hover */
.jay-home .jh-serv-link svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.jay-home .jh-serv-link:hover svg { transform: translateX(6px); }

/* Alternate: odd cards flip image to right */
.jay-home .jh-serv-card[data-idx="1"],
.jay-home .jh-serv-card[data-idx="3"] {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}
.jay-home .jh-serv-card[data-idx="1"] .jh-serv-card-body,
.jay-home .jh-serv-card[data-idx="3"] .jh-serv-card-body {
  direction: ltr;
}
.jay-home .jh-serv-card[data-idx="1"] .jh-serv-card-img,
.jay-home .jh-serv-card[data-idx="3"] .jh-serv-card-img {
  direction: ltr;
}

/* Mobile */
@media (max-width: 768px) {
  .jay-home .jh-serv-card,
  .jay-home .jh-serv-card[data-idx="1"],
  .jay-home .jh-serv-card[data-idx="3"] {
    display: flex !important;
    flex-direction: column !important;
    direction: ltr !important;
    min-height: auto;
    top: 60px;
    width: calc(100% - 32px);
  }
  /* Image always on top on mobile */
  .jay-home .jh-serv-card-img,
  .jay-home .jh-serv-card[data-idx="1"] .jh-serv-card-img,
  .jay-home .jh-serv-card[data-idx="3"] .jh-serv-card-img {
    order: 0 !important;
    width: 100% !important;
    min-height: 220px;
    height: 220px;
    direction: ltr;
  }
  .jay-home .jh-serv-card-body,
  .jay-home .jh-serv-card[data-idx="1"] .jh-serv-card-body,
  .jay-home .jh-serv-card[data-idx="3"] .jh-serv-card-body {
    order: 1 !important;
    direction: ltr !important;
    padding: 36px 28px;
    width: 100%;
  }
  .jay-home .jh-serv-card-body h3 { font-size: 32px; }
}

/* ════ NUMBERS ════ */
.jay-home .jh-numbers {
  background: #f5f5f3;
  padding: 80px 40px;
}
.jay-home .jh-numbers-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; text-align: center;
}
.jay-home .jh-stat-num {
  display: block;
  font-size: clamp(52px, 10vw, 120px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #0f0f0f;
  line-height: 1;
}
.jay-home .jh-stat-plus {
  font-size: clamp(28px, 5vw, 60px);
  font-weight: 900;
  color: #1B96FE;
  vertical-align: super;
}

.jay-home .jh-stat-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}
.jay-home .jh-stat-label {
  font-size: 13px; color: #888;
  letter-spacing: 0.05em; margin-top: 8px;
  text-transform: uppercase; font-weight: 500;
}

/* ════ WHY JAY — CARDS ════ */
.jay-home .jh-why {
  padding: 100px 40px;
  background: #fff;
}
.jay-home .jh-why-inner {
  max-width: 1100px; margin: 0 auto;
}
.jay-home .jh-why-title {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.1; margin-bottom: 56px; color: #0f0f0f;
}
.jay-home .jh-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* Last row: 2 cards centered */
.jay-home .jh-why-card:nth-child(4) { grid-column: 1; }
.jay-home .jh-why-card:nth-child(5) { grid-column: 2; }

.jay-home .jh-why-card {
  padding: 36px 32px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.07);
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(27,150,254,0.04) 0%, transparent 60%),
    #fff;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22,1,0.36,1), box-shadow 0.2s;
}
.jay-home .jh-why-card.jh-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.jay-home .jh-why-card.jh-visible:hover {
  box-shadow: 0 8px 32px rgba(27,150,254,0.1);
  transform: translateY(-3px);
}
.jay-home .jh-why-icon {
  width: 48px; height: 48px;
  color: #1B96FE;
  margin-bottom: 20px;
}
.jay-home .jh-why-icon svg { width: 100%; height: 100%; }
.jay-home .jh-why-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.03em;
  color: #0f0f0f; margin-bottom: 12px;
}
.jay-home .jh-why-card p {
  font-size: 14px; line-height: 1.75; color: #666;
}

/* ════ PROJECTS — MASONRY ════ */
.jay-home .jh-projects {
  padding: 80px 40px;
  background: #fff;
}
.jay-home .jh-projects-inner { max-width: 1100px; margin: 0 auto; }
.jay-home .jh-projects-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.jay-home .jh-view-all {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: #1B96FE; text-decoration: none;
  transition: gap 0.2s;
}
.jay-home .jh-view-all:hover { gap: 12px; }
.jay-home .jh-view-all svg { width: 16px; height: 16px; }

/* 4-column masonry */
.jay-home .jh-projects-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: start;
}
.jay-home .jh-msnry-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.jay-home .jh-proj-card {
  display: block; position: relative;
  border-radius: 12px; overflow: hidden;
  text-decoration: none;
  opacity: 0;
  transform: scale(0.93) translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.jay-home .jh-proj-card.jh-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.jay-home .jh-proj-tall  { aspect-ratio: 3/4; }
.jay-home .jh-proj-short { aspect-ratio: 4/3; }
.jay-home .jh-proj-img {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  position: absolute; inset: 0;
  transition: transform 0.5s ease;
}
.jay-home .jh-proj-card:hover .jh-proj-img { transform: scale(1.04); }
.jay-home .jh-proj-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 20px;
  opacity: 0; transition: opacity 0.3s;
}
.jay-home .jh-proj-card:hover .jh-proj-overlay { opacity: 1; }
.jay-home .jh-proj-cat {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #1B96FE; margin-bottom: 4px;
}
.jay-home .jh-proj-name {
  font-size: 15px; font-weight: 700; color: #fff; line-height: 1.2;
}
.jay-home .jh-proj-more {
  background: linear-gradient(135deg, #e0f0ff 0%, #ede9fe 100%);
}
.jay-home .jh-proj-more-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  padding: 20px; text-align: center;
}
.jay-home .jh-proj-more-inner span {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: #1B96FE;
}
.jay-home .jh-proj-more-inner svg {
  width: 24px; height: 24px; stroke: #1B96FE;
}

@media (max-width: 768px) {
  .jay-home .jh-projects-masonry { grid-template-columns: repeat(2, 1fr); }
  .jay-home .jh-why-grid { grid-template-columns: 1fr; }
  .jay-home .jh-why-card:nth-child(4),
  .jay-home .jh-why-card:nth-child(5) { grid-column: auto; }
}

/* ════ VIDEO CTA — Video background + glass ════ */
.jay-home .jh-video-cta {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.jay-home .jh-vcta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
/* Desktop shows video, mobile shows particles */
.jay-home .jh-vcta-bg--mobile { display: none; }
.jay-home .jh-vcta-bg--mobile canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; /* allow touch-scroll to pass through */
}
@media (max-width: 768px) {
  .jay-home .jh-vcta-bg--desktop { display: none; }
  .jay-home .jh-vcta-bg--mobile  { display: block; }
  .jay-home .jh-video-cta {
    background: linear-gradient(135deg, #e8f4ff 0%, #dbeeff 40%, #eaf3ff 70%, #f0f8ff 100%);
  }
}
/* YouTube iframe scaled to cover */
.jay-home .jh-vcta-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;   /* 16:9 — landscape */
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) !important;
  pointer-events: none;
  border: none;
}

.jay-home .jh-vcta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,20,40,0.45) 100%
  );
}
@media (max-width: 768px) {
  .jay-home .jh-vcta-bg--mobile .jh-vcta-overlay {
    display: none;
  }
}
.jay-home .jh-vcta-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jay-home .jh-vcta-glass {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 52px 56px;
  max-width: 560px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.25);
}
@media (max-width: 768px) {
  .jay-home .jh-vcta-glass {
    background: rgba(8,25,55,0.2);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
    border: 1px solid rgba(27,150,254,0.3);
    box-shadow: 0 8px 48px rgba(27,100,200,0.18), inset 0 1px 0 rgba(255,255,255,0.08);
  }
}
.jay-home .jh-vcta-glass h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.07em;
  margin-bottom: 16px;
}
.jay-home .jh-vcta-sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}
.jay-home .jh-vcta-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.jay-home .jh-vcta-play-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #1B96FE;
  color: #fff;
  font-size: 14px; font-weight: 700; letter-spacing: 0.05em;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
}
.jay-home .jh-vcta-play-btn:hover { background: #0077dd; transform: translateY(-1px); }
.jay-home .jh-vcta-play-btn svg { width: 18px; height: 18px; }
.jay-home .jh-vcta-port-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: gap 0.2s, color 0.2s;
}
.jay-home .jh-vcta-port-link:hover { gap: 14px; color: #fff; }
.jay-home .jh-vcta-port-link svg { width: 14px; height: 14px; }

/* ════ CTA FINAL ════ */
.jay-home .jh-cta-final {
  padding: 120px 40px;
  background: #fff;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(27,150,254,0.06) 0%, transparent 60%),
    #fff;
}
.jay-home .jh-cta-final h2 {
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 700; letter-spacing: -0.03em;
  color: #0f0f0f; line-height: 1.1; margin-bottom: 20px;
}
.jay-home .jh-cta-sub {
  font-size: 16px; color: #888; margin-bottom: 40px;
}
.jay-home .jai-cta-btn--light {
  background: #fff !important;
  color: #0f0f0f !important;
  border-color: #fff !important;
}


/* ── Section entrance: blur-to-focus (Antigravity style) ── */
.jay-home .jh-section-enter {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(10px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.85s cubic-bezier(0.16,1,0.3,1),
              filter 0.85s cubic-bezier(0.16,1,0.3,1);
}
.jay-home .jh-section-enter.jh-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.jay-home .jh-section-enter:nth-child(2) { transition-delay: 0.1s; }
.jay-home .jh-section-enter:nth-child(3) { transition-delay: 0.2s; }
.jay-home .jh-section-enter:nth-child(4) { transition-delay: 0.3s; }

/* ════ RESPONSIVE ════ */
@media (max-width: 768px) {
  .jay-home .jh-hero { padding: 80px 24px 60px; }
  .jay-home .jh-services-inner { grid-template-columns: 1fr; }
  .jay-home .jh-services-sticky { position: static; }
  .jay-home .jh-services-nav { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; }
  .jay-home .jh-sn-item { border: 1px solid #eee; border-radius: 6px; padding: 10px 14px; white-space: nowrap; flex-shrink: 0; }
  .jay-home .jh-numbers-inner { grid-template-columns: 1fr; gap: 32px; }
  .jay-home .jh-projects-grid { grid-template-columns: repeat(2, 1fr); }
  .jay-home .jh-videos-grid { grid-template-columns: 1fr; }
  .jay-home .jh-services, .jay-home .jh-why, .jay-home .jh-projects,
  .jay-home .jh-videos, .jay-home .jh-numbers { padding: 60px 24px; }
  .jay-home .jh-cta-final { padding: 80px 24px; }
}
@media (max-width: 480px) {
  .jay-home .jh-projects-grid { grid-template-columns: 1fr; }
}

/* ── Overlay: desktop = hover, mobile = JS zone 150px-250px from top only ── */
.jay-home .jh-proj-overlay {
  opacity: 0;
  transition: opacity 0.35s ease;
}
/* Desktop hover */
@media (min-width: 769px) {
  .jay-home .jh-proj-card:hover .jh-proj-overlay {
    opacity: 1;
  }
}
/* Mobile: only when JS adds active class (card centre in zone 150-250px) */
@media (max-width: 768px) {
  .jay-home .jh-proj-card.jh-mobile-active .jh-proj-overlay {
    opacity: 1;
  }
}

/* ── Globe Entrance: Parabolic Orbital ── */
@keyframes jhGlobeOrbit {
  0% {
    opacity: 0;
    transform: perspective(900px)
      translate(60vw, 40vh)
      scale(0.3)
      translateZ(0px);
  }
  20% {
    opacity: 0.2;
    transform: perspective(900px)
      translate(60vw, 40vh)
      scale(0.15)
      translateZ(0px);
  }
  60% {
    opacity: 0.35;
    transform: perspective(900px)
      translate(20vw, -10vh)
      scale(0.5)
      translateZ(-600px);
  }
  85% {
    opacity: 0.42;
    transform: perspective(900px)
      translate(-2vw, 2vh)
      scale(1.08)
      translateZ(-60px);
  }
  100% {
    opacity: 0.45;
    transform: perspective(900px)
      translate(0, 0)
      scale(1)
      translateZ(0px);
  }
}

#jay-globe-bg.jh-globe-enter {
  animation: jhGlobeOrbit 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
