:root {
  --ink: #131519;
  --ink2: #0e1013;
  --panel: #1b1e25;
  --panel2: #22262f;
  --line: rgba(255, 255, 255, 0.09);
  --line2: rgba(255, 255, 255, 0.16);
  --white: #f6f7f9;
  --steel: #96a0b0;
  --steel-dim: #6b7482;
  --orange: #f15a22;
  --orange-hi: #ff7238;
  --red: #e4322b;
  --led: #ff3b2f;
  --stripe: repeating-linear-gradient(
    -45deg,
    #f15a22 0 16px,
    #15171b 16px 32px
  );
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--ink);
  color: var(--white);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,
h2,
h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
.eyebrow {
  font-family: "Oswald";
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 13px;
  color: var(--orange);
}
a:focus-visible,
button:focus-visible {
  outline: 2.5px solid var(--orange-hi);
  outline-offset: 3px;
  border-radius: 6px;
}

.dot.closed {
  background: #6b7482;
  animation: none;
  box-shadow: none;
}

/* utility bar */
.util {
  background: var(--ink2);
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.util .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  color: var(--steel);
}
.util .live {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #33d17a;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(51, 209, 122, 0.55);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(51, 209, 122, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(51, 209, 122, 0);
  }
}
.util b {
  color: var(--white);
  font-weight: 700;
}

/* header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(19, 21, 25, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Oswald";
  font-weight: 700;
  font-size: 23px;
  letter-spacing: 0.02em;
}
.logo .mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--orange);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  box-shadow: 0 6px 18px rgba(241, 90, 34, 0.35);
}
.logo .mark svg {
  width: 22px;
  height: 22px;
}
.logo span {
  color: var(--orange);
}
nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
nav a {
  font-family: "Oswald";
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14.5px;
  color: var(--steel);
  transition: color 0.2s;
}
nav a:hover {
  color: var(--white);
}
.callbtn {
  font-family: "Oswald";
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--orange);
  color: #fff;
  padding: 11px 20px;
  border-radius: 9px;
  font-size: 15px;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  transition:
    transform 0.15s,
    background 0.2s;
}
.callbtn:hover {
  background: var(--orange-hi);
  transform: translateY(-1px);
}
.callbtn svg {
  width: 16px;
  height: 16px;
}
.menuBtn {
  display: none;
  background: none;
  border: 1px solid var(--line2);
  border-radius: 8px;
  width: 44px;
  height: 40px;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}

/* drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(10, 11, 13, 0.97);
  backdrop-filter: blur(6px);
  display: none;
  flex-direction: column;
  padding: 26px 28px;
  gap: 6px;
}
.drawer.open {
  display: flex;
}
.drawer .x {
  align-self: flex-end;
  background: none;
  border: 1px solid var(--line2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 22px;
  cursor: pointer;
}
.drawer a {
  font-family: "Oswald";
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 26px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.drawer .callbtn {
  margin-top: 18px;
  justify-content: center;
  font-size: 18px;
  padding: 16px;
}

/* HERO — split composition */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      900px 500px at 12% -10%,
      rgba(241, 90, 34, 0.16),
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 110% 120%,
      rgba(228, 50, 43, 0.1),
      transparent 60%
    ),
    var(--ink);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 52px;
  align-items: center;
  padding: 76px 28px 84px;
}
.hero-in {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.8s 0.1s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}
.hero h1 {
  font-size: clamp(44px, 6.4vw, 78px);
  margin: 16px 0 0;
}
.hero h1 em {
  color: var(--orange);
  font-style: normal;
}
.hero p.sub {
  margin: 20px 0 0;
  font-size: 18.5px;
  color: #d7dbe2;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.btn-primary,
.btn-ghost {
  font-family: "Oswald";
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 10px;
  font-size: 16px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  transition:
    transform 0.15s,
    background 0.2s,
    border-color 0.2s;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 30px rgba(241, 90, 34, 0.32);
}
.btn-primary:hover {
  background: var(--orange-hi);
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1.5px solid var(--line2);
  color: #fff;
}
.btn-ghost:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.hero-chips {
  display: flex;
  gap: 26px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.chip b {
  font-family: "Oswald";
  font-size: 30px;
  color: #fff;
  display: block;
  line-height: 1;
}
.chip span {
  font-size: 13.5px;
  color: var(--steel);
  letter-spacing: 0.02em;
}
.hero-media {
  position: relative;
  opacity: 0;
  animation: rise 0.9s 0.25s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-media .frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line2);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
}
.hero-media .frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 42%;
}
.hero-media::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  width: 120px;
  height: 120px;
  border-top: 5px solid var(--orange);
  border-left: 5px solid var(--orange);
  border-radius: 20px 0 0 0;
  z-index: 2;
}
.hero-media::after {
  content: "";
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border-bottom: 5px solid var(--orange);
  border-right: 5px solid var(--orange);
  border-radius: 0 0 20px 0;
}
.hero-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 3;
  background: rgba(14, 16, 19, 0.86);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line2);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge .b-ic {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(241, 90, 34, 0.16);
  display: grid;
  place-items: center;
}
.hero-badge .b-ic svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
}
.hero-badge b {
  font-family: "Oswald";
  font-size: 15px;
  letter-spacing: 0.03em;
  display: block;
  line-height: 1.15;
}
.hero-badge span {
  font-size: 12px;
  color: var(--steel);
}

/* LED ticker */
.led {
  background: #08090b;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  position: relative;
  overflow: hidden;
}
.led::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.045) 1px,
    transparent 1.4px
  );
  background-size: 6px 6px;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.led-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  animation: marq 26s linear infinite;
}
.led-track span {
  font-family: "Oswald";
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 22px;
  padding: 15px 0;
  color: var(--led);
  text-shadow:
    0 0 6px rgba(255, 59, 47, 0.85),
    0 0 16px rgba(255, 59, 47, 0.5);
}
.led-track .sep {
  color: #7a1410;
  text-shadow: none;
  padding: 0 30px;
}
@keyframes marq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* sections */
.pad {
  padding: 88px 0;
}
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.sec-head h2 {
  font-size: clamp(34px, 5vw, 52px);
}
.sec-head p {
  color: var(--steel);
  max-width: 430px;
  font-size: 16px;
}

/* services */
.services {
  background: var(--ink2);
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 26px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line2);
  background: var(--panel2);
}
.card:hover::after {
  transform: scaleX(1);
}
.card .ic {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(241, 90, 34, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.card .ic svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
}
.card h3 {
  font-size: 22px;
  margin-bottom: 9px;
}
.card > p {
  font-size: 14.5px;
  color: var(--steel);
  line-height: 1.55;
}
.card ul {
  list-style: none;
  margin: 15px 0 0;
  display: grid;
  gap: 8px;
}
.card ul li {
  font-size: 13.5px;
  color: #c4c9d1;
  display: flex;
  gap: 9px;
  align-items: flex-start;
  line-height: 1.4;
}
.card ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 6px;
  flex: 0 0 auto;
}
.card .from {
  margin-top: auto;
  padding-top: 18px;
  font-family: "Oswald";
  font-weight: 600;
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.03em;
}
.card .from em {
  color: var(--orange);
  font-style: normal;
}

/* feature bands */
.band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.band.rev {
  direction: rtl;
}
.band.rev > * {
  direction: ltr;
}
.band .media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}
.band .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.band .body {
  padding: 74px clamp(28px, 5vw, 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.band .body h2 {
  font-size: clamp(32px, 4.5vw, 46px);
  margin: 14px 0 18px;
}
.band .body p {
  color: #c9cdd5;
  font-size: 16.5px;
}
.tick {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 13px;
}
.tick li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  color: #dfe2e8;
  font-size: 15.5px;
}
.tick li svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
  stroke: var(--orange);
}
.facility {
  background: var(--ink);
  max-width: 1480px;
  margin: 0 auto;
}
.lounge {
  background: var(--ink);
  max-width: 1480px;
  margin: 0 auto;
}
.tag {
  align-self: flex-start;
  font-family: "Oswald";
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--orange);
  border: 1px solid rgba(241, 90, 34, 0.4);
  padding: 6px 12px;
  border-radius: 20px;
}

/* stats */
.stats {
  background: var(--stripe);
  background-size: 60px 60px;
  padding: 3px 0;
}
.stats-in {
  background: var(--ink2);
  padding: 44px 0;
}
.stats-in .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat b {
  font-family: "Oswald";
  font-size: 46px;
  color: var(--orange);
  display: block;
  line-height: 1;
}
.stat span {
  color: var(--steel);
  font-size: 14px;
  letter-spacing: 0.03em;
}

/* contact */
.contact {
  background: var(--ink);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: stretch;
}
.info h2 {
  font-size: clamp(34px, 5vw, 50px);
  margin-bottom: 10px;
}
.info > p {
  color: var(--steel);
  margin-bottom: 22px;
}
.info-row {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.info-row:last-of-type {
  border-bottom: 1px solid var(--line);
}
.info-row .ic {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: var(--panel);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.info-row .ic svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
}
.info-row .k {
  font-size: 13px;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Oswald";
  font-weight: 500;
}
.info-row .v {
  font-size: 20px;
  font-weight: 700;
  font-family: "Oswald";
  letter-spacing: 0.01em;
}
.info-row .v.phone {
  font-size: 26px;
  color: var(--orange);
}
.hoursbox {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.hoursbox h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
.hoursbox .note {
  color: var(--steel);
  font-size: 13.5px;
  margin-bottom: 20px;
}
.hrow {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15.5px;
}
.hrow:last-child {
  border: 0;
}
.hrow .d {
  color: var(--steel);
}
.hrow .t {
  font-family: "Oswald";
  font-weight: 600;
  letter-spacing: 0.03em;
}
.hrow.today {
  color: #fff;
}
.hrow.today .t {
  color: #33d17a;
}
.map {
  margin-top: 22px;
  height: 230px;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* footer */
footer {
  background: var(--ink2);
  border-top: 1px solid var(--line);
  padding: 46px 0 30px;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.foot .logo {
  font-size: 20px;
}
.foot nav a {
  font-size: 13px;
}
.foot .small {
  color: var(--steel-dim);
  font-size: 13px;
  width: 100%;
  border-top: 1px solid var(--line);
  margin-top: 26px;
  padding-top: 22px;
}

/* responsive */
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .menuBtn {
    display: grid;
    place-items: center;
  }
  .util .live span.hide {
    display: none;
  }
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 54px 28px 64px;
  }
  .hero-media .frame img {
    height: 360px;
  }
  .band,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .band.rev {
    direction: ltr;
  }
  .band .media {
    min-height: 300px;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-in .wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 20px;
  }
}
@media (max-width: 520px) {
  .wrap {
    padding: 0 18px;
  }
  .hero .wrap {
    padding-left: 18px;
    padding-right: 18px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .util {
    font-size: 12px;
  }
  .hero-chips {
    gap: 18px;
  }
  .callbtn span {
    display: none;
  }
  .callbtn {
    padding: 11px 13px;
  }
  .hero-media::before,
  .hero-media::after {
    width: 80px;
    height: 80px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .hero-in,
  .hero-media {
    opacity: 1;
    transform: none;
  }
}

/* process steps */
.process {
  background: var(--ink2);
}
.process.alt {
  background: var(--ink);
}
.whyus {
  background: var(--ink2);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 12px;
}
.step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.step:hover {
  transform: translateY(-5px);
  border-color: var(--line2);
}
.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.step:hover::before {
  transform: scaleX(1);
}
.step .num {
  font-family: "Oswald";
  font-weight: 700;
  font-size: 44px;
  color: var(--orange);
  line-height: 1;
}
.step h4 {
  font-family: "Oswald";
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 17px;
  margin: 12px 0 8px;
}
.step p {
  font-size: 13.5px;
  color: var(--steel);
  line-height: 1.5;
}
.steps.six {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.steps.six .step {
  padding: 24px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.steps.six .step::before {
  display: none;
}
.steps.six .badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(241, 90, 34, 0.14);
  display: grid;
  place-items: center;
  font-family: "Oswald";
  font-weight: 700;
  font-size: 20px;
  color: var(--orange);
  flex: 0 0 auto;
}
.steps.six h4 {
  margin: 2px 0 6px;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
}
.feat {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.feat:hover {
  border-color: var(--line2);
  transform: translateY(-3px);
}
.feat .fx {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(241, 90, 34, 0.14);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.feat .fx svg {
  width: 21px;
  height: 21px;
  stroke: var(--orange);
}
.feat b {
  font-family: "Oswald";
  font-size: 16px;
  letter-spacing: 0.02em;
  display: block;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.feat span {
  font-size: 13.5px;
  color: var(--steel);
  line-height: 1.45;
}
a.from {
  transition: color 0.2s;
}
a.from:hover {
  color: var(--orange-hi);
}
@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps.six {
    grid-template-columns: repeat(2, 1fr);
  }
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .steps,
  .steps.six,
  .features {
    grid-template-columns: 1fr;
  }
}

/* ===== плавна поява при прокрутці ===== */
.has-reveal .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.has-reveal .reveal.in {
  opacity: 1;
  transform: none;
}
/* фото у бендах: без зсуву, лише проявлення + делікатний зум зображення */
.has-reveal .band .media.reveal {
  transform: none;
}
.has-reveal .band .media.reveal img {
  transform: scale(1.06);
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.has-reveal .band .media.reveal.in img {
  transform: scale(1);
}
/* повага до налаштування «менше руху» */
@media (prefers-reduced-motion: reduce) {
  .has-reveal .reveal,
  .has-reveal .band .media.reveal img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
