/* ═══════════════════════════════════════════
   HAN STUDIOS — Clean White Branding
   styles.css
   ═══════════════════════════════════════════ */

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

:root {
  /* Light base */
  --bg: #ffffff;
  --bg-soft: #f5f5f5;
  --page-text: #111111;

  /* Dark card system */
  --card: rgba(17,17,17,0.90);
  --card-high: rgba(17,17,17,0.85);
  --card-mid: rgba(17,17,17,0.80);
  --card-low: rgba(17,17,17,0.75);
  --card-lower: rgba(17,17,17,0.70);

  /* Card text */
  --card-text: #ffffff;
  --card-muted: rgba(255,255,255,0.52);
  --card-faint: rgba(255,255,255,0.28);
  --card-border: rgba(255,255,255,0.06);
  --card-border-hover: rgba(255,255,255,0.14);

  /* Page text hierarchy */
  --text-muted: rgba(0,0,0,0.45);
  --text-faint: rgba(0,0,0,0.25);
  --border: rgba(0,0,0,0.06);

  /* Accent */
  --accent: #4ade80;
  --accent-glow: rgba(74,222,128,0.25);

  /* Typography */
  --heading: 'Inter', sans-serif;
  --mono: 'DM Mono', monospace;
  --body: 'Inter', sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-card: cubic-bezier(0.22, 0.61, 0.36, 1);

  --radius: 20px;
}

html {
  font-family: var(--body);
  color: var(--page-text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: auto;
}

body {
  overflow-x: hidden;
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img, video { display: block; max-width: 100%; }
ul { list-style: none; }

/* ══════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════ */
.hs-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 3vw, 40px);
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.hs-header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hs-header-logo {
  font-family: var(--heading);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.04em;
  color: var(--page-text);
}

.hs-header-pills {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hs-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.hs-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

/* ── Section Labels ── */
.hs-section-label {
  margin-bottom: 20px;
}

.hs-section-code {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 6px;
}

.hs-eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hs-reveal-title {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--page-text);
}

.hs-reveal-title .line { display: block; overflow: hidden; }
.hs-reveal-title .line-inner { display: block; transform: translateY(30px); opacity: 0; }

.hs-section-pad {
  padding: clamp(60px, 8vw, 120px) clamp(28px, 5vw, 100px);
}

/* ══════════════════════════════════════════
   SECTION 1: HERO
   ══════════════════════════════════════════ */
.hs-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--page-text);
}

.hs-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hs-hero-bg video {
  position: absolute;
  inset: -10%;
  width: 120%; height: 120%;
  object-fit: cover;
  opacity: 0.4;
  will-change: transform;
}

.hs-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, transparent 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.85) 100%),
    linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 40%);
}

.hs-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 28px;
}

.hs-hero-h1 {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(36px, 6.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #ffffff;
  will-change: transform, opacity;
}

.hs-hero-h1 .line {
  display: block;
  overflow: hidden;
}

.hs-hero-h1 .line-inner {
  display: block;
  transform: translateY(40px);
  opacity: 0;
}

.hs-hero-h1 .accent {
  color: rgba(255,255,255,0.45);
}

.hs-hero-sub {
  margin-top: clamp(18px, 2.5vw, 32px);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.52);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(16px);
}

.hs-hero-perf {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  opacity: 0;
  transform: translateY(10px);
}

.hs-hero-cta {
  margin-top: clamp(24px, 2.5vw, 40px);
  opacity: 0;
  transform: translateY(16px);
}

.hs-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 36px;
  background: var(--page-text);
  color: #ffffff;
  border: none;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.5s var(--ease), background 0.4s;
}
.hs-btn-primary:hover {
  background: #222;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.hs-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}
.hs-hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1) translateY(0); }
  50% { opacity: 0.7; transform: scaleY(1.15) translateY(6px); }
}
.hs-hero-scroll-text {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

/* ══════════════════════════════════════════
   SECTION 2: SERVICES — Dark Card System
   ══════════════════════════════════════════ */
.hs-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
  margin-top: clamp(40px, 5vw, 64px);
}

.hs-service-card {
  position: relative;
  padding: clamp(28px, 2.5vw, 44px);
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  min-height: clamp(260px, 24vw, 360px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hs-service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.18);
  background: rgba(17,17,17,0.96);
}

/* Card label pill */
.hs-card-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--card-muted);
  width: fit-content;
  margin-bottom: auto;
}

.hs-card-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent-glow);
}

.hs-service-card-title {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--card-text);
  margin-bottom: 12px;
}

.hs-service-card-desc {
  font-size: 12px;
  line-height: 1.65;
  color: var(--card-muted);
  margin-bottom: 20px;
}

/* Card footer */
.hs-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hs-card-route {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--card-faint);
}

.hs-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--card-muted);
  transition: color 0.3s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.arrow-line {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--card-faint);
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hs-service-card:hover .arrow-line {
  width: 30px;
}

.hs-service-card:hover .hs-card-arrow {
  color: var(--card-text);
  transform: translateX(2px);
}

/* Signature: internal content shift on hover */
.hs-service-card-title,
.hs-service-card-desc,
.hs-card-label {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hs-service-card:hover .hs-service-card-title,
.hs-service-card:hover .hs-service-card-desc,
.hs-service-card:hover .hs-card-label {
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   SECTION 3: SIGNATURE WORK
   ══════════════════════════════════════════ */
.hs-work-intro {
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: clamp(40px, 5vw, 72px);
}

/* Stop Moment — full-width pause */
.hs-stop-moment {
  background: var(--page-text);
  margin: clamp(20px, 3vw, 40px) calc(-1 * clamp(28px, 5vw, 100px));
  padding: clamp(64px, 8vw, 120px) clamp(28px, 5vw, 100px);
  text-align: center;
}

.hs-stop-moment-text {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.hs-work-list {
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.4vw, 6px);
}

.hs-work-item {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius);
}

.hs-work-item video,
.hs-work-item img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
  will-change: transform;
}
.hs-work-item:hover video {
  transform: scale(1.02);
  filter: brightness(1.04);
}

.hs-work-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.1) 100%
  );
  transition: opacity 0.6s var(--ease);
}
.hs-work-item:hover .hs-work-item-overlay {
  opacity: 0.8;
}

.hs-work-item-content {
  position: absolute;
  bottom: 0; left: 0;
  padding: clamp(24px, 3.5vw, 48px);
  z-index: 1;
  max-width: 500px;
}

.hs-work-item-cat {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}

.hs-work-item-title {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 10px;
}

.hs-work-item-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.52);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s var(--ease) 0.1s;
}
.hs-work-item:hover .hs-work-item-desc {
  opacity: 1;
  transform: translateY(0);
}

.hs-work-item-metrics {
  display: flex;
  gap: 20px;
  margin-top: 14px;
}

.hs-metric {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.40);
}

.hs-metric strong {
  display: block;
  font-family: var(--heading);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 2px;
}

.hs-work-item-play {
  position: absolute;
  top: 50%; right: clamp(24px, 3.5vw, 48px);
  transform: translateY(-50%) scale(0.85);
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.5s var(--ease);
  z-index: 2;
}
.hs-work-item:hover .hs-work-item-play {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* Lightbox */
.hs-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.hs-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.hs-lightbox video {
  width: 90vw;
  max-width: 1400px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.6s var(--ease) 0.1s, opacity 0.5s ease 0.1s;
}
.hs-lightbox.is-open video {
  transform: scale(1);
  opacity: 1;
}
.hs-lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, opacity 0.4s ease 0.2s;
  z-index: 2;
  opacity: 0;
}
.hs-lightbox.is-open .hs-lightbox-close { opacity: 1; }
.hs-lightbox-close:hover { border-color: rgba(255,255,255,0.35); }
.hs-lightbox-info {
  position: absolute;
  bottom: 32px; left: 32px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.25s, transform 0.5s var(--ease) 0.25s;
}
.hs-lightbox.is-open .hs-lightbox-info {
  opacity: 1;
  transform: translateY(0);
}
.hs-lightbox-info-cat {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}
.hs-lightbox-info-title {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #ffffff;
}

/* ══════════════════════════════════════════
   WORK TICKER (auto-scrolling row)
   ══════════════════════════════════════════ */
.hs-work-ticker-wrap {
  overflow: hidden;
  margin-top: clamp(12px, 2vw, 20px);
  padding: clamp(10px, 1.5vw, 20px) 0;
}

.hs-work-ticker {
  display: flex;
  gap: clamp(8px, 1vw, 14px);
  width: max-content;
  animation: tickerScroll 30s linear infinite;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hs-work-ticker-wrap:hover .hs-work-ticker {
  animation-play-state: paused;
}

.hs-ticker-card {
  position: relative;
  width: clamp(200px, 20vw, 300px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: var(--radius);
}

.hs-ticker-card video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.hs-ticker-card:hover video {
  transform: scale(1.04);
}

.hs-ticker-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  transition: opacity 0.6s var(--ease);
}
.hs-ticker-card:hover .hs-ticker-card-overlay {
  opacity: 0.7;
}

.hs-ticker-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(12px, 1.4vw, 22px);
  z-index: 1;
}

.hs-ticker-card-cat {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.hs-ticker-card-title {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(14px, 1.5vw, 20px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
}

/* ══════════════════════════════════════════
   FEATURE VIDEO (full-width 16:9)
   ══════════════════════════════════════════ */
.hs-feature-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-top: clamp(12px, 2vw, 20px);
  cursor: pointer;
  border-radius: var(--radius);
}

.hs-feature-video video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.hs-feature-video:hover video {
  transform: scale(1.02);
}

.hs-feature-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.2) 40%,
    transparent 100%
  );
}

.hs-feature-video-info {
  position: absolute;
  bottom: 0; left: 0;
  padding: clamp(24px, 3.5vw, 48px);
  z-index: 1;
}

.hs-feature-video-title {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-top: 6px;
}

/* ══════════════════════════════════════════
   BRAND TICKER
   ══════════════════════════════════════════ */
.hs-brand-ticker-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.hs-brand-ticker {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
  width: max-content;
  animation: brandTicker 20s linear infinite;
}

@keyframes brandTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hs-brand-ticker-item {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(14px, 1.4vw, 20px);
  letter-spacing: -0.02em;
  color: var(--text-faint);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   EDITORIAL CAROUSEL
   ══════════════════════════════════════════ */
.hs-editorial-section {
  padding-bottom: clamp(40px, 5vw, 80px);
}

.hs-editorial-carousel-wrap {
  position: relative;
  margin-top: clamp(20px, 2.5vw, 40px);
}

.hs-editorial-carousel {
  display: flex;
  gap: clamp(8px, 1vw, 14px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.hs-editorial-carousel::-webkit-scrollbar { display: none; }

.hs-editorial-slide {
  position: relative;
  min-width: 80%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  flex-shrink: 0;
  border-radius: var(--radius);
}

.hs-editorial-slide video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.hs-editorial-slide:hover video {
  transform: scale(1.02);
}

.hs-editorial-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.08) 40%, transparent 100%);
}

.hs-editorial-slide-info {
  position: absolute;
  bottom: 0; left: 0;
  padding: clamp(18px, 2.5vw, 36px);
  z-index: 1;
}

.hs-editorial-slide-title {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-top: 6px;
}

.hs-editorial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(14px, 1.8vw, 24px);
}

.hs-editorial-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--page-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
  cursor: pointer;
}
.hs-editorial-btn:active {
  transform: scale(0.94);
}
.hs-editorial-btn:hover {
  border-color: rgba(0,0,0,0.18);
  background: var(--bg-soft);
}

/* ══════════════════════════════════════════
   SECTION 4: PROCESS
   ══════════════════════════════════════════ */
.hs-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
  margin-top: clamp(40px, 5vw, 64px);
}

.hs-process-step {
  padding: clamp(24px, 2.5vw, 40px);
  background: var(--card-mid);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.hs-process-step:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.18);
}

.hs-process-step-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--card-faint);
  margin-bottom: 20px;
  transition: background 0.5s, box-shadow 0.5s;
}
.hs-process-step.is-active .hs-process-step-dot {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

.hs-process-step-num {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--card-faint);
  margin-bottom: 12px;
  display: block;
}

.hs-process-step-title {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: -0.03em;
  color: var(--card-text);
  margin-bottom: 12px;
}

.hs-process-step-desc {
  font-size: 12px;
  line-height: 1.65;
  color: var(--card-muted);
}

/* ══════════════════════════════════════════
   SECTION 5: CLIENT TRUST
   ══════════════════════════════════════════ */
.hs-trust {
  text-align: center;
}

.hs-trust-statement {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--page-text);
  max-width: 700px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.hs-trust-statement .accent { color: var(--text-faint); }

.hs-trust-list {
  font-family: var(--heading);
  font-weight: 600;
  font-size: clamp(14px, 1.4vw, 20px);
  letter-spacing: -0.01em;
  color: var(--page-text);
  margin-bottom: clamp(32px, 4vw, 56px);
}

/* ══════════════════════════════════════════
   SECTION 6: FINAL CTA
   ══════════════════════════════════════════ */
.hs-final-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  overflow: hidden;
  background: var(--bg-soft);
}

.hs-final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 0 28px;
}

.hs-final-cta-h2 {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--page-text);
  margin-bottom: 16px;
}

.hs-final-cta-sub {
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: clamp(24px, 3vw, 40px);
}

/* ── Channel Cards ── */
.hs-channel-question {
  font-style: italic;
  font-weight: 300;
  color: var(--text-muted);
  font-size: clamp(15px, 1.3vw, 19px);
  margin-bottom: clamp(20px, 2.5vw, 36px);
}

.hs-channel-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.2vw, 16px);
  max-width: 580px;
  margin: 0 auto clamp(24px, 3vw, 40px);
}

.hs-channel-card {
  display: block;
  padding: clamp(24px, 2.5vw, 40px) clamp(18px, 2vw, 28px);
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  color: var(--card-text);
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.3s var(--ease-card);
}

.hs-channel-card:hover {
  border-color: var(--card-border-hover);
}

.hs-channel-card-title {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 24px);
  display: block;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.hs-channel-card-desc {
  font-size: 12px;
  line-height: 1.65;
  color: var(--card-muted);
  margin: 0;
}

.hs-founder-line {
  margin-top: clamp(28px, 3vw, 44px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-faint);
}

/* ── Divider ── */
.hs-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ══════════════════════════════════════════
   SCROLL NAV
   ══════════════════════════════════════════ */
.hs-scroll-nav {
  position: fixed;
  top: 50%; right: 16px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  transform: translateY(-50%);
  padding: 10px 8px;
  border-radius: 18px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
}
.hs-scroll-nav a {
  display: flex;
  align-items: center;
  padding: 3px 0;
  text-decoration: none;
}
.hs-scroll-nav-label {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  padding-right: 0;
  color: var(--page-text);
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: max-width 0.35s var(--ease), opacity 0.25s, padding-right 0.35s;
}
.hs-scroll-nav a:hover .hs-scroll-nav-label,
.hs-scroll-nav a.active .hs-scroll-nav-label {
  max-width: 120px;
  opacity: 1;
  padding-right: 10px;
}
.hs-scroll-nav-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}
.hs-scroll-nav a.active .hs-scroll-nav-dot {
  background: var(--page-text);
  transform: scale(1.35);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hs-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hs-services-grid {
    grid-template-columns: 1fr;
  }
  .hs-process-grid {
    grid-template-columns: 1fr;
  }
  .hs-work-item { aspect-ratio: 16 / 9; }
  .hs-ticker-card { width: 160px; }
  .hs-editorial-slide { min-width: 90%; }
  .hs-scroll-nav { display: none; }
  .hs-hero-h1 { font-size: clamp(30px, 9vw, 48px); }
  .hs-section-pad { padding: 56px 20px; }
  .hs-header { height: 56px; }
}

@media (max-width: 560px) {
  .hs-work-item-content { max-width: 100%; }
  .hs-editorial-slide { min-width: 95%; }
  .hs-channel-cards { grid-template-columns: 1fr; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hs-hero-h1 .line-inner { transform: none !important; opacity: 1 !important; }
  .hs-hero-sub, .hs-hero-cta, .hs-hero-scroll { opacity: 1; transform: none; }
  .hs-reveal-title .line-inner { transform: none !important; opacity: 1 !important; }
}
