:root {
  --hbk-canvas: #050708;
  --hbk-canvas-soft: #090d10;
  --hbk-panel: rgba(17, 22, 26, 0.78);
  --hbk-panel-solid: #11161a;
  --hbk-panel-raised: #171d22;
  --hbk-ivory: #f2efe8;
  --hbk-silver: #b5bec5;
  --hbk-slate: #77838c;
  --hbk-teal-bright: #22b8cd;
  --hbk-teal-deep: #0d7485;
  --hbk-brass: #c69b3c;
  --hbk-rule: rgba(232, 238, 241, 0.13);
  --hbk-rule-strong: rgba(232, 238, 241, 0.25);
  --hbk-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --hbk-ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --hbk-section-space: clamp(76px, 8vw, 126px);
  --pointer-x: 70vw;
  --pointer-y: 18vh;
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: hbk-page-out 0.36s var(--hbk-ease-in-out) both;
}

::view-transition-new(root) {
  animation: hbk-page-in 0.62s var(--hbk-ease-out) both;
}

@keyframes hbk-page-out {
  to {
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.985);
  }
}

@keyframes hbk-page-in {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
  }
}

html {
  background: var(--hbk-canvas);
  scrollbar-color: var(--hbk-teal-deep) var(--hbk-canvas);
}

body.hbk-premium-phase1 {
  position: relative;
  background:
    radial-gradient(circle at 74% 7%, rgba(34, 184, 205, 0.13), transparent 25rem),
    linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px),
    linear-gradient(180deg, #050708 0%, #090d10 44%, #050708 100%);
  background-size: auto, 80px 80px, 80px 80px, auto;
  color: var(--hbk-ivory);
}

body.hbk-premium-phase1::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.24;
  background:
    repeating-linear-gradient(118deg, transparent 0 18px, rgba(255,255,255,0.013) 19px 20px),
    linear-gradient(90deg, rgba(255,255,255,0.02), transparent 30%, transparent 70%, rgba(255,255,255,0.015));
}

body.hbk-premium-phase1::after {
  content: "";
  position: fixed;
  left: var(--pointer-x);
  top: var(--pointer-y);
  z-index: -1;
  width: 42rem;
  height: 42rem;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,184,205,0.085), rgba(34,184,205,0.025) 34%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

body.hbk-premium-phase1,
body.hbk-premium-phase1 p,
body.hbk-premium-phase1 li {
  text-wrap: pretty;
}

body.hbk-premium-phase1 h1,
body.hbk-premium-phase1 h2,
body.hbk-premium-phase1 h3 {
  text-wrap: balance;
}

body.hbk-premium-phase1 a:focus-visible,
body.hbk-premium-phase1 button:focus-visible,
body.hbk-premium-phase1 summary:focus-visible {
  outline: 2px solid var(--hbk-teal-bright);
  outline-offset: 5px;
}

.hbk-scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1000;
  width: 100%;
  height: 2px;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--hbk-teal-bright), #d8fbff, var(--hbk-brass));
  box-shadow: 0 0 18px rgba(34,184,205,0.5);
}

.hbk-page-curtain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(34,184,205,0.2), transparent),
    #050708;
  transform-origin: top;
}

/* Floating navigation */
body.hbk-premium-phase1 nav {
  top: 14px;
  left: 50%;
  width: min(1380px, calc(100vw - 32px));
  height: 64px;
  padding: 0 18px 0 20px;
  transform: translateX(-50%);
  border: 1px solid rgba(232,238,241,0.1);
  border-radius: 999px;
  background: rgba(5,7,8,0.62);
  box-shadow: 0 18px 60px rgba(0,0,0,0.3);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

body.hbk-premium-phase1 nav.scrolled {
  background: rgba(5,7,8,0.9);
  border-color: rgba(34,184,205,0.22);
  box-shadow: 0 24px 70px rgba(0,0,0,0.44);
}

body.hbk-premium-phase1 .nav-logo {
  gap: 10px;
}

body.hbk-premium-phase1 .nav-logo .nav-mark {
  width: 38px;
  height: 38px;
  animation: none;
}

body.hbk-premium-phase1 .nav-logo .nav-wordmark {
  height: 24px;
}

body.hbk-premium-phase1 nav .nav-inner {
  width: 100%;
  max-width: none;
}

body.hbk-premium-phase1 nav .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

body.hbk-premium-phase1 nav .brand-mark {
  width: 38px;
  height: 38px;
}

body.hbk-premium-phase1 nav .brand-wordmark {
  width: auto;
  height: 24px;
}

body.hbk-premium-phase1 .nav-links {
  gap: clamp(18px, 2vw, 34px);
}

body.hbk-premium-phase1 .nav-links a {
  color: #a5afb7;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.2px;
}

body.hbk-premium-phase1 .nav-links a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--hbk-teal-bright);
  transition: right 0.32s var(--hbk-ease-out);
}

body.hbk-premium-phase1 .nav-links a:hover::before,
body.hbk-premium-phase1 .nav-links a.active::before {
  right: 0;
}

body.hbk-premium-phase1 .nav-cta {
  min-height: 44px;
  padding: 0 22px;
  background: linear-gradient(135deg, #22b8cd, #11889a);
  box-shadow: 0 10px 28px rgba(20,163,184,0.2);
}

/* Buttons */
body.hbk-premium-phase1 .btn-primary,
body.hbk-premium-phase1 .btn-outline,
body.hbk-premium-phase1 .btn,
body.hbk-premium-phase1 .case-link {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 999px;
}

body.hbk-premium-phase1 .btn-primary::before,
body.hbk-premium-phase1 .nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.45) 48%, transparent 76%);
  transform: translateX(-140%);
  transition: transform 0.65s var(--hbk-ease-out);
}

body.hbk-premium-phase1 .btn-primary:hover::before,
body.hbk-premium-phase1 .nav-cta:hover::before {
  transform: translateX(140%);
}

body.hbk-premium-phase1 .btn-outline:hover,
body.hbk-premium-phase1 .case-link:hover {
  color: var(--hbk-ivory);
  border-color: rgba(34,184,205,0.65);
  background: rgba(34,184,205,0.08);
}

/* Homepage hero */
body.hbk-premium-phase1 .premium-hero {
  min-height: min(900px, 100svh);
  padding: 112px 32px 52px;
  border-bottom: 1px solid var(--hbk-rule);
}

body.hbk-premium-phase1 .premium-hero__bg {
  background:
    linear-gradient(90deg, rgba(5,7,8,0.98) 0%, rgba(5,7,8,0.72) 42%, rgba(5,7,8,0.2) 72%, rgba(5,7,8,0.7) 100%),
    radial-gradient(circle at 72% 36%, rgba(34,184,205,0.2), transparent 28%),
    linear-gradient(145deg, transparent 0 62%, rgba(198,155,60,0.035) 63%, transparent 64%);
}

body.hbk-premium-phase1 .premium-hero__bg::before,
body.hbk-premium-phase1 .premium-hero__bg::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

body.hbk-premium-phase1 .premium-hero__bg::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(34,184,205,0.07) 50%, transparent 50.1%),
    linear-gradient(180deg, transparent 49.9%, rgba(34,184,205,0.055) 50%, transparent 50.1%);
  background-size: 160px 160px;
  mask-image: linear-gradient(90deg, transparent, #000 42%, #000);
}

body.hbk-premium-phase1 .premium-hero__bg::after {
  right: -10vw;
  top: 10%;
  width: min(58vw, 860px);
  aspect-ratio: 1;
  border: 1px solid rgba(34,184,205,0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(34,184,205,0.025),
    0 0 0 140px rgba(34,184,205,0.018);
}

body.hbk-premium-phase1 .premium-hero__inner {
  width: min(1480px, calc(100vw - 64px));
  grid-template-columns: minmax(430px, 0.82fr) minmax(540px, 1.18fr);
  gap: clamp(36px, 5vw, 92px);
}

body.hbk-premium-phase1 .premium-hero__copy {
  position: relative;
  z-index: 4;
}

body.hbk-premium-phase1 .premium-hero__brand {
  margin-bottom: 22px;
}

body.hbk-premium-phase1 .premium-hero__brand img:first-child {
  width: 62px;
  height: 62px;
}

body.hbk-premium-phase1 .premium-hero__brand img:last-child {
  width: 164px;
}

body.hbk-premium-phase1 .premium-hero h1 {
  max-width: none;
  font-size: clamp(72px, 6.7vw, 116px);
  line-height: 0.82;
  letter-spacing: 0.01em;
}

body.hbk-premium-phase1 .premium-hero h1 > span {
  display: block;
  overflow: visible;
}

body.hbk-premium-phase1 .premium-hero h1 > span > i {
  display: block;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

body.hbk-premium-phase1 .premium-hero h1 > span:nth-child(2) > i {
  color: var(--hbk-teal-bright);
}

body.hbk-premium-phase1 .premium-hero__sub {
  max-width: 580px;
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.65;
}

body.hbk-premium-phase1 .premium-hero__trust {
  grid-template-columns: repeat(4, auto);
  width: fit-content;
  max-width: 100%;
  margin-top: 28px;
  border-width: 1px 0;
  background: transparent;
}

body.hbk-premium-phase1 .premium-hero__trust span {
  min-width: 112px;
  padding: 12px 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

body.hbk-premium-phase1 .premium-hero__trust strong {
  font-size: 23px;
}

body.hbk-premium-phase1 .premium-project-wall {
  min-height: 610px;
  perspective: 1600px;
  transform-style: flat;
}

body.hbk-premium-phase1 .premium-project-wall::before {
  content: "";
  position: absolute;
  inset: 12% 6% 6% 4%;
  border: 1px solid rgba(34,184,205,0.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.035), transparent),
    rgba(8,12,15,0.46);
  box-shadow: 0 50px 140px rgba(0,0,0,0.5);
  transform: rotateY(-10deg) rotateX(5deg) translateZ(-55px);
}

body.hbk-premium-phase1 .premium-project-wall__main {
  inset: 48px 228px 24px 0;
  z-index: 1;
  border-radius: 14px;
  transform: rotateY(-8deg) rotateX(2deg) translateZ(20px);
}

body.hbk-premium-phase1 .premium-project-wall__tile {
  z-index: 3;
  border-radius: 12px;
}

body.hbk-premium-phase1 .premium-project-wall__tile--one {
  width: 31%;
  height: 28%;
  right: 0;
  top: 38px;
  transform: rotateY(-10deg) rotateZ(1.4deg) translateZ(52px);
}

body.hbk-premium-phase1 .premium-project-wall__tile--two {
  width: 31%;
  height: 28%;
  right: 0;
  top: 238px;
  bottom: auto;
  transform: rotateY(-10deg) rotateZ(-1.6deg) translateZ(60px);
}

body.hbk-premium-phase1 .premium-hero__pricing {
  left: auto;
  right: 0;
  bottom: 20px;
  z-index: 4;
  width: 31%;
  min-height: 112px;
  padding: 16px 18px;
  border-radius: 12px;
  transform: rotateY(-8deg) rotateX(3deg) translateZ(44px);
}

.premium-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--hbk-slate);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.premium-hero__scroll::before {
  content: "";
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hbk-teal-bright));
}

/* Moving proof rail */
.cinematic-proof-rail {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--hbk-rule);
  background: #080b0d;
}

.cinematic-proof-rail::before,
.cinematic-proof-rail::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 12vw;
  pointer-events: none;
  background: linear-gradient(90deg, #080b0d, transparent);
}

.cinematic-proof-rail::after {
  inset: 0 0 0 auto;
  background: linear-gradient(-90deg, #080b0d, transparent);
}

.cinematic-proof-rail__track {
  display: flex;
  width: max-content;
  animation: hbk-rail 30s linear infinite;
}

.cinematic-proof-rail__item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 0 30px;
  border-right: 1px solid var(--hbk-rule);
  color: var(--hbk-silver);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.cinematic-proof-rail__item::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid var(--hbk-teal-bright);
  transform: rotate(45deg);
}

@keyframes hbk-rail {
  to { transform: translateX(-50%); }
}

/* Shared section system */
body.hbk-premium-phase1 .premium-band,
body.hbk-premium-phase1 #brand-motion,
body.hbk-premium-phase1 #niches,
body.hbk-premium-phase1 #founder,
body.hbk-premium-phase1 #local-trust,
body.hbk-premium-phase1 #why,
body.hbk-premium-phase1 #packages,
body.hbk-premium-phase1 #process,
body.hbk-premium-phase1 #quote {
  position: relative;
  padding-top: var(--hbk-section-space);
  padding-bottom: var(--hbk-section-space);
}

body.hbk-premium-phase1 .premium-section-head {
  margin-bottom: clamp(30px, 4vw, 58px);
}

body.hbk-premium-phase1 .premium-section-head h2,
body.hbk-premium-phase1 #brand-motion h2,
body.hbk-premium-phase1 #niches h2,
body.hbk-premium-phase1 #founder h2,
body.hbk-premium-phase1 #local-trust h2,
body.hbk-premium-phase1 #why h2,
body.hbk-premium-phase1 #packages h2,
body.hbk-premium-phase1 #process h2,
body.hbk-premium-phase1 #quote h2 {
  font-size: clamp(58px, 6.4vw, 108px);
  line-height: 0.86;
  letter-spacing: 0.01em;
}

body.hbk-premium-phase1 .premium-eyebrow,
body.hbk-premium-phase1 .section-tag {
  color: var(--hbk-teal-bright);
}

/* Services */
body.hbk-premium-phase1 #services.premium-services {
  background:
    radial-gradient(circle at 12% 10%, rgba(34,184,205,0.1), transparent 28%),
    linear-gradient(180deg, #101519, #090d10);
}

body.hbk-premium-phase1 .premium-service-grid {
  gap: 14px;
  border: 0;
  background: transparent;
}

body.hbk-premium-phase1 .premium-service-grid article {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--hbk-rule);
  border-radius: 3px;
  background:
    linear-gradient(150deg, rgba(255,255,255,0.06), transparent 42%),
    linear-gradient(180deg, rgba(18,24,29,0.92), rgba(9,13,16,0.96));
  box-shadow: 0 28px 70px rgba(0,0,0,0.2);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

body.hbk-premium-phase1 .premium-service-grid article::before {
  content: "";
  position: absolute;
  inset: auto -20% -34% auto;
  width: 220px;
  aspect-ratio: 1;
  border: 1px solid rgba(34,184,205,0.12);
  transform: rotate(45deg);
  transition: transform 0.65s var(--hbk-ease-out), border-color 0.35s ease;
}

body.hbk-premium-phase1 .premium-service-grid article:hover {
  border-color: rgba(34,184,205,0.38);
  box-shadow: 0 40px 110px rgba(0,0,0,0.38);
}

body.hbk-premium-phase1 .premium-service-grid article:hover::before {
  border-color: rgba(34,184,205,0.32);
  transform: rotate(62deg) scale(1.12);
}

body.hbk-premium-phase1 .premium-service-grid article:nth-child(even) {
  margin-top: 22px;
}

body.hbk-premium-phase1 .premium-service-grid h3 {
  margin-top: 44px;
  font-size: 32px;
}

body.hbk-premium-phase1 .premium-service-grid strong {
  position: absolute;
  left: 30px;
  bottom: 28px;
}

/* Brand motion gallery */
body.hbk-premium-phase1 #brand-motion {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(198,155,60,0.035), transparent 35%),
    #06090b;
}

body.hbk-premium-phase1 .brand-motion-inner {
  width: min(1380px, calc(100vw - 64px));
  grid-template-columns: minmax(300px, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(34px, 5vw, 84px);
}

body.hbk-premium-phase1 .brand-motion-copy {
  top: 112px;
}

body.hbk-premium-phase1 .logo-concept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body.hbk-premium-phase1 .logo-concept-card {
  min-width: 0;
  border: 1px solid var(--hbk-rule);
  border-radius: 2px;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.012));
  box-shadow: 0 28px 90px rgba(0,0,0,0.28);
}

body.hbk-premium-phase1 .logo-stage {
  min-height: 290px;
}

body.hbk-premium-phase1 .concept-body {
  padding: 24px;
}

body.hbk-premium-phase1 .concept-body h3 {
  font-size: 31px;
}

/* Trade niches as moving industrial labels */
body.hbk-premium-phase1 #niches {
  width: 100%;
  max-width: none;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(34,184,205,0.09), transparent 34%),
    #0b1013;
}

body.hbk-premium-phase1 #niches > .section-tag,
body.hbk-premium-phase1 #niches > h2,
body.hbk-premium-phase1 #niches > .section-intro,
body.hbk-premium-phase1 #niches > .local-note {
  width: min(1180px, calc(100vw - 40px));
  margin-left: auto;
  margin-right: auto;
}

body.hbk-premium-phase1 #niches .section-intro {
  max-width: 700px;
}

body.hbk-premium-phase1 .niche-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  width: max-content;
  margin: 42px 0 34px;
  animation: hbk-niches 42s linear infinite;
}

body.hbk-premium-phase1 .niche-tag {
  flex: 0 0 auto;
  min-width: 220px;
  padding: 20px 24px;
  border: 1px solid var(--hbk-rule);
  border-radius: 0;
  background: rgba(255,255,255,0.025);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

body.hbk-premium-phase1 .niche-tag:nth-child(3n+2) {
  color: var(--hbk-teal-bright);
}

@keyframes hbk-niches {
  to { transform: translateX(-50%); }
}

body.hbk-premium-phase1 .local-note {
  max-width: 900px;
  padding: 20px 26px;
  border-left: 1px solid var(--hbk-teal-bright);
  background: linear-gradient(90deg, rgba(34,184,205,0.07), transparent);
  text-align: left;
}

/* Selected work */
body.hbk-premium-phase1 #proof.premium-work {
  background:
    radial-gradient(circle at 86% 4%, rgba(198,155,60,0.09), transparent 24%),
    linear-gradient(180deg, #080b0d, #101519);
}

body.hbk-premium-phase1 .proof-video-copy {
  align-items: end;
}

body.hbk-premium-phase1 .proof-reel-card {
  width: min(340px, 92%);
  border-radius: 8px;
  transform: translateX(20px) rotate(2.2deg);
  box-shadow: 0 30px 100px rgba(0,0,0,0.5);
}

body.hbk-premium-phase1 .premium-work-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(350px, 0.55fr);
  gap: 16px;
}

body.hbk-premium-phase1 .premium-work-feature {
  min-height: 650px;
  border-radius: 2px;
}

body.hbk-premium-phase1 .premium-work-feature img {
  transform: translateY(var(--image-shift, 0)) scale(1.05);
  transition: transform 0.55s var(--hbk-ease-out), opacity 0.35s ease;
}

body.hbk-premium-phase1 .premium-work-feature:hover img {
  opacity: 0.98;
  transform: translateY(var(--image-shift, 0)) scale(1.085);
}

body.hbk-premium-phase1 .premium-work-feature div {
  left: 0;
  right: auto;
  bottom: 0;
  width: min(640px, 82%);
  max-width: none;
  padding: 30px;
  border-width: 1px 1px 0 0;
  background: rgba(5,7,8,0.9);
  backdrop-filter: blur(16px);
}

body.hbk-premium-phase1 .premium-work-feature strong {
  font-size: clamp(50px, 5vw, 82px);
}

body.hbk-premium-phase1 .premium-proof-list {
  gap: 12px;
  border: 0;
  background: transparent;
}

body.hbk-premium-phase1 .premium-proof-list a {
  position: relative;
  min-height: 202px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--hbk-rule);
  background: #080b0d;
}

body.hbk-premium-phase1 .premium-proof-list img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0.48;
  transform: translateY(var(--image-shift, 0)) scale(1.08);
  transition: transform 0.55s var(--hbk-ease-out), opacity 0.35s ease;
}

body.hbk-premium-phase1 .premium-proof-list a:hover img {
  opacity: 0.72;
  transform: translateY(var(--image-shift, 0)) scale(1.13);
}

body.hbk-premium-phase1 .premium-proof-list a > div {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 22px;
  background: linear-gradient(180deg, transparent, rgba(5,7,8,0.96));
}

body.hbk-premium-phase1 .premium-proof-list strong {
  font-size: 34px;
}

/* Founder, trust, why */
body.hbk-premium-phase1 #founder,
body.hbk-premium-phase1 #local-trust,
body.hbk-premium-phase1 #why,
body.hbk-premium-phase1 #packages,
body.hbk-premium-phase1 #process,
body.hbk-premium-phase1 #quote {
  width: min(1240px, calc(100vw - 64px));
  max-width: none;
  margin-inline: auto;
}

body.hbk-premium-phase1 .founder-card {
  overflow: hidden;
  border: 1px solid var(--hbk-rule);
  border-radius: 2px;
  background:
    radial-gradient(circle at 12% 20%, rgba(34,184,205,0.12), transparent 30%),
    linear-gradient(135deg, #11171b, #080b0d);
  box-shadow: 0 38px 110px rgba(0,0,0,0.3);
}

body.hbk-premium-phase1 .founder-badge {
  position: relative;
  overflow: hidden;
}

body.hbk-premium-phase1 .founder-badge::before {
  content: "";
  position: absolute;
  inset: -24% -44% auto auto;
  width: 260px;
  aspect-ratio: 1;
  border: 1px solid rgba(34,184,205,0.2);
  transform: rotate(45deg);
}

body.hbk-premium-phase1 .trust-grid {
  gap: 12px;
}

body.hbk-premium-phase1 .trust-card {
  min-height: 250px;
  border: 1px solid var(--hbk-rule);
  border-radius: 2px;
  background: linear-gradient(150deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
}

body.hbk-premium-phase1 .why-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  gap: 16px;
}

body.hbk-premium-phase1 .why-points {
  gap: 10px;
}

body.hbk-premium-phase1 .why-point {
  border: 1px solid var(--hbk-rule);
  background: rgba(255,255,255,0.018);
}

body.hbk-premium-phase1 .why-visual {
  min-height: 620px;
  border: 1px solid var(--hbk-rule);
  background:
    linear-gradient(145deg, transparent 20%, rgba(34,184,205,0.08)),
    radial-gradient(circle at 70% 22%, rgba(34,184,205,0.16), transparent 30%),
    #090d10;
}

/* Pricing */
.pricing-detail {
  border: 1px solid var(--hbk-rule);
  background: rgba(255,255,255,0.018);
}

.pricing-detail > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 18px 22px;
  cursor: pointer;
  color: var(--hbk-ivory);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  list-style: none;
}

.pricing-detail > summary::-webkit-details-marker {
  display: none;
}

.pricing-detail > summary::after {
  content: "+";
  color: var(--hbk-teal-bright);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  transition: transform 0.3s ease;
}

.pricing-detail[open] > summary::after {
  transform: rotate(45deg);
}

.pricing-detail .packages-table {
  margin-top: 0;
  border-inline: 0;
}

.pricing-detail .packages-note-grid,
.pricing-detail .quote-micro {
  margin-left: 22px;
  margin-right: 22px;
}

.pricing-detail .quote-micro {
  margin-bottom: 22px;
}

body.hbk-premium-phase1 .premium-pricing-lead {
  gap: 12px;
  border: 0;
  background: transparent;
}

body.hbk-premium-phase1 .premium-pricing-lead div {
  min-height: 154px;
  border: 1px solid var(--hbk-rule);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.045), transparent),
    #0b1013;
}

/* Process */
body.hbk-premium-phase1 .process-steps {
  gap: 12px;
}

body.hbk-premium-phase1 .process-step {
  min-height: 360px;
  border: 1px solid var(--hbk-rule);
  border-radius: 2px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.045), transparent),
    #0a0e11;
  transform: none;
}

body.hbk-premium-phase1 .process-step:hover {
  border-color: rgba(34,184,205,0.38);
  transform: translateY(-8px);
}

/* Final CTA */
body.hbk-premium-phase1 #quote {
  width: min(1380px, calc(100vw - 32px));
  margin-bottom: 28px;
  padding-left: clamp(24px, 5vw, 70px);
  padding-right: clamp(24px, 5vw, 70px);
  border: 1px solid var(--hbk-rule);
  background:
    linear-gradient(110deg, rgba(34,184,205,0.12), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(198,155,60,0.08), transparent 28%),
    #0c1114;
  box-shadow: 0 40px 130px rgba(0,0,0,0.36);
}

body.hbk-premium-phase1 .quote-info,
body.hbk-premium-phase1 .quote-app-card {
  border-radius: 2px;
}

body.hbk-premium-phase1 footer {
  border-top: 0;
  background: #050708;
}

/* Case-study hub */
body.hbk-premium-phase1 .premium-case-hero {
  min-height: min(820px, 100svh);
  display: grid;
  align-items: center;
  padding-top: 132px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--hbk-rule);
  background:
    radial-gradient(circle at 78% 30%, rgba(34,184,205,0.14), transparent 26%),
    linear-gradient(110deg, rgba(255,255,255,0.02), transparent 40%);
}

body.hbk-premium-phase1 .premium-case-hero h1 {
  max-width: none;
  font-size: clamp(72px, 7vw, 112px);
  line-height: 0.82;
}

body.hbk-premium-phase1 .premium-case-stats {
  gap: 1px;
  border: 0;
  background: var(--hbk-rule);
  transform: perspective(1000px) rotateY(-6deg);
  box-shadow: 0 38px 100px rgba(0,0,0,0.34);
  align-self: center;
}

body.hbk-premium-phase1 .premium-case-stats div {
  border: 0;
  background: #0d1215;
}

body.hbk-premium-phase1 .premium-case-grid {
  gap: 16px;
}

body.hbk-premium-phase1 .premium-case-card {
  overflow: hidden;
  border-color: var(--hbk-rule);
  border-radius: 2px;
  background: #0a0e11;
  box-shadow: 0 28px 90px rgba(0,0,0,0.24);
}

body.hbk-premium-phase1 .premium-case-media img {
  transform: translateY(var(--image-shift, 0)) scale(1.045);
}

body.hbk-premium-phase1 .premium-case-card:hover .premium-case-media img {
  transform: translateY(var(--image-shift, 0)) scale(1.09);
}

/* Secondary pages */
body.hbk-premium-secondary .page,
body.hbk-premium-secondary .wrap {
  width: min(1320px, calc(100vw - 64px));
}

body.hbk-premium-secondary .page,
body.hbk-premium-case-detail main.wrap {
  padding-top: 148px;
}

body.hbk-premium-secondary .hero,
body.hbk-premium-secondary .hero-grid {
  min-height: min(680px, calc(100svh - 148px));
  align-items: center;
  padding-bottom: 56px;
}

body.hbk-premium-secondary .hero::after,
body.hbk-premium-secondary .hero-grid::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, var(--hbk-teal-bright), transparent 48%);
}

body.hbk-premium-secondary h1 {
  max-width: none;
  font-size: clamp(64px, 6.5vw, 106px);
  line-height: 0.82;
}

body.hbk-premium-secondary h2 {
  font-size: clamp(52px, 5.6vw, 94px);
}

body.hbk-premium-secondary .hero-card,
body.hbk-premium-secondary .card,
body.hbk-premium-secondary .panel,
body.hbk-premium-secondary .section-card,
body.hbk-premium-secondary .metric,
body.hbk-premium-secondary .stack-card,
body.hbk-premium-secondary .service-card,
body.hbk-premium-secondary .case-preview,
body.hbk-premium-secondary .screenshot-frame,
body.hbk-premium-secondary .proof-card,
body.hbk-premium-secondary .case-media {
  border-radius: 2px;
  border-color: var(--hbk-rule);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.045), transparent 46%),
    rgba(10,14,18,0.94);
}

body.hbk-premium-secondary .card,
body.hbk-premium-secondary .panel,
body.hbk-premium-secondary .section-card,
body.hbk-premium-secondary .metric,
body.hbk-premium-secondary .stack-card,
body.hbk-premium-secondary .service-card {
  transition: transform 0.4s var(--hbk-ease-out), border-color 0.35s ease, box-shadow 0.35s ease;
}

body.hbk-premium-secondary .card:hover,
body.hbk-premium-secondary .panel:hover,
body.hbk-premium-secondary .section-card:hover,
body.hbk-premium-secondary .metric:hover,
body.hbk-premium-secondary .stack-card:hover,
body.hbk-premium-secondary .service-card:hover {
  z-index: 2;
  border-color: rgba(34,184,205,0.34);
  box-shadow: 0 36px 110px rgba(0,0,0,0.42);
  transform: translateY(-6px);
}

/* Motion-ready states */
.cinematic-reveal {
  opacity: 0;
  transform: translateY(36px);
}

.cinematic-reveal[data-reveal="left"] {
  transform: translateX(-42px);
}

.cinematic-reveal[data-reveal="right"] {
  transform: translateX(42px);
}

.cinematic-image {
  will-change: transform;
}

[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
}

[data-magnetic] {
  will-change: transform;
}

@media (max-width: 1120px) {
  body.hbk-premium-phase1 .premium-hero__inner {
    grid-template-columns: minmax(360px, 0.9fr) minmax(440px, 1.1fr);
    gap: 34px;
  }

  body.hbk-premium-phase1 .premium-project-wall__main {
    right: 92px;
  }

  body.hbk-premium-phase1 .logo-concept-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  :root {
    --hbk-section-space: 72px;
  }

  body.hbk-premium-phase1 nav {
    top: 10px;
    width: calc(100vw - 20px);
    padding: 0 10px 0 14px;
  }

  body.hbk-premium-phase1 .nav-menu {
    top: 72px;
    right: 0;
    left: auto;
    width: min(360px, calc(100vw - 20px));
    border: 1px solid var(--hbk-rule);
    border-radius: 18px;
    background: rgba(5,7,8,0.98);
    box-shadow: 0 28px 90px rgba(0,0,0,0.55);
  }

  body.hbk-premium-phase1 .premium-hero {
    min-height: auto;
    padding: 104px 20px 40px;
  }

  body.hbk-premium-phase1 .premium-hero__inner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body.hbk-premium-phase1 .premium-hero h1 {
    max-width: none;
    font-size: clamp(58px, 15.5vw, 86px);
  }

  body.hbk-premium-phase1 .premium-hero__trust {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  body.hbk-premium-phase1 .premium-project-wall {
    display: block !important;
    min-height: 360px;
  }

  body.hbk-premium-phase1 .premium-project-wall::before {
    inset: 10px 16px 48px 24px;
    transform: rotate(-1deg);
  }

  body.hbk-premium-phase1 .premium-project-wall__main {
    inset: 0 40px 78px 0;
    transform: rotate(-1.5deg);
  }

  body.hbk-premium-phase1 .premium-project-wall__tile--one {
    display: block;
    width: 44%;
    height: 35%;
    top: 24px;
    right: 0;
    transform: rotate(3deg);
  }

  body.hbk-premium-phase1 .premium-project-wall__tile--two {
    display: none;
  }

  body.hbk-premium-phase1 .premium-hero__pricing {
    left: 22px;
    right: 18px;
    bottom: 0;
    width: auto;
    min-height: 92px;
    transform: rotate(1deg);
  }

  .premium-hero__scroll {
    display: none;
  }

  body.hbk-premium-phase1 .premium-service-grid {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding: 0 20px 12px;
    margin-inline: -20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  body.hbk-premium-phase1 .premium-service-grid::-webkit-scrollbar,
  body.hbk-premium-phase1 .logo-concept-grid::-webkit-scrollbar,
  body.hbk-premium-phase1 .trust-grid::-webkit-scrollbar,
  body.hbk-premium-phase1 .why-points::-webkit-scrollbar,
  body.hbk-premium-phase1 .process-steps::-webkit-scrollbar,
  body.hbk-premium-phase1 .premium-proof-list::-webkit-scrollbar {
    display: none;
  }

  body.hbk-premium-phase1 .premium-service-grid article {
    flex: 0 0 min(82vw, 360px);
    min-height: 340px;
    margin-top: 0;
    scroll-snap-align: start;
  }

  body.hbk-premium-phase1 .brand-motion-inner {
    width: calc(100vw - 40px);
    grid-template-columns: 1fr;
  }

  body.hbk-premium-phase1 .brand-motion-copy {
    position: static;
  }

  body.hbk-premium-phase1 .logo-concept-grid {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  body.hbk-premium-phase1 .logo-concept-card {
    flex: 0 0 min(84vw, 390px);
    scroll-snap-align: center;
  }

  body.hbk-premium-phase1 .logo-stage {
    min-height: 270px;
  }

  body.hbk-premium-phase1 .motion-points {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  body.hbk-premium-phase1 .motion-points::-webkit-scrollbar {
    display: none;
  }

  body.hbk-premium-phase1 .motion-point {
    flex: 0 0 min(78vw, 330px);
    min-height: 180px;
    padding: 18px;
    border: 1px solid var(--hbk-rule);
    background: rgba(255,255,255,0.02);
    scroll-snap-align: start;
  }

  body.hbk-premium-phase1 .niche-list {
    animation-duration: 30s;
  }

  body.hbk-premium-phase1 .premium-work-grid {
    grid-template-columns: 1fr;
  }

  body.hbk-premium-phase1 .premium-work-feature {
    min-height: 520px;
  }

  body.hbk-premium-phase1 .premium-proof-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  body.hbk-premium-phase1 .premium-proof-list a {
    flex: 0 0 min(78vw, 330px);
    min-height: 240px;
    scroll-snap-align: start;
  }

  body.hbk-premium-phase1 #founder,
  body.hbk-premium-phase1 #local-trust,
  body.hbk-premium-phase1 #why,
  body.hbk-premium-phase1 #packages,
  body.hbk-premium-phase1 #process {
    width: calc(100vw - 40px);
  }

  body.hbk-premium-phase1 .trust-grid,
  body.hbk-premium-phase1 .why-points,
  body.hbk-premium-phase1 .process-steps {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  body.hbk-premium-phase1 .why-points {
    flex-direction: row;
  }

  body.hbk-premium-phase1 .trust-card,
  body.hbk-premium-phase1 .why-point,
  body.hbk-premium-phase1 .process-step {
    flex: 0 0 min(82vw, 360px);
    scroll-snap-align: start;
  }

  body.hbk-premium-phase1 .why-grid {
    grid-template-columns: 1fr;
  }

  body.hbk-premium-phase1 .why-visual {
    min-height: 460px;
  }

  body.hbk-premium-phase1 .process-step {
    min-height: 320px;
  }

  body.hbk-premium-phase1 .premium-pricing-lead {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  body.hbk-premium-phase1 .premium-pricing-lead::-webkit-scrollbar {
    display: none;
  }

  body.hbk-premium-phase1 .premium-pricing-lead div {
    flex: 0 0 min(82vw, 360px);
    scroll-snap-align: start;
  }

  body.hbk-premium-phase1 #quote {
    width: calc(100vw - 20px);
  }

  body.hbk-premium-phase1 .premium-case-hero {
    min-height: auto;
    padding-top: 126px;
  }

  body.hbk-premium-phase1 .premium-case-stats {
    transform: none;
  }

  body.hbk-premium-secondary .page,
  body.hbk-premium-secondary .wrap {
    width: calc(100vw - 40px);
  }

  body.hbk-premium-secondary .hero,
  body.hbk-premium-secondary .hero-grid {
    min-height: auto;
    padding-bottom: 48px;
  }

  .cinematic-reveal[data-reveal="left"],
  .cinematic-reveal[data-reveal="right"] {
    transform: translateY(28px);
  }
}

@media (max-width: 620px) {
  body.hbk-premium-phase1::after {
    display: none;
  }

  body.hbk-premium-phase1 .nav-logo .nav-wordmark {
    height: 22px;
  }

  body.hbk-premium-phase1 .premium-hero__brand {
    margin-bottom: 16px;
  }

  body.hbk-premium-phase1 .premium-hero__brand img:first-child {
    width: 48px;
    height: 48px;
  }

  body.hbk-premium-phase1 .premium-hero__brand img:last-child {
    width: 136px;
  }

  body.hbk-premium-phase1 .premium-hero h1 {
    font-size: clamp(54px, 16vw, 72px);
  }

  body.hbk-premium-phase1 .premium-hero__sub {
    margin-top: 18px;
    font-size: 15px;
  }

  body.hbk-premium-phase1 .premium-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  body.hbk-premium-phase1 .premium-actions .btn-primary,
  body.hbk-premium-phase1 .premium-actions .btn-outline {
    width: 100%;
    min-height: 50px;
    padding: 13px 14px;
    font-size: 11px;
    letter-spacing: 1.8px;
  }

  body.hbk-premium-phase1 .premium-hero__trust span {
    min-width: 0;
    padding: 11px 8px;
    font-size: 9px;
  }

  body.hbk-premium-phase1 .premium-hero__trust strong {
    font-size: 20px;
  }

  body.hbk-premium-phase1 .premium-project-wall {
    min-height: 300px;
  }

  body.hbk-premium-phase1 .premium-project-wall__main {
    inset: 0 26px 64px 0;
  }

  body.hbk-premium-phase1 .premium-project-wall__main div {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
  }

  body.hbk-premium-phase1 .premium-project-wall strong {
    font-size: 26px;
  }

  body.hbk-premium-phase1 .premium-project-wall__tile--one {
    width: 43%;
    height: 31%;
  }

  body.hbk-premium-phase1 .premium-hero__pricing {
    left: 12px;
    right: 10px;
    min-height: 76px;
    padding: 12px 14px;
  }

  body.hbk-premium-phase1 .premium-hero__pricing strong {
    font-size: 27px;
  }

  body.hbk-premium-phase1 .premium-hero__pricing span {
    display: none;
  }

  .cinematic-proof-rail__item {
    min-height: 56px;
    padding: 0 20px;
    font-size: 10px;
  }

  body.hbk-premium-phase1 .premium-section-head h2,
  body.hbk-premium-phase1 #brand-motion h2,
  body.hbk-premium-phase1 #niches h2,
  body.hbk-premium-phase1 #founder h2,
  body.hbk-premium-phase1 #local-trust h2,
  body.hbk-premium-phase1 #why h2,
  body.hbk-premium-phase1 #packages h2,
  body.hbk-premium-phase1 #process h2,
  body.hbk-premium-phase1 #quote h2 {
    font-size: clamp(48px, 14vw, 68px);
  }

  body.hbk-premium-phase1 .proof-reel-card {
    width: min(250px, 76vw);
    transform: rotate(1.2deg);
  }

  body.hbk-premium-phase1 .proof-video-copy {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
  }

  body.hbk-premium-phase1 .proof-video-copy .proof-reel-card {
    width: 150px;
  }

  body.hbk-premium-phase1 .proof-video-copy .premium-copy {
    font-size: 13px;
    line-height: 1.55;
  }

  body.hbk-premium-phase1 .premium-work-feature {
    min-height: 430px;
  }

  body.hbk-premium-phase1 .premium-work-feature div {
    width: 92%;
    padding: 20px;
  }

  body.hbk-premium-phase1 .premium-work-feature strong {
    font-size: 42px;
  }

  body.hbk-premium-phase1 .why-visual {
    min-height: 400px;
  }

  body.hbk-premium-phase1 #quote {
    padding-left: 18px;
    padding-right: 18px;
  }

  body.hbk-premium-phase1 .quote-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  body.hbk-premium-phase1 .quote-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 14px;
  }

  body.hbk-premium-phase1 .quote-info h3,
  body.hbk-premium-phase1 .quote-info > p {
    grid-column: 1 / -1;
  }

  body.hbk-premium-phase1 .quote-info > p {
    margin-bottom: 18px;
  }

  body.hbk-premium-phase1 .contact-item {
    min-width: 0;
    padding: 12px 0;
  }

  body.hbk-premium-phase1 .quote-points {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  body.hbk-premium-phase1 .quote-points::-webkit-scrollbar {
    display: none;
  }

  body.hbk-premium-phase1 .quote-point {
    flex: 0 0 min(72vw, 270px);
    min-height: 118px;
    scroll-snap-align: start;
  }

  body.hbk-premium-phase1 .quote-app-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  body.hbk-premium-phase1 .quote-app-actions .btn-primary,
  body.hbk-premium-phase1 .quote-app-actions .btn-outline {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .pricing-detail .packages-table {
    font-size: 13px;
  }

  body.hbk-premium-secondary h1 {
    font-size: clamp(46px, 13vw, 62px);
    line-height: 0.84;
  }

  body.hbk-premium-phase1 .premium-case-hero h1 {
    font-size: clamp(58px, 16vw, 82px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hbk-page-curtain {
    display: none;
  }

  .cinematic-proof-rail__track,
  body.hbk-premium-phase1 .niche-list {
    animation: none;
  }

  .cinematic-reveal {
    opacity: 1;
    transform: none;
  }

  [data-tilt],
  [data-magnetic],
  .cinematic-image,
  body.hbk-premium-phase1 .premium-work-feature img,
  body.hbk-premium-phase1 .premium-proof-list img,
  body.hbk-premium-phase1 .premium-case-media img {
    transform: none !important;
  }
}
