* { box-sizing: border-box; }
html, body { margin: 0; width: 100%; background: #fff; color: #000; }
body { font-family: 'Inter', Arial, sans-serif; }
.hero p, .hero h1 { margin: 0; }
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 500px;
  overflow: clip;
  background:#fdfdfd;
}
.hero-background { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.navigation { position: absolute; top: 0; left: 0; width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 16px 28px; font-family: 'Inter Display', Arial, sans-serif; letter-spacing: -.04em; }
.adaptive-text,
.blended-text {
  color: #fff;
  mix-blend-mode: difference;
}
.role-btn .adaptive-text {
  color: #111 !important;
  mix-blend-mode: normal !important;
}
.book-call .adaptive-text {
  color: #fff !important;
  mix-blend-mode: normal !important;
}
.brand { font-size: 20px; line-height: 1; font-weight: 700; white-space: nowrap; }
.time { display: flex; align-items: center; gap: 10px; font-size: 14px; line-height: 1; font-weight: 500; letter-spacing: -.02em; white-space: nowrap; font-variant-numeric: tabular-nums; }
.time-zone { display: inline-flex; align-items: baseline; gap: 5px; }
.time-zone strong { font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.time-divider { opacity: .55; }
.main-links { display: flex; align-items: center; gap: 12px; font-size: 15px; line-height: 1; font-weight: 600; white-space: nowrap; }
.main-links a { color: inherit; text-decoration: none; }
.main-links a:focus-visible { outline: 2px solid currentColor; outline-offset: 6px; }
.separator { font-family: 'Saira Condensed', Arial, sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0; }
.book-call { position: relative; display: inline-flex; align-items: center; gap: 10px; padding: 12px 16px 12px 20px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; overflow: hidden; background: rgba(8, 10, 14, .94); box-shadow: 0 8px 24px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.12); font-size: 13px; font-weight: 600; line-height: 1; white-space: nowrap; }
.book-call__label { display: inline-block; }
.book-call__arrow { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.13); color: #fff; font-size: 13px; transition: transform .28s cubic-bezier(.2,.8,.2,1), background-color .28s ease; }
.book-call:hover .book-call__arrow { transform: translate(2px,-2px); background: rgba(255,255,255,.22); }
.role-buttons { position: absolute; z-index: 2; inset: 0; pointer-events: none; }
.role-btn { position: absolute; pointer-events: auto; display: flex; align-items: center; justify-content: space-between; width: 224px; min-height: 62px; padding: 11px 12px 11px 21px; border: 1px solid rgba(15, 23, 42, .34); border-radius: 999px; overflow: hidden; background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(245,247,250,.72)); box-shadow: 0 14px 36px rgba(15,23,42,.09), inset 0 1px 0 rgba(255,255,255,.92); backdrop-filter: blur(14px) saturate(120%); -webkit-backdrop-filter: blur(14px) saturate(120%); font-family: 'Inter', Arial, sans-serif; font-size: 12px; font-weight: 600; line-height: 1.32; letter-spacing: -.015em; text-align: left; text-transform: uppercase; cursor: pointer; isolation: isolate; transition: opacity .25s ease, transform .32s cubic-bezier(.2,.8,.2,1), border-color .25s ease, box-shadow .32s ease; }
.role-btn::before { content: ""; position: absolute; z-index: 0; top: -80%; bottom: -80%; left: -35%; width: 34%; transform: translateX(-250%) rotate(18deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.88), transparent); opacity: .72; animation: role-sheen 5.8s ease-in-out infinite; pointer-events: none; }
.role-btn__label { position: relative; z-index: 1; display: block; }
.role-btn__arrow { position: relative; z-index: 1; flex: 0 0 auto; display: grid; place-items: center; width: 31px; height: 31px; margin-left: 12px; border-radius: 50%; background: #0b0e13; color: #fff; font-size: 14px; box-shadow: 0 4px 12px rgba(0,0,0,.14); transition: transform .32s cubic-bezier(.2,.8,.2,1), background-color .25s ease; }
.role-btn:hover { transform: translateY(-4px) scale(1.015); border-color: rgba(15,23,42,.62); box-shadow: 0 18px 42px rgba(15,23,42,.16), inset 0 1px 0 rgba(255,255,255,.98); }
.role-btn:hover .role-btn__arrow { transform: translate(2px,-2px) rotate(6deg); }
.role-btn:focus-visible { outline: 2px solid #111; outline-offset: 5px; }
.role-btn[disabled] { opacity: .38; pointer-events: none; cursor: default; transform: none; }

.hero-coffee-line {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: clamp(96px, 14vh, 156px);
  max-width: min(88vw, 360px);
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  background: rgba(15,23,42,.76);
  box-shadow: 0 12px 34px rgba(15,23,42,.18);
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .24s cubic-bezier(.2,.8,.2,1);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
}
.hero-coffee-line.is-visible { opacity: 1; transform: translate(-50%, 0); }
@media (hover: none), (pointer: coarse) { .hero-coffee-line { display: none; } }
.role-btn--va { left: 12%; top: 25%; }
.role-btn--coder { left: 13.5%; top: 41%; }
.role-btn--engineer { right: 13%; top: 25%; }
.role-btn--myself { right: 13.5%; top: 41%; }
@keyframes role-sheen { 0%, 62% { transform: translateX(-250%) rotate(18deg); } 78%, 100% { transform: translateX(520%) rotate(18deg); } }
.hero-intro { position: absolute; bottom: 0; left: 0; width: 100%; display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; padding: 22px 28px; }
.hero h1 { font-family: 'Inter Display', Arial, sans-serif; font-size: 88px; font-weight: 700; line-height: .92; letter-spacing: -.045em; white-space: nowrap; }
.description { flex: 0 0 340px; width: 340px; font-size: 16px; font-weight: 500; line-height: 1.24; letter-spacing: -.015em; }
.loader { display: none; position: fixed; inset: 0; z-index: 10; overflow: clip; pointer-events: none; }
.has-js .loader { display: block; }
.loader-mask { position: absolute; left: -10%; top: 0; width: 120%; height: 100%; background: #fdfdfd; display: flex; align-items: center; justify-content: center; overflow: clip; border-radius: 0; }
.loader-content { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: space-between; flex: .83 0 0; height: 100%; padding: 12px; overflow: clip; background: #fdfdfd; }
.loader-spacer { width: 100%; height: 151px; flex: 0 0 151px; }
.loader-video { display: block; width: 319px; height: 222px; flex: 0 0 222px; object-fit: cover; object-position: center; }
.counter-row { width: 100%; display: flex; align-items: center; justify-content: flex-end; }
.counter { display: flex; align-items: baseline; font-family: 'Inter Display', Arial, sans-serif; font-size: 200px; font-weight: 300; line-height: .8; letter-spacing: -.06em; }
.percent { font-family: 'Inter', Arial, sans-serif; font-size: 48px; font-weight: 300; line-height: .8; letter-spacing: -.06em; }
.loader.is-exiting .loader-mask { animation: curtain-exit 1.25s cubic-bezier(.76,0,.24,1) forwards; }
.loader.is-complete { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@keyframes curtain-exit { from { transform: translateY(0); border-radius: 0; } to { transform: translateY(calc(-100% - 8px)); border-radius: 50%; } }
/* The supplied captures contain desktop geometry only. Keep that geometry
   unchanged above, and fit the same content to narrower screens below. */
@media (max-width: 900px) {
  .navigation { padding: 16px 20px; }
  .hero-intro { padding: 22px 20px; }
  .hero h1 { font-size: clamp(44px, 7vw, 72px); }
  .description { flex-basis: 270px; width: 270px; }
}
@media (max-width: 640px) {
  .hero { min-height: 660px; }
  .role-buttons { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 96px 20px 0; }
  .role-btn, .role-btn--va, .role-btn--coder, .role-btn--engineer, .role-btn--myself { position: static; width: 100%; min-height: 58px; font-size: 10px; padding: 10px 10px 10px 14px; }
  .role-btn__arrow { width: 27px; height: 27px; margin-left: 8px; }
  .navigation { flex-wrap: wrap; row-gap: 16px; padding: 18px 20px; }
  .brand { flex-basis: auto; }
  .time { order: 3; width: 100%; justify-content: center; gap: 8px; font-size: 12px; }
  .time-zone strong { font-size: 9px; }
  .main-links { font-size: 13px; gap: 8px; }
  .book-call { padding: 10px 12px 10px 15px; font-size: 11px; }
  .hero-intro { flex-direction: column; align-items: flex-start; gap: 24px; padding: 24px 20px; }
  .hero h1 { font-size: clamp(38px, 11.8vw, 70px); }
  .description { flex-basis: auto; width: min(317px, 100%); }
  .loader-spacer { height: 100px; flex-basis: 100px; }
  .loader-video { width: min(319px, 85vw); height: auto; aspect-ratio: 319 / 222; flex-basis: auto; }
  .counter { font-size: clamp(120px, 35vw, 200px); }
  .percent { font-size: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  .loader.is-exiting .loader-mask { animation: none; transform: translateY(-110%); }
  .role-btn::before { animation: none; display: none; }
  .role-btn, .role-btn__arrow, .book-call__arrow { transition: none; }
}


/* Hero blend-mode compositing fix.
   The free-floating copy must blend directly with the canvas backdrop, not a
   nested z-index stacking context. */
.hero > .navigation,
.hero > .hero-intro{
  z-index:auto!important;
  isolation:auto!important;
}
.hero > .navigation > .adaptive-text,
.hero > .hero-intro > :is(.blended-text,.adaptive-text){
  position:relative;
  z-index:1;
  mix-blend-mode:difference!important;
  color:#fff!important;
  isolation:auto!important;
}
.hero > .navigation .book-call{
  position:relative;
  z-index:3;
  mix-blend-mode:normal!important;
}


/* The Hero itself is the curtain. It only leaves normal flow for the 1.25s
   transition; the dashboard is already behind it while the animation runs. */
.hero.hero-curtain--fixed{
  position:fixed!important;
  inset:0!important;
  z-index:1000000!important;
  width:100%!important;
  height:100vh!important;
  height:100svh!important;
  margin:0!important;
  transform:translate3d(0,0,0);
  border-radius:0;
  pointer-events:auto;
  will-change:transform,border-radius;
}
.hero.hero-curtain--exiting{
  pointer-events:none!important;
  animation:hero-curtain-exit 1.25s cubic-bezier(.76,0,.24,1) forwards!important;
}
.hero.hero-curtain--above{
  transform:translate3d(0,calc(-100% - 10px),0);
  border-radius:0 0 50% 50% / 0 0 22% 22%;
  pointer-events:none!important;
}
.hero.hero-curtain--entering{
  pointer-events:none!important;
  animation:hero-curtain-enter 1.25s cubic-bezier(.76,0,.24,1) forwards!important;
}
@keyframes hero-curtain-exit{
  from{
    transform:translate3d(0,0,0);
    border-radius:0;
  }
  to{
    transform:translate3d(0,calc(-100% - 10px),0);
    border-radius:0 0 50% 50% / 0 0 22% 22%;
  }
}
@keyframes hero-curtain-enter{
  from{
    transform:translate3d(0,calc(-100% - 10px),0);
    border-radius:0 0 50% 50% / 0 0 22% 22%;
  }
  to{
    transform:translate3d(0,0,0);
    border-radius:0;
  }
}
@media (prefers-reduced-motion: reduce){
  .hero.hero-curtain--exiting,
  .hero.hero-curtain--entering{
    animation-duration:.01ms!important;
  }
}


/* Hero hardening: while the real Hero is crossing the viewport, freeze user
   scrolling so wheel/touch/keyboard bursts cannot corrupt transition state. */
html.hero-curtain-transition,
body.hero-curtain-transition{
  overflow:hidden!important;
  overscroll-behavior:none!important;
}
.hero.hero-curtain--fixed{
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
}
