

:root {
  --ink:        #0a0a0a;
  --ink-2:      #111;
  --ink-3:      #161616;
  --line:       rgba(255,255,255,.12);
  --line-2:     rgba(255,255,255,.22);
  --paper:      #f4f2ec;
  --muted:      #9a9a93;
  --yellow:     #ffd400;
  --yellow-2:   #ffe24a;
  --yellow-ink: #0a0a0a;

  --f-display: "Syne", system-ui, sans-serif;
  --f-alt:     "Syne", system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, Menlo, monospace;
  --f-body:    "Syne", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

.nav__has-mega {
  position: relative;
  padding-bottom: 24px; margin-bottom: -24px;
}
.nav__has-mega > a { display: inline-flex; align-items: center; gap: 4px; }
.nav__chev {
  width: 14px; height: 14px;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform .25s ease;
}
.nav__has-mega:hover .nav__chev { transform: rotate(180deg); }
.nav__menu a.is-active { color: var(--yellow); }

.mega {
  position: fixed;
  top: 82px; left: 50%;
  width: min(1200px, calc(100vw - 40px));
  background: #0a0a0a;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  z-index: 70;
  padding: 28px;
  contain: layout paint;
}
.nav__has-mega:hover .mega,
.nav__has-mega:focus-within .mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 0);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear 0s;
}
.mega .btn:hover,
.mega .btn:focus { text-decoration: none !important; }
.mega__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
}
.mega__head {
  padding-right: 24px;
  border-right: 1px solid var(--line);
}
.mega__head .eyebrow { display: block; margin-bottom: 14px; }
.mega__head h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -.015em;
  margin: 0 0 12px;
  color: var(--paper);
  line-height: 1.15;
}
.mega__head p {
  font-family: "Figtree", var(--f-body);
  font-weight: 300;
  font-size: 13.5px;
  color: rgba(244,242,236,.6);
  line-height: 1.55;
  margin: 0 0 18px;
}

.mega__list {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.mega__list a {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 12px;
  border-radius: 10px;
  font-family: "Figtree", var(--f-body);
  font-weight: 400;
  font-size: 14px;
  color: rgba(244,242,236,.78);
  transition: background .2s ease, color .2s ease;
}
.mega__list a:hover { background: rgba(255,255,255,.04); color: var(--paper); }
.mega__thumb {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 8px;
  overflow: hidden;
  background: #141414;
}
.mega__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mega__name {
  display: inline-flex; align-items: center; justify-content: space-between;
  flex: 1; gap: 8px;
}
.mega__name i {
  font-style: normal; opacity: 0;
  color: var(--yellow);
  transition: opacity .2s ease, transform .2s ease;
}
.mega__list a:hover .mega__name i { opacity: 1; transform: translateX(2px); }

@media (max-width: 1100px) {
  .mega { display: none; }
}

.modal {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(4,4,4,.78);
  backdrop-filter: blur(6px);
}
.modal__card {
  position: relative;
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: #0e0e0e;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
  padding: 36px;
  transform: translateY(20px) scale(.98);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.modal.is-open .modal__card { transform: none; }
.modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  color: var(--paper);
  transition: background .2s ease, transform .2s ease;
}
.modal__close:hover { background: rgba(255,255,255,.12); transform: rotate(90deg); }
.modal__close svg {
  width: 16px; height: 16px;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round;
}
.modal__head { margin-bottom: 24px; }
.modal__head .eyebrow { display: block; margin-bottom: 12px; color: var(--yellow); }
.modal__head h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0 0 10px;
  color: var(--paper);
}
.modal__head h2 em { font-style: normal; color: var(--yellow); }
.modal__head p {
  font-family: "Figtree", var(--f-body);
  font-weight: 300;
  font-size: 13.5px;
  color: rgba(244,242,236,.6);
  margin: 0;
}

.bookform { display: flex; flex-direction: column; gap: 14px; }
.bookform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bookform label { display: flex; flex-direction: column; gap: 6px; }
.bookform label > span {
  font-family: "Figtree", var(--f-body);
  font-weight: 500;
  font-size: 11.5px;
  color: rgba(244,242,236,.5);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.bookform input, .bookform select, .bookform textarea {
  font-family: "Figtree", var(--f-body);
  font-size: 14px;
  font-weight: 400;
  padding: 11px 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--paper);
  transition: border-color .2s ease, background .2s ease;
  resize: vertical;
}
.bookform input:focus, .bookform select:focus, .bookform textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(255,212,0,.04);
}
.bookform__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.bookform__foot small {
  font-family: "Figtree", var(--f-body);
  font-size: 11px;
  color: rgba(244,242,236,.4);
  flex: 1;
  min-width: 200px;
}
.bookform__foot small a { color: var(--yellow); text-decoration: underline; }
.bookform__msg {
  font-family: "Figtree", var(--f-body);
  font-size: 13px;
  color: rgba(244,242,236,.7);
  text-align: center;
  min-height: 18px;
}
.bookform__msg.is-ok { color: #6fe06f; }
.bookform__msg.is-err { color: #ff6f6f; }

@media (max-width: 560px) {
  .modal__card { padding: 24px; border-radius: 14px; }
  .bookform__row { grid-template-columns: 1fr; }
}

.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  background: transparent;
  padding: 10px clamp(16px, 3vw, 36px);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(244,242,236,.78);
}
.topbar__inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.topbar__group { display: inline-flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; color: inherit; transition: color .2s ease; }
.topbar__item:hover { color: var(--paper); }
.topbar__group--right .ico { color: var(--yellow); }
.topbar__sep { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.22); }

.ico {
  width: 15px; height: 15px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.live { display: inline-flex; align-items: center; gap: 9px; color: var(--paper); font-weight: 500; }
.live__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #6fe06f;
  box-shadow: 0 0 0 0 rgba(111,224,111,.6);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(111,224,111,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(111,224,111,0); }
  100% { box-shadow: 0 0 0 0 rgba(111,224,111,0); }
}

.intro {
  position: fixed; inset: 0;
  z-index: 200;
  display: grid; place-items: center;
  background: #0a0a0a;
  transition: opacity .2s ease, visibility .2s ease;
}
.intro img { height: 140px; width: auto; display: block; }
.intro--out { opacity: 0; visibility: hidden; }
@media (max-width: 560px) {
  .intro img { height: 96px; }
}

.brand-strip {
  display: inline-flex; align-items: center;
}
.brand-strip img { height: 84px; width: auto; object-fit: contain; display: block; }

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px clamp(16px, 3vw, 36px);
  transition: padding .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(8,8,8,.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  padding-top: 10px; padding-bottom: 10px;
}
.nav.is-stuck .brand-strip img { height: 56px; }
.nav.is-stuck .nav__meta { display: none; }
.nav__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 2.4vw, 32px);
}

.nav__menu {
  display: flex; gap: 4px;
  justify-content: flex-start;
  font-family: var(--f-body);
  font-weight: 500;
  letter-spacing: .01em;
  font-size: 15.5px;
  margin-left: 0;
}
.nav__menu a {
  padding: 8px 12px;
  color: rgba(244,242,236,.95);
  position: relative;
  transition: color .2s ease;
}
.nav__menu a:hover { color: var(--paper); }
.nav__menu > a::after,
.nav__has-mega > a::after {
  content: ""; position: absolute;
  left: 10px; right: 10px; bottom: 3px; height: 2px;
  background: var(--yellow);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav__menu > a:hover::after,
.nav__has-mega > a:hover::after { transform: scaleX(1); }

.nav__right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.nav__meta { display: inline-flex; align-items: center; gap: 14px; font-size: 13px; color: rgba(244,242,236,.8); }
.nav__meta-item { display: inline-flex; align-items: center; gap: 7px; color: inherit; transition: color .2s ease; }
.nav__meta-item:hover { color: var(--paper); }
.nav__meta .ico { color: var(--yellow); }
.nav__actions { display: inline-flex; align-items: center; gap: 18px; }

.nav__highlight {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--yellow);
  padding: 8px 4px;
  text-shadow: 0 0 18px rgba(255,212,0,.55);
  transition: text-shadow .25s ease, transform .2s ease;
}
.nav__highlight svg { filter: drop-shadow(0 0 8px rgba(255,212,0,.7)); }
.nav__highlight:hover { text-shadow: 0 0 22px rgba(255,212,0,.8); transform: translateY(-1px); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 20px;
  border: 1px solid var(--yellow);
  background: var(--yellow);
  color: var(--yellow-ink);
  font-family: var(--f-body);
  font-weight: 600;
  letter-spacing: 0;
  font-size: 15px;
  border-radius: 2px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(255,212,0,.2); }
.nav__cta .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink); position: relative;
}
.nav__cta .dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid var(--ink); opacity: .4;
  animation: ping 2s ease-out infinite;
}
@keyframes ping {
  0%   { transform: scale(.6); opacity: .7; }
  80%,100% { transform: scale(1.8); opacity: 0; }
}

.nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { display: block; width: 26px; height: 2px; background: var(--paper); margin: 5px 0; transition: transform .25s, opacity .25s; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .brand-strip img { height: 52px; }
  .nav__meta { display: none; }
  .nav__highlight { display: none; }
}
@media (max-width: 480px) {
  .brand-strip img { height: 44px; }
  .nav { padding: 12px clamp(12px, 3vw, 20px); }
}
@media (max-width: 960px) {
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
  }
  .nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: none;
    gap: 12px;
    min-height: 52px;
  }
  .nav__right { display: none; }
  .nav__cta { display: none; }
  .nav__has-mega .mega { display: none; }
  .nav__chev { display: none; }
  .nav__burger {
    display: block;
    z-index: 60;
    flex: 0 0 auto;
  }
  .brand-strip { display: inline-block; }
  .nav__menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: #0a0a0a;
    padding: 100px 24px 40px;
    transform: translateY(-110%);
    transition: transform .32s cubic-bezier(.2,.8,.2,1);
    font-size: 20px;
    overflow-y: auto;
    z-index: 55;
    justify-content: flex-start;
    display: flex;
  }
  .nav__menu a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--paper);
  }
  .nav__menu > a::after,
  .nav__has-mega > a::after { display: none; }
  .nav.is-open .nav__menu { transform: translateY(0); }
  body.is-nav-open { overflow: hidden; }
}

.hero {
  position: relative;
  min-height: 78vh;
  padding: clamp(110px, 14vh, 150px) clamp(18px, 4vw, 48px) clamp(32px, 5vh, 56px);
  display: grid;
  grid-template-rows: 1fr auto;
  gap: clamp(24px, 5vh, 44px);
  isolation: isolate;
  overflow: hidden;
}
.hero__video {
  position: absolute; inset: 0; z-index: -3;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(10,10,10,.75) 0%, rgba(10,10,10,.6) 45%, rgba(10,10,10,.9) 90%, #0a0a0a 100%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .35; mix-blend-mode: overlay; pointer-events: none;
}

.hero__top {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(244,242,236,.75);
  max-width: 1440px; margin: 0 auto; width: 100%;
}
.hero__meta { display: inline-flex; align-items: center; gap: 10px; }
.hero__meta--right { text-align: right; flex-direction: column; align-items: flex-end; gap: 2px; }
.hero__meta--right b { color: var(--yellow); font-weight: 600; }
.tick {
  width: 8px; height: 8px; background: var(--yellow);
  display: inline-block; transform: rotate(45deg);
  box-shadow: 0 0 0 3px rgba(255,212,0,.2);
}

.hero__body {
  max-width: 1440px; margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-content: center;
}

.hero__tag {
  display: inline-flex; align-items: center; gap: 14px;
  width: fit-content;
  padding: 8px 14px 8px 8px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244,242,236,.85);
}
.hero__tag span {
  background: var(--yellow);
  color: var(--yellow-ink);
  padding: 4px 8px;
  font-weight: 700;
  border-radius: 999px;
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0;
  max-width: 24ch;
}
.hero__title em {
  font-style: normal;
  font-weight: 600;
  color: var(--yellow);
}

.hero__lead {
  max-width: 52ch;
  font-size: 15px;
  font-weight: 400;
  color: rgba(244,242,236,.72);
  margin: 0;
}
.hero__lead b { color: var(--paper); font-weight: 500; }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .01em;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn--yellow { background: var(--yellow); color: var(--yellow-ink); }
.btn--yellow:hover { transform: translateY(-2px); background: var(--yellow-2); }
.btn--ghost { border-color: var(--line-2); color: var(--paper); }
.btn--ghost:hover { border-color: var(--paper); background: rgba(255,255,255,.04); }
.btn svg { transition: transform .2s ease; }
.btn:hover svg { transform: translateX(3px); }

.hero__bottom {
  max-width: 1440px; margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: end;
}
.partners {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: rgba(8,8,8,.45);
  backdrop-filter: blur(8px);
  border-radius: 2px;
  width: fit-content;
}
.partners__label {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.partners img {
  height: 28px; width: auto;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.partners img[alt*="Gtechniq" i] {
  height: 26px;
  transform: translateY(3px);
  margin-right: -22px;
}
.partners img[alt*="PerfectShield" i] {
  height: 30px;
  transform: translateY(3px);
}
.partners__dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--yellow);
}

.marquee { display: none; }
.marquee__row {
  display: inline-flex; gap: 28px; align-items: center;
  white-space: nowrap;
  animation: slide 38s linear infinite;
  padding-left: 28px;
}
.marquee__row span:nth-child(even) { color: var(--yellow); font-size: 10px; }
@keyframes slide { to { transform: translateX(-50%); } }

.hero__scroll {
  position: absolute; right: clamp(18px, 4vw, 48px); bottom: 22px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .3em; text-transform: uppercase;
  color: rgba(244,242,236,.7);
}
.hero__scroll i {
  width: 1px; height: 38px; background: rgba(244,242,236,.35); position: relative; overflow: hidden;
}
.hero__scroll i::after {
  content: ""; position: absolute; inset: 0;
  background: var(--yellow);
  animation: drip 2.2s ease-in-out infinite;
}
@keyframes drip {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

@media (max-width: 720px) {
  .hero__bottom { grid-template-columns: 1fr; }
  .partners { flex-wrap: wrap; padding: 12px 14px; gap: 12px; }
  .partners img { height: 22px; }
  .hero__title { font-size: clamp(28px, 8vw, 42px); max-width: none; }
  .hero__lead { font-size: 14px; }
  .hero__ctas { gap: 8px; }
  .btn { padding: 12px 18px; font-size: 13px; }
}

.scroll-hint {
  position: absolute;
  right: clamp(18px, 3vw, 40px);
  top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 14px;
  color: rgba(244,242,236,.6);
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  transition: color .25s ease, transform .25s ease;
  z-index: 3;
}
.scroll-hint:hover { color: var(--yellow); transform: translateY(calc(-50% + 4px)); }
.scroll-hint__label { writing-mode: vertical-rl; transform: rotate(180deg); }
.scroll-hint__track {
  position: relative;
  width: 1px; height: 64px;
  background: linear-gradient(180deg, rgba(255,255,255,.25) 0%, rgba(255,255,255,.06) 100%);
  overflow: hidden;
}
.scroll-hint__dot {
  position: absolute; left: -2px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 10px rgba(255,212,0,.6);
  animation: scroll-drip 2.4s cubic-bezier(.6,.2,.4,1) infinite;
}
.scroll-hint__arrow {
  width: 14px; height: 14px; fill: none;
  stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
  animation: scroll-arrow 2.4s ease-in-out infinite;
}
@keyframes scroll-drip {
  0%   { top: -6px; opacity: 0; }
  15%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
@keyframes scroll-arrow {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}
@media (max-width: 900px) { .scroll-hint { display: none; } }

.trust {
  background: var(--ink);
  padding: clamp(80px, 14vh, 160px) clamp(18px, 4vw, 48px) clamp(60px, 10vh, 120px);
  position: relative;
}
.trust__inner { max-width: 1440px; margin: 0 auto; }
.trust__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: stretch;
  margin-bottom: clamp(60px, 9vh, 100px);
}
.trust__text .eyebrow { display: block; margin-bottom: 20px; }
.trust__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.15;
  letter-spacing: -.025em;
  margin: 0 0 clamp(20px, 3vh, 28px);
  color: var(--paper);
  max-width: 22ch;
}
.trust__title em {
  font-style: normal;
  color: var(--yellow);
}
.trust__lead {
  max-width: 58ch;
  margin: 0 0 28px;
  font-family: "Figtree", var(--f-body);
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(244,242,236,.72);
}
.trust__image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
  aspect-ratio: 16 / 9;
  align-self: center;
}
.trust__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.trust__image--team { aspect-ratio: 4 / 5; }
.trust__image--team img { object-position: right center; }

.trust__blocks {
  display: flex; flex-direction: column;
  gap: 24px;
  margin: 32px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}
.trust__block h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 10px;
}
.trust__block p {
  font-family: "Figtree", var(--f-body);
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(244,242,236,.72);
  margin: 0;
  max-width: 54ch;
}

.trust__values {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}
.trust__values li {
  display: flex; flex-direction: column;
  padding-left: 14px;
  border-left: 1px solid var(--yellow);
}
.trust__values b {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--paper);
  letter-spacing: -.005em;
  margin-bottom: 2px;
}
.trust__values span {
  font-family: "Figtree", var(--f-body);
  font-weight: 300;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(244,242,236,.6);
}
@media (max-width: 720px) {
  .trust__values { grid-template-columns: 1fr; }
}

.trust__process {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 14px;
}
.trust__process li {
  display: flex; gap: 16px;
  align-items: flex-start;
}
.trust__process > li > span {
  flex-shrink: 0;
  font-family: "Figtree", var(--f-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--yellow);
  padding-top: 2px;
  min-width: 28px;
}
.trust__process > li > div { display: flex; flex-direction: column; gap: 2px; }
.trust__process b {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--paper);
  letter-spacing: -.005em;
}
.trust__process i {
  font-style: normal;
  font-family: "Figtree", var(--f-body);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(244,242,236,.6);
}
.trust__badge {
  position: absolute;
  right: 18px; bottom: 18px;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 18px 12px 12px;
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  color: var(--paper);
}
.trust__badge-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--yellow);
  color: var(--yellow-ink);
  border-radius: 50%;
  flex-shrink: 0;
}
.trust__badge-ico svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.trust__badge-text { display: flex; flex-direction: column; line-height: 1.1; }
.trust__badge-text b {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.01em;
}
.trust__badge-text i {
  font-style: normal;
  font-family: "Figtree", var(--f-body);
  font-weight: 400;
  font-size: 11.5px;
  color: rgba(244,242,236,.72);
  margin-top: 2px;
}
@media (max-width: 1024px) {
  .trust__split { grid-template-columns: 1fr; gap: 32px; }
  .trust__image { aspect-ratio: 16 / 10; border-radius: 14px; }
  .trust__badge { right: 12px; bottom: 12px; padding: 8px 14px 8px 8px; }
  .trust__badge-ico { width: 30px; height: 30px; }
  .trust__badge-text b { font-size: 15px; }
  .trust__badge-text i { font-size: 10.5px; }
}
.trust__lead b { color: var(--paper); font-weight: 500; }

.trust__brands {
  padding-top: clamp(28px, 4vh, 40px);
  border-top: 1px solid var(--line);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.trust__brands-row {
  list-style: none; margin: 0; padding: 0;
  display: inline-flex; align-items: center;
  gap: clamp(36px, 5vw, 72px);
  white-space: nowrap;
  animation: brands-slide 28s linear infinite;
  padding-left: clamp(36px, 5vw, 72px);
}
.trust__brands-row li { display: inline-flex; align-items: center; flex-shrink: 0; }
@keyframes brands-slide { to { transform: translateX(-50%); } }
.trust__brands:hover .trust__brands-row { animation-play-state: paused; }
.trust__brands img {
  height: 32px; width: auto;
  filter: brightness(0) invert(1);
  opacity: .55;
  transition: opacity .25s ease;
}
.trust__brands img:hover { opacity: 1; }
.trust__brands img[alt="Gtechniq Approved"], .trust__brands img[alt=""][src*="gtechniq"] { height: 44px; }
.trust__brands img[alt="PerfectShield"], .trust__brands img[alt=""][src*="perfectshield"] { height: 38px; }
.trust__brands img[alt="RUPES"], .trust__brands img[alt=""][src*="rupes"] { height: 22px; }
.trust__brands img[alt="3M"], .trust__brands img[alt=""][src*="3m"] { height: 28px; }
.trust__brand-text {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -.01em;
  color: rgba(244,242,236,.55);
  transition: color .25s ease;
}
.trust__brand-text:hover { color: var(--paper); }

@media (max-width: 720px) {
  .trust__title { max-width: 14ch; }
  .trust__brands { gap: 20px 28px; }
  .trust__brands img { height: 24px; }
  .trust__brand-text { font-size: 16px; }
}

.services {
  background: var(--ink);
  padding: clamp(72px, 10vh, 140px) clamp(18px, 4vw, 48px);
}
.services__inner { max-width: 1440px; margin: 0 auto; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
}
.services__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 7vh, 72px);
}
.services__head-left .eyebrow { display: block; margin-bottom: 16px; }
.services__head-right {
  display: flex; flex-direction: column; gap: 22px;
  align-items: flex-end; text-align: right;
}
.services__lead {
  font-family: "Figtree", var(--f-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244,242,236,.7);
  margin: 0 0 0 auto;
  max-width: 52ch;
}
.services__all { flex-shrink: 0; }

.services__title em {
  font-style: normal;
  color: var(--yellow);
}

@media (max-width: 820px) {
  .services__head { grid-template-columns: 1fr; gap: 24px; align-items: flex-start; }
  .services__head-right { align-items: flex-start; text-align: left; }
  .services__lead { margin-left: 0; }
}
.services__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--paper);
}

.svc {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}
.svc__preview { display: flex; flex-direction: column; gap: 20px; }
.svc__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  background: #0a0a0a;
}
.svc__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .45s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}
.svc__img.is-active { opacity: 1; transform: scale(1); }
.svc__img:first-child { opacity: 1; transform: scale(1); }

.svc__captions { position: relative; min-height: 78px; }
.svc__cap {
  position: absolute; inset: 0;
  margin: 0;
  font-family: "Figtree", var(--f-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244,242,236,.7);
  opacity: 0;
  transition: opacity .35s ease;
  max-width: 62ch;
}
.svc__cap.is-active { opacity: 1; }
.svc__cap:first-child { opacity: 1; }
.svc__cap.is-active ~ .svc__cap:first-child:not(.is-active) { opacity: 0; }
.svc__cap b { color: var(--paper); font-weight: 500; }

.svc__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.svc__item {
  appearance: none; background: none; border: 0; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -.01em;
  color: rgba(244,242,236,.55);
  text-align: left;
  cursor: pointer;
  transition: color .25s ease, padding .3s ease;
}
.svc__item:hover, .svc__item.is-active {
  color: var(--paper);
  padding-left: 14px;
}
.svc__item.is-active { color: var(--yellow); }
.svc__tag {
  font-family: "Figtree", var(--f-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(244,242,236,.4);
  transition: color .25s ease;
}
.svc__item:hover .svc__tag, .svc__item.is-active .svc__tag { color: rgba(244,242,236,.7); }

@media (max-width: 900px) {
  .svc { grid-template-columns: 1fr; }
  .svc__item { font-size: 18px; padding: 16px 4px; }
}

.tiles {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  background-color: #111;
  display: flex; align-items: flex-end;
  color: var(--paper);
  grid-column: span 3;
  transition: transform .3s ease;
}
.tile--big { grid-column: span 6; min-height: 400px; }
.tiles--all { grid-template-columns: repeat(3, 1fr); }
.tiles--all .tile { grid-column: auto; min-height: 320px; }
.tile::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.25) 100%);
  transition: background .3s ease;
}
.tile:hover { transform: translateY(-4px); }
.tile:hover::before {
  background: linear-gradient(0deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,.2) 100%);
}
.tile__inner {
  position: relative; z-index: 1;
  padding: 26px 26px 24px;
  width: 100%;
}
.tile__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -.015em;
  margin: 0 0 8px;
  color: var(--paper);
}
.tile--big .tile__title { font-size: 24px; }
.tile__text {
  font-family: "Figtree", var(--f-body);
  font-weight: 300;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.7);
  margin: 0 0 14px;
  max-width: 46ch;
}
.tile__text b { color: var(--paper); font-weight: 500; }
.tile__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.tile__tags span {
  font-family: "Figtree", var(--f-body);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
}

@media (max-width: 900px) {
  .tiles { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .tile, .tile--big { grid-column: span 1; min-height: 280px; }
}

.footcta {
  padding: clamp(60px, 10vh, 110px) clamp(18px, 4vw, 48px);
  background: var(--ink);
  border-top: 1px solid var(--line);
}
.footcta__inner {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}
.footcta .eyebrow { display: block; margin-bottom: 14px; }
.footcta__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(30px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0;
  color: var(--paper);
  max-width: 18ch;
}
.footcta__title em { font-style: normal; color: var(--yellow); }
.footcta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 760px) {
  .footcta__inner { grid-template-columns: 1fr; align-items: start; }
}

.foot {
  background: #060606;
  padding: clamp(60px, 9vh, 100px) clamp(18px, 4vw, 48px) 0;
  position: relative;
  overflow: hidden;
}
.foot__top {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(40px, 6vh, 64px);
  border-bottom: 1px solid var(--line);
}
.foot__brand img { height: clamp(64px, 8vw, 92px); width: auto; margin-bottom: 22px; }
.foot__manifest {
  font-family: "Figtree", var(--f-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(244,242,236,.6);
  margin: 0;
  max-width: 36ch;
}

.foot__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.foot__col h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--paper);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.foot__row, .foot__link {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: "Figtree", var(--f-body);
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(244,242,236,.62);
  margin-bottom: 14px;
  transition: color .2s ease;
}
.foot__row:hover, .foot__link:hover { color: var(--paper); }
.foot__row .ico, .foot__social .ico { color: var(--yellow); margin-top: 1px; }
.foot__link { padding-left: 0; }

.foot__wordmark {
  margin-top: clamp(40px, 5vh, 60px);
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.foot__wordmark-row {
  display: inline-flex; align-items: center; gap: .15em;
  white-space: nowrap;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(60px, 14vw, 200px);
  line-height: .9;
  letter-spacing: -.04em;
  color: rgba(255,255,255,.06);
  animation: foot-slide 36s linear infinite;
  padding-left: .15em;
}
.foot__wordmark-row i {
  font-style: normal;
  color: rgba(255,212,0,.18);
  margin: 0 .1em;
}
@keyframes foot-slide { to { transform: translateX(-50%); } }

.foot__bottom {
  max-width: 1440px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  font-family: "Figtree", var(--f-body);
  font-size: 12px;
  color: rgba(244,242,236,.4);
}
.foot__bottom p { margin: 0; }
.foot__bottom a { color: var(--yellow); }
.foot__bottom a:hover { text-decoration: underline; }
.foot__legal { display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.foot__legal span { color: rgba(255,255,255,.2); }
.foot__legal a[href="/polityka-prywatnosci"],
.foot__legal a[href="/regulamin"] { color: rgba(244,242,236,.4); }
.foot__legal a[href="/polityka-prywatnosci"]:hover,
.foot__legal a[href="/regulamin"]:hover { color: var(--yellow); text-decoration: underline; }

.footer__made {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  text-decoration: none;
  transition: background 400ms cubic-bezier(0.16,1,0.3,1),
              border-color 400ms cubic-bezier(0.16,1,0.3,1),
              transform 500ms cubic-bezier(0.16,1,0.3,1);
}
.footer__made:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.22);
  transform: scale(1.04);
}
.foot__bottom .footer__made:hover { text-decoration: none; }
.footer__made-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.45);
}
.footer__made-logo {
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 3px;
  flex-shrink: 0;
}
.footer__made-name {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}
.footer__made:hover .footer__made-name { color: #fff; }

@media (max-width: 900px) {
  .foot__top { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .foot__cols { grid-template-columns: 1fr; }
}

.statement {
  position: relative;
  min-height: 60vh;
  padding: clamp(80px, 14vh, 160px) clamp(20px, 4vw, 48px);
  display: grid; place-items: center;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.statement__bg {
  position: absolute; inset: -10%;
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  filter: brightness(.45) saturate(.85) contrast(1.05);
  z-index: -2;
}
.statement__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.65) 0%, rgba(10,10,10,.35) 40%, rgba(10,10,10,.35) 60%, rgba(10,10,10,.85) 100%);
  z-index: -1;
}
.statement__inner { max-width: 1100px; }
.statement .eyebrow { display: block; margin-bottom: 22px; }
.statement__quote {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(24px, 3.4vw, 48px);
  line-height: 1.02;
  letter-spacing: -.03em;
  color: var(--paper);
  margin: 0 auto 22px;
  max-width: 18ch;
}
.statement__quote em {
  font-style: normal;
  color: var(--yellow);
}
.statement__sub {
  font-family: "Figtree", var(--f-body);
  font-weight: 300;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(244,242,236,.78);
  margin: 0 auto 32px;
  max-width: 56ch;
}
.statement__ctas {
  display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.btn--ghost-light {
  border-color: rgba(255,255,255,.35);
  color: var(--paper);
}
.btn--ghost-light:hover { border-color: var(--paper); background: rgba(255,255,255,.08); }

.stats {
  list-style: none; margin: 56px 0 0; padding: 36px 0 0;
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: clamp(20px, 6vw, 96px) clamp(28px, 8vw, 96px);
  border-top: 1px solid rgba(255,255,255,.12);
  max-width: 820px; margin-left: auto; margin-right: auto;
}
.stats li {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.stats b {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -.02em;
  color: var(--paper);
  line-height: 1;
}
.stats span {
  font-family: "Figtree", var(--f-body);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(244,242,236,.6);
  text-transform: lowercase;
}

@media (hover: none) { .statement__bg { background-attachment: scroll; } }
@media (max-width: 720px) {
  .statement { min-height: 50vh; }
  .stats { gap: 24px; padding-top: 28px; margin-top: 40px; }
  .stats span { font-size: 10.5px; }
}

.page--sub { background: var(--ink); }
.nav--solid { background: rgba(8,8,8,.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }

.phero {
  position: relative;
  min-height: 48vh;
  padding: clamp(140px, 16vh, 180px) clamp(18px, 4vw, 48px) clamp(50px, 7vh, 80px);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(24px, 4vh, 40px);
  isolation: isolate;
  overflow: hidden;
}
.phero__inner {
  max-width: 1440px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
  display: contents;
}

.crumbs {
  max-width: 1440px; margin: 0 auto; width: 100%;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Figtree", var(--f-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(244,242,236,.5);
  position: relative; z-index: 1;
}
.crumbs a { color: rgba(244,242,236,.5); transition: color .2s ease; }
.crumbs a:hover { color: var(--yellow); }
.crumbs span { color: var(--paper); }
.crumbs svg {
  width: 12px; height: 12px;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
  opacity: .5;
}

.phero__body {
  max-width: 1440px; margin: 0 auto; width: 100%;
  align-self: center;
}
.phero .eyebrow {
  display: block; margin-bottom: 18px; color: var(--yellow);
}
.phero__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: .96;
  letter-spacing: -.03em;
  margin: 0 0 22px;
  color: var(--paper);
  max-width: 18ch;
}
.phero__title em { font-style: normal; color: var(--yellow); }
.phero__lead {
  font-family: "Figtree", var(--f-body);
  font-weight: 300;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(244,242,236,.75);
  margin: 0 0 34px;
  max-width: 64ch;
}
.phero__meta {
  display: flex; flex-wrap: wrap;
  gap: clamp(24px, 4vw, 64px);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  max-width: 820px;
}
.phero__meta > div { display: flex; flex-direction: column; gap: 2px; }
.phero__meta b {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 36px);
  letter-spacing: -.02em;
  color: var(--paper);
  line-height: 1;
}
.phero__meta span {
  font-family: "Figtree", var(--f-body);
  font-weight: 300;
  font-size: 12px;
  color: rgba(244,242,236,.55);
  letter-spacing: .04em;
  text-transform: lowercase;
}

.subhero {
  position: relative;
  padding: clamp(160px, 22vh, 240px) clamp(18px, 4vw, 48px) clamp(60px, 10vh, 120px);
  isolation: isolate;
  overflow: hidden;
}
.subhero__video {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
}
.subhero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,10,.75) 0%, rgba(10,10,10,.55) 40%, rgba(10,10,10,.88) 90%, var(--ink) 100%);
}
.subhero__inner { max-width: 1440px; margin: 0 auto; position: relative; z-index: 1; }
.subhero__back {
  display: inline-block;
  font-family: "Figtree", var(--f-body);
  font-weight: 400; font-size: 13px;
  color: rgba(244,242,236,.55);
  margin-bottom: 24px;
  transition: color .2s ease;
}
.subhero__back:hover { color: var(--yellow); }
.subhero .eyebrow { display: block; margin-bottom: 14px; }
.subhero__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -.03em;
  margin: 0 0 18px;
  color: var(--paper);
}
.subhero__lead {
  font-family: "Figtree", var(--f-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(244,242,236,.7);
  margin: 0;
  max-width: 62ch;
}

.real-section { padding: 0 clamp(18px, 4vw, 48px) clamp(60px, 10vh, 120px); }
.real-section__inner { max-width: 1440px; margin: 0 auto; }
.real-section__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -.01em;
  color: rgba(244,242,236,.65);
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.real-section__title--mt { margin-top: 84px; }
.real-section__title--plain { border-bottom: none; padding-bottom: 0; margin: 0; }
.real-section__count {
  font-family: "Figtree", var(--f-body);
  font-weight: 300; font-size: 14px;
  color: rgba(244,242,236,.35);
  letter-spacing: .02em;
  margin-left: 6px;
}

.bento-cars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  margin-bottom: 56px;
}
.bento-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #141414;
  color: var(--paper);
  isolation: isolate;
  grid-column: span 1;
  grid-row: span 1;
  contain: layout paint;
}
.bento-card--feat { grid-column: span 2; grid-row: span 2; }
.bento-card--wide { grid-column: span 2; grid-row: span 1; }
.bento-card--std  { grid-column: span 1; grid-row: span 1; }

.bento-card__media {
  position: absolute; inset: 0;
  overflow: hidden;
}
.bento-card__media img,
.bento-card__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.8,.2,1);
}
.bento-card:hover .bento-card__media img,
.bento-card:hover .bento-card__media video { transform: scale(1.06); }

.bento-card__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 40%, rgba(10,10,10,.35) 70%, rgba(10,10,10,.85) 100%);
  pointer-events: none;
  transition: opacity .4s ease;
}

.bento-card__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(14px, 1.4vw, 22px);
  display: flex; flex-direction: column; gap: 4px;
  z-index: 2;
}
.bento-card__eyebrow {
  font-family: "Figtree", var(--f-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .14em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
}
.bento-card--feat .bento-card__eyebrow { opacity: .85; transform: none; }
.bento-card:hover .bento-card__eyebrow { opacity: .85; transform: none; }
.bento-card__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(16px, 1.4vw, 22px);
  letter-spacing: -.015em;
  margin: 0;
  color: var(--paper);
  line-height: 1.1;
}
.bento-card--feat .bento-card__title { font-size: clamp(22px, 2.4vw, 36px); }
.bento-card--wide .bento-card__title { font-size: clamp(18px, 1.7vw, 26px); }
.bento-card__count {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: "Figtree", var(--f-body);
  font-size: 11px; font-weight: 400;
  color: rgba(244,242,236,.6);
  margin-top: 6px;
}
.bento-card__count svg { opacity: .7; }

@media (max-width: 1100px) {
  .bento-cars { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .bento-card--feat { grid-column: span 2; grid-row: span 2; }
  .bento-card--wide { grid-column: span 3; grid-row: span 1; }
}
@media (max-width: 720px) {
  .bento-cars { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 10px; }
  .bento-card--feat { grid-column: span 2; grid-row: span 2; }
  .bento-card--wide { grid-column: span 2; grid-row: span 1; }
  .bento-card--std  { grid-column: span 1; grid-row: span 1; }
}

.reel-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-top: 84px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.reel-nav { display: flex; gap: 8px; align-self: center; }
.reel-nav__btn {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.reel-nav__btn:hover { background: var(--yellow); border-color: var(--yellow); color: #0a0a0a; }

.reel {
  margin: 28px 0 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
}
.reel::before,
.reel::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 60px;
  z-index: 2; pointer-events: none;
}
.reel::before { left: 0;  background: linear-gradient(90deg,  var(--ink) 0%, transparent 100%); }
.reel::after  { right: 0; background: linear-gradient(270deg, var(--ink) 0%, transparent 100%); }

.reel__scroller {
  display: flex; flex-wrap: nowrap;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 clamp(18px, 4vw, 48px);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reel__scroller::-webkit-scrollbar { display: none; }

.reel__frame {
  position: relative;
  flex: 0 0 auto;
  width: clamp(180px, 22vw, 280px);
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  background: #141414;
  display: block;
  scroll-snap-align: start;
  content-visibility: auto;
  contain-intrinsic-size: 280px 373px;
}
.reel__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.reel__cap {
  position: absolute; left: 10px; bottom: 10px;
  font-family: "Figtree", var(--f-body);
  font-size: 11px; font-weight: 500;
  color: var(--paper);
  background: rgba(10,10,10,.65);
  padding: 4px 10px;
  border-radius: 999px;
  opacity: 0;
  transition: opacity .3s ease;
}
.reel__frame:hover .reel__cap { opacity: 1; }

.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}
.car-card { display: block; color: var(--paper); }
.car-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: #141414;
}
.car-card__media img, .car-card__media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.car-card:hover .car-card__media img, .car-card:hover .car-card__media video { transform: scale(1.05); }
.car-card__meta {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 10px;
  padding: 14px 4px 0;
}
.car-card__meta h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--paper);
}
.car-card__meta span {
  font-family: "Figtree", var(--f-body);
  font-size: 12px;
  color: rgba(244,242,236,.45);
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.feed-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: #141414;
  display: block;
}
.feed-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.feed-item:hover img { transform: scale(1.05); }
.feed-item__cap {
  position: absolute; left: 10px; bottom: 10px;
  font-family: "Figtree", var(--f-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--paper);
  background: rgba(0,0,0,.6);
  padding: 4px 10px;
  border-radius: 999px;
  opacity: 0;
  transition: opacity .25s ease;
}
.feed-item:hover .feed-item__cap { opacity: 1; }

.single-grid {
  columns: 3 260px;
  column-gap: 14px;
}
.single-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 10px;
  overflow: hidden;
  background: #141414;
}
.single-item img, .single-item video {
  width: 100%; height: auto; display: block;
}

.oferta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.oferta-grid--small { grid-template-columns: repeat(3, 1fr); }
.oferta-card {
  display: flex; flex-direction: column;
  background: #111;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  color: var(--paper);
  transition: border-color .3s ease, transform .3s ease;
}
.oferta-card:hover { border-color: rgba(255,212,0,.35); transform: translateY(-4px); }
.oferta-card.is-feat { grid-column: span 2; grid-row: span 2; }
.oferta-card.is-feat .oferta-card__media { aspect-ratio: 16 / 11; }
.oferta-card.is-feat h3 { font-size: 28px; }
.oferta-card.is-feat p { font-size: 15px; }
.oferta-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: #0a0a0a; }
.oferta-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.oferta-card:hover .oferta-card__media img { transform: scale(1.04); }
.oferta-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.oferta-card__num {
  font-family: "Figtree", var(--f-body); font-weight: 500; font-size: 11px;
  letter-spacing: .22em; color: var(--yellow);
}
.oferta-card__body h3 {
  font-family: var(--f-display); font-weight: 600; font-size: 20px;
  letter-spacing: -.01em; line-height: 1.2; margin: 0;
}
.oferta-card__body p {
  font-family: "Figtree", var(--f-body); font-weight: 300;
  font-size: 13.5px; line-height: 1.55; color: rgba(244,242,236,.65); margin: 0;
}
.oferta-card__tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 4px; }
.oferta-card__tags span {
  font-family: "Figtree", var(--f-body); font-size: 10.5px; font-weight: 500;
  color: rgba(244,242,236,.6); padding: 4px 9px;
  border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.03);
}
.oferta-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto; padding-top: 10px;
  font-family: "Figtree", var(--f-body); font-weight: 500;
  font-size: 13px; color: var(--yellow);
}
.oferta-card__cta i { font-style: normal; transition: transform .25s ease; }
.oferta-card:hover .oferta-card__cta i { transform: translateX(4px); }
@media (max-width: 900px) {
  .oferta-grid, .oferta-grid--small { grid-template-columns: repeat(2, 1fr); }
  .oferta-card.is-feat { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 560px) {
  .oferta-grid, .oferta-grid--small { grid-template-columns: 1fr; }
  .oferta-card.is-feat { grid-column: span 1; }
}

.usl-hero {
  position: relative;
  padding: clamp(140px, 18vh, 200px) clamp(18px, 4vw, 48px) clamp(60px, 8vh, 100px);
  isolation: isolate;
  overflow: hidden;
}
.usl-hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: var(--bg);
  background-size: cover; background-position: center;
  filter: brightness(.45) saturate(.85);
}
.usl-hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,10,.65) 0%, rgba(10,10,10,.4) 50%, var(--ink) 100%);
}
.usl-hero__inner { max-width: 1440px; margin: 0 auto; }
.usl-hero .eyebrow { display: block; margin-bottom: 14px; color: var(--yellow); }
.usl-hero__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(36px, 5.4vw, 76px);
  line-height: 1; letter-spacing: -.03em;
  margin: 0 0 18px; color: var(--paper);
  max-width: 18ch;
}
.usl-hero__lead {
  font-family: "Figtree", var(--f-body); font-weight: 300;
  font-size: clamp(15px, 1.2vw, 17px); line-height: 1.55;
  color: rgba(244,242,236,.78); margin: 0 0 24px; max-width: 60ch;
}
.usl-hero__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 28px; }
.usl-hero__tags span {
  font-family: "Figtree", var(--f-body); font-size: 11.5px; font-weight: 500;
  color: var(--paper); padding: 5px 12px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05); backdrop-filter: blur(8px);
}
.usl-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.usl-body {
  padding: clamp(60px, 9vh, 100px) clamp(18px, 4vw, 48px);
}
.usl-body__inner {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.prose {
  font-family: "Figtree", var(--f-body);
  font-weight: 300;
  font-size: 16px; line-height: 1.7;
  color: rgba(244,242,236,.78);
  max-width: 70ch;
}
.prose h2 {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px); line-height: 1.15;
  letter-spacing: -.02em;
  margin: 40px 0 16px; color: var(--paper);
}
.prose h3 {
  font-family: var(--f-display); font-weight: 600; font-size: 19px;
  margin: 32px 0 12px; color: var(--paper);
}
.prose h4 {
  font-family: var(--f-display); font-weight: 600; font-size: 16px;
  margin: 22px 0 8px; color: var(--yellow);
  letter-spacing: .01em;
}
.prose p { margin: 0 0 16px; }
.prose b { color: var(--paper); font-weight: 500; }
.prose ul { padding-left: 22px; margin: 0 0 18px; }
.prose ul li { margin-bottom: 6px; }
.prose ul li::marker { color: var(--yellow); }
.prose > *:first-child { margin-top: 0; }

.usl-aside { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 120px; }
.usl-aside__card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,212,0,.04);
}
.usl-aside__card--quiet { background: rgba(255,255,255,.02); }
.usl-aside__card h4 {
  font-family: var(--f-display); font-weight: 600; font-size: 15px;
  letter-spacing: .01em;
  margin: 0 0 10px; color: var(--paper);
}
.usl-aside__card p {
  font-family: "Figtree", var(--f-body); font-weight: 300;
  font-size: 13.5px; line-height: 1.55;
  color: rgba(244,242,236,.7); margin: 0 0 14px;
}
.usl-aside__card .btn { width: 100%; justify-content: center; }
.usl-aside__card .btn + .btn { margin-top: 8px; }

@media (max-width: 900px) {
  .usl-body__inner { grid-template-columns: 1fr; }
  .usl-aside { position: static; }
}

.about-split {
  padding: clamp(60px, 9vh, 100px) clamp(18px, 4vw, 48px);
}
.about-split__inner {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-split__img {
  margin: 0; aspect-ratio: 4 / 3;
  border-radius: 18px; overflow: hidden; background: #0a0a0a;
}
.about-split__img img { width: 100%; height: 100%; object-fit: cover; }
.about-split__text h2 {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0 0 18px; color: var(--paper);
  max-width: 18ch;
}
.about-split__text h2 em { font-style: normal; color: var(--yellow); }
.about-split__text p {
  font-family: "Figtree", var(--f-body); font-weight: 300;
  font-size: 16px; line-height: 1.65;
  color: rgba(244,242,236,.7); margin: 0 0 16px;
}
@media (max-width: 900px) {
  .about-split__inner { grid-template-columns: 1fr; }
}

.about-pillars { padding: clamp(60px, 9vh, 100px) clamp(18px, 4vw, 48px); }
.about-pillars__inner { max-width: 1440px; margin: 0 auto; }

.feats-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.feat-card {
  padding: 32px 28px 36px;
  background: var(--ink);
  display: flex; flex-direction: column;
  transition: background .3s ease;
}
.feat-card:hover { background: rgba(255,212,0,.03); }
.feat-card__ico {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255,212,0,.08);
  color: var(--yellow);
  margin-bottom: 24px;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.feat-card:hover .feat-card__ico { transform: rotate(-6deg) scale(1.05); }
.feat-card__ico svg {
  width: 24px; height: 24px;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.feat-card__num {
  font-family: "Figtree", var(--f-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .22em;
  color: rgba(244,242,236,.4);
  margin-bottom: 8px;
}
.feat-card h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -.01em;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--paper);
}
.feat-card p {
  font-family: "Figtree", var(--f-body);
  font-weight: 300;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(244,242,236,.65);
  margin: 0;
}
.feat-card p b { color: var(--paper); font-weight: 500; }

@media (max-width: 900px) {
  .feats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .feats-grid { grid-template-columns: 1fr; }
}

.guarantee {
  padding: clamp(70px, 10vh, 120px) clamp(18px, 4vw, 48px);
  background: var(--ink);
}
.guarantee__inner {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.guarantee__photo {
  position: relative; margin: 0;
  border-radius: 16px; overflow: hidden;
  background: #0a0a0a;
  aspect-ratio: 3 / 4;
  max-height: 640px;
}
.guarantee__photo img,
.guarantee__photo video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.guarantee__photo-tag {
  position: absolute; left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px 9px 10px;
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  font-family: "Figtree", var(--f-body);
  font-weight: 500;
  font-size: 12.5px;
  color: var(--paper);
}
.guarantee__photo-tag .ico { width: 16px; height: 16px; color: var(--yellow); }

.guarantee__body .eyebrow { display: block; margin-bottom: 14px; color: var(--yellow); }
.guarantee__body h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -.03em;
  margin: 0;
  color: var(--paper);
  max-width: 24ch;
}
.guarantee__body h3 em { font-style: normal; color: var(--yellow); }

.guarantee__strip {
  max-width: 1440px; margin: clamp(40px, 6vw, 64px) auto 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.strip-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden; border-radius: 10px;
  background: #141414;
}
.strip-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.strip-img:hover img { transform: scale(1.08); }
@media (max-width: 1000px) { .guarantee__strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .guarantee__strip { grid-template-columns: repeat(2, 1fr); } }
.guarantee__intro {
  font-family: "Figtree", var(--f-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244,242,236,.7);
  margin: 20px 0 28px;
  max-width: 56ch;
}
.guarantee__intro b { color: var(--paper); font-weight: 500; }
.guarantee__items {
  list-style: none; margin: 32px 0 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.guarantee__items li {
  padding: 22px 24px 22px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.guarantee__items li:nth-child(odd) { padding-right: 28px; border-right: 1px solid var(--line); }
.guarantee__items li:nth-child(even) { padding-left: 28px; }
.guarantee__items b {
  display: inline-block;
  font-family: "Figtree", var(--f-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--yellow);
  margin-bottom: 8px;
}
.guarantee__items h5 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -.005em;
  line-height: 1.25;
  margin: 0 0 8px;
  color: var(--paper);
}
.guarantee__items p {
  font-family: "Figtree", var(--f-body);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(244,242,236,.62);
  margin: 0;
}

.guarantee__footer {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.guarantee__footer p {
  margin: 0;
  font-family: "Figtree", var(--f-body);
  font-weight: 300;
  font-size: 13.5px;
  color: rgba(244,242,236,.6);
  max-width: 44ch;
}
.guarantee__footer b {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--paper);
  margin-bottom: 2px;
  letter-spacing: -.005em;
}
.guarantee__link {
  font-family: "Figtree", var(--f-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--yellow);
  transition: gap .25s ease;
  flex-shrink: 0;
}
.guarantee__link:hover { text-decoration: underline; }

@media (max-width: 560px) {
  .guarantee__items { grid-template-columns: 1fr; }
  .guarantee__items li:nth-child(odd) { padding-right: 0; border-right: 0; }
  .guarantee__items li:nth-child(even) { padding-left: 0; }
}
@media (max-width: 900px) {
  .guarantee__inner { grid-template-columns: 1fr; }
}

.certs {
  padding: clamp(60px, 10vh, 120px) clamp(18px, 4vw, 48px);
}
.certs__inner { max-width: 1440px; margin: 0 auto; }
.certs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 32px;
}
.cert {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: color .2s ease;
}
.certs__grid .cert:last-child { border-right: 0; }
.cert:hover h4 { color: var(--yellow); }
.cert__logo {
  height: 40px; display: flex; align-items: center;
  margin-bottom: 18px;
}
.cert__logo img {
  height: 100%; width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.cert h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -.01em;
  margin: 0 0 8px;
  color: var(--paper);
}
.cert p {
  font-family: "Figtree", var(--f-body);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(244,242,236,.6);
  margin: 0 0 16px;
}
.cert__points {
  list-style: none; margin: 0 0 18px; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.cert__points li {
  display: flex; align-items: center; gap: 8px;
  font-family: "Figtree", var(--f-body);
  font-weight: 400;
  font-size: 13px;
  color: rgba(244,242,236,.7);
}
.cert__points li::before {
  content: ""; display: inline-block;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--yellow);
}
.cert__badge {
  margin-top: auto;
  align-self: flex-start;
  font-family: "Figtree", var(--f-body);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,212,0,.08);
  border: 1px solid rgba(255,212,0,.2);
}
@media (max-width: 1000px) { .certs__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .certs__grid { grid-template-columns: 1fr; } }

.features { padding: clamp(60px, 10vh, 120px) clamp(18px, 4vw, 48px); }
.features__inner { max-width: 1440px; margin: 0 auto; }

.feats { list-style: none; margin: 0; padding: 0; }
.feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
  padding: clamp(50px, 8vh, 90px) 0;
  border-top: 1px solid var(--line);
}
.feat:last-child { border-bottom: 1px solid var(--line); }
.feat--rev .feat__side--num { order: 2; text-align: right; }
.feat--rev .feat__side--text { order: 1; }

.feat__side--num {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 28px;
  position: relative;
}
.feat--rev .feat__side--num { align-items: flex-end; }

.feat__num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(60px, 10vw, 140px);
  line-height: .9;
  letter-spacing: -.04em;
  color: rgba(255,255,255,.05);
  user-select: none;
}
.feat__icon {
  width: clamp(64px, 8vw, 96px);
  height: clamp(64px, 8vw, 96px);
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,212,0,.04);
  color: var(--yellow);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), background .3s ease;
}
.feat:hover .feat__icon {
  transform: rotate(-6deg) scale(1.05);
  background: rgba(255,212,0,.1);
}
.feat__icon svg {
  width: 60%; height: 60%;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

.feat__side--text h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0 0 16px;
  color: var(--paper);
}
.feat__side--text p {
  font-family: "Figtree", var(--f-body);
  font-weight: 300;
  font-size: clamp(14.5px, 1.1vw, 17px);
  line-height: 1.6;
  color: rgba(244,242,236,.72);
  margin: 0 0 20px;
  max-width: 56ch;
}
.feat__side--text p b { color: var(--paper); font-weight: 500; }
.feat__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.feat__tags span {
  font-family: "Figtree", var(--f-body);
  font-weight: 500;
  font-size: 11.5px;
  color: rgba(244,242,236,.7);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}

@media (max-width: 820px) {
  .feat, .feat--rev { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .feat__side--num, .feat--rev .feat__side--num {
    flex-direction: row; align-items: center; gap: 20px;
    order: 1; text-align: left;
  }
  .feat--rev .feat__side--text { order: 2; }
  .feat__num { font-size: clamp(48px, 14vw, 88px); }
  .feat__icon { width: 64px; height: 64px; }
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.pillar {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.02);
}
.pillar__num {
  font-family: "Figtree", var(--f-body); font-weight: 500;
  font-size: 11px; letter-spacing: .22em; color: var(--yellow);
}
.pillar h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 22px; letter-spacing: -.01em;
  margin: 12px 0 10px; color: var(--paper);
}
.pillar p {
  font-family: "Figtree", var(--f-body); font-weight: 300;
  font-size: 14.5px; line-height: 1.6;
  color: rgba(244,242,236,.7); margin: 0;
}
@media (max-width: 720px) { .pillars { grid-template-columns: 1fr; } }

.kt-quick { padding: 0 clamp(18px, 4vw, 48px) clamp(40px, 6vh, 70px); }
.kt-quick__inner {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.kt-quick__card {
  display: grid; grid-template-columns: 48px 1fr auto; align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.015);
  color: var(--paper);
  transition: border-color .2s ease, background .2s ease;
}
.kt-quick__card:hover { border-color: rgba(255,212,0,.45); background: rgba(255,212,0,.04); }
.kt-quick__ico {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: rgba(255,212,0,.08);
  border-radius: 12px;
  color: var(--yellow);
}
.kt-quick__ico svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.kt-quick__meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.kt-quick__label {
  font-family: "Figtree", var(--f-body); font-weight: 500;
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(244,242,236,.5);
}
.kt-quick__val {
  font-family: var(--f-display); font-weight: 600;
  font-size: 19px; letter-spacing: -.015em;
  color: var(--paper);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.kt-quick__sub {
  font-family: "Figtree", var(--f-body); font-weight: 300;
  font-size: 12px; color: rgba(244,242,236,.55);
  line-height: 1.4; margin-top: 2px;
}
.kt-quick__arrow {
  font-family: "Figtree", var(--f-body); font-size: 18px;
  color: rgba(244,242,236,.35);
  transition: color .2s ease, transform .2s ease;
}
.kt-quick__card:hover .kt-quick__arrow { color: var(--yellow); transform: translateX(3px); }

@media (max-width: 980px) { .kt-quick__inner { grid-template-columns: 1fr; } }

.kt-split { padding: clamp(20px, 3vh, 40px) clamp(18px, 4vw, 48px) clamp(40px, 6vh, 80px); }
.kt-split__inner {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(32px, 5vw, 72px);
  align-items: flex-start;
}
.kt-split__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.04; letter-spacing: -.02em;
  color: var(--paper);
  margin: 14px 0 16px;
}
.kt-split__title em { font-style: normal; color: var(--yellow); }
.kt-split__lead {
  font-family: "Figtree", var(--f-body); font-weight: 300;
  font-size: 15px; line-height: 1.6;
  color: rgba(244,242,236,.7);
  margin: 0 0 32px; max-width: 58ch;
}

.kt-form { display: flex; flex-direction: column; gap: 14px; }
.kt-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.kt-form__field { display: flex; flex-direction: column; gap: 6px; }
.kt-form__field > span {
  font-family: "Figtree", var(--f-body); font-weight: 500;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(244,242,236,.55);
}
.kt-form__field input,
.kt-form__field textarea,
.kt-form__field select {
  width: 100%;
  padding: 13px 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--paper);
  font-family: "Figtree", var(--f-body);
  font-size: 14px;
  transition: border-color .18s ease, background .18s ease;
}
.kt-form__field input:focus,
.kt-form__field textarea:focus,
.kt-form__field select:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(255,212,0,.04);
}
.kt-form__field textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.kt-form__consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: "Figtree", var(--f-body);
  font-size: 12.5px; color: rgba(244,242,236,.6);
  line-height: 1.5;
  margin-top: 4px;
}
.kt-form__consent input { margin-top: 3px; accent-color: var(--yellow); }
.kt-form__consent a { color: var(--yellow); }
.kt-form__actions {
  display: flex; align-items: center; gap: 16px; margin-top: 8px;
  flex-wrap: wrap;
}
.kt-form__msg {
  font-family: "Figtree", var(--f-body); font-size: 13px;
  color: rgba(244,242,236,.7);
}

.kt-split__right { display: flex; flex-direction: column; gap: 20px; }
.kt-info {
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.02);
}
.kt-info--quiet { background: transparent; }
.kt-info .eyebrow { display: block; margin-bottom: 8px; }
.kt-info__title {
  font-family: var(--f-display); font-weight: 600;
  font-size: 22px; letter-spacing: -.015em; line-height: 1.25;
  color: var(--paper); margin: 0 0 18px;
}
.kt-info__title--sm { font-size: 17px; margin-bottom: 14px; }
.kt-info__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.kt-info__list--dense { gap: 12px; }
.kt-info__list li { display: flex; flex-direction: column; gap: 3px; }
.kt-info__list span {
  font-family: "Figtree", var(--f-body); font-weight: 500;
  font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(244,242,236,.45);
}
.kt-info__list b {
  font-family: "Figtree", var(--f-body); font-weight: 500;
  font-size: 14px; color: var(--paper);
  line-height: 1.4;
}
.kt-info__list i {
  font-style: normal;
  font-family: "Figtree", var(--f-body); font-weight: 300;
  font-size: 12.5px; color: rgba(244,242,236,.55);
}
.kt-info__list a { color: inherit; border-bottom: 1px dotted rgba(244,242,236,.3); }
.kt-info__list a:hover { color: var(--yellow); border-color: var(--yellow); }
.kt-info__note {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: "Figtree", var(--f-body); font-weight: 300;
  font-size: 12.5px; color: rgba(244,242,236,.5);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .kt-split__inner { grid-template-columns: 1fr; }
  .kt-form__row { grid-template-columns: 1fr; }
}

.kt-map { padding: 0 clamp(18px, 4vw, 48px) clamp(40px, 6vh, 70px); }
.kt-map__inner { max-width: 1440px; margin: 0 auto; }
.kt-map__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 22px; flex-wrap: wrap;
}
.kt-map__title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(22px, 2.3vw, 34px); letter-spacing: -.02em;
  color: var(--paper); margin: 6px 0 0;
}
.kt-map__title em { font-style: normal; color: var(--yellow); }
.kt-map__dir {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Figtree", var(--f-body); font-weight: 500;
  font-size: 13px; color: var(--yellow);
}
.kt-map__dir:hover { text-decoration: underline; }
.kt-map__frame iframe { filter: invert(.9) hue-rotate(180deg) contrast(.95); display: block; }

.kt-faq { padding: clamp(30px, 5vh, 60px) clamp(18px, 4vw, 48px) clamp(70px, 10vh, 120px); }
.kt-faq__inner { max-width: 1100px; margin: 0 auto; }
.kt-faq__inner .eyebrow { display: block; margin-bottom: 10px; }
.kt-faq__title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(24px, 2.6vw, 38px); letter-spacing: -.02em;
  color: var(--paper); margin: 0 0 28px;
}
.kt-faq__title em { font-style: normal; color: var(--yellow); }
.kt-faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.kt-faq__item {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.kt-faq__item summary {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--f-display); font-weight: 500;
  font-size: 15.5px; color: var(--paper);
  letter-spacing: -.005em;
  padding-right: 28px;
  position: relative;
  list-style: none;
}
.kt-faq__item summary::-webkit-details-marker { display: none; }
.kt-faq__item summary::after {
  content: "+";
  position: absolute; right: 0; top: 0;
  font-family: var(--f-display); font-weight: 400;
  font-size: 22px; line-height: 1;
  color: var(--yellow);
  transition: transform .25s ease;
}
.kt-faq__item[open] summary::after { transform: rotate(45deg); }
.kt-faq__item p {
  font-family: "Figtree", var(--f-body); font-weight: 300;
  font-size: 13.5px; line-height: 1.6;
  color: rgba(244,242,236,.65);
  margin: 10px 0 4px; max-width: 64ch;
}
@media (max-width: 820px) { .kt-faq__grid { grid-template-columns: 1fr; } }

.legal { padding: 0 clamp(18px, 4vw, 48px) clamp(60px, 10vh, 120px); }
.legal__inner { max-width: 880px; margin: 0 auto; }
.legal__note {
  margin-top: 32px;
  padding: 16px 20px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  font-size: 12.5px;
  color: rgba(244,242,236,.5);
}

.footer {
  padding: 40px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
  font-family: "Figtree", var(--f-body);
  font-size: 12px;
  color: rgba(244,242,236,.45);
  text-align: center;
}
.footer__inner { max-width: 1440px; margin: 0 auto; }

.gallery {
  background: var(--ink);
  padding: clamp(80px, 12vh, 140px) clamp(18px, 4vw, 48px);
}
.gallery__inner { max-width: 1440px; margin: 0 auto; }
.gallery__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; flex-wrap: wrap;
  margin-bottom: clamp(36px, 6vh, 60px);
}
.gallery__head .eyebrow { display: block; margin-bottom: 16px; }
.gallery__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--paper);
  max-width: 18ch;
}
.gallery__title em { font-style: normal; color: var(--yellow); }

.gallery__split {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(16px, 2.2vw, 24px);
  align-items: stretch;
}
.gallery__side {
  display: flex; flex-direction: column;
  gap: 16px;
  background: rgba(255,255,255,.025);
  border-radius: 22px;
  padding: 16px;
}
.gallery__video {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #0a0a0a;
  aspect-ratio: 9 / 16;
  flex: 1;
  min-height: 0;
}
.gallery__cta { justify-content: center; }
.gallery__video video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: clamp(10px, 1.2vw, 14px);
  min-height: 0;
}
.real-tile {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #141414;
  transition: transform .3s ease;
  color: var(--paper);
  min-height: 0;
}
.real-tile:hover { transform: translateY(-3px); }
.real-tile img, .real-tile video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.real-tile:hover img, .real-tile:hover video { transform: scale(1.04); }
.real-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.25) 40%, transparent 60%);
}
.real-tile__name {
  position: absolute; left: 14px; bottom: 12px; z-index: 1;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -.01em;
  color: var(--paper);
}
.real-tile__ph {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,.04) 100%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.015) 0 2px, transparent 2px 12px);
  display: grid; place-items: center;
  color: rgba(244,242,236,.25);
  font-family: "Figtree", var(--f-body);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.gallery__footer {
  display: flex; justify-content: center;
  margin-top: clamp(28px, 4vh, 44px);
}

@media (max-width: 1080px) {
  .gallery__split { grid-template-columns: 1fr; }
  .gallery__video { aspect-ratio: 16 / 10; max-height: 480px; justify-self: stretch; }
  .gallery__video video { object-position: center 35%; }
  .gallery__side { padding: 12px; }
}
@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.more-link {
  margin: 28px auto 0;
  display: flex; align-items: center; gap: 14px;
  padding: 10px 20px 10px 14px;
  width: fit-content;
  max-width: 780px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-family: "Figtree", var(--f-body);
  font-weight: 300;
  font-size: 13px;
  color: rgba(244,242,236,.65);
  transition: border-color .25s ease, color .25s ease, background .25s ease;
}
.more-link:hover {
  border-color: rgba(255,212,0,.35);
  color: var(--paper);
  background: rgba(255,212,0,.04);
}
.more-link svg {
  flex-shrink: 0;
  width: 14px; height: 14px;
  fill: none; stroke: var(--yellow); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.more-link em {
  flex-shrink: 0;
  font-style: normal;
  font-weight: 500;
  color: var(--yellow);
  padding-left: 4px;
  border-left: 1px solid var(--line);
  margin-left: 2px;
  padding-left: 14px;
}
.more-link span { line-height: 1.45; }

@media (max-width: 760px) {
  .more-link { flex-wrap: wrap; justify-content: center; text-align: center; padding: 12px 18px; }
  .more-link em { border-left: 0; padding-left: 0; margin-left: 0; }
}
@media (max-width: 560px) {
  .tiles { grid-template-columns: 1fr; }
  .tile, .tile--big { min-height: 240px; }
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  display: flex; flex-direction: column;
  background: #111;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  color: var(--paper);
  transition: border-color .3s ease, transform .3s ease;
}
.card:hover { border-color: rgba(255,212,0,.35); transform: translateY(-4px); }
.card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0a0a0a;
}
.card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.card:hover .card__img img { transform: scale(1.05); }

.card__body {
  padding: 22px 24px 26px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.card__num {
  font-family: "Figtree", var(--f-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--yellow);
}
.card__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--paper);
}
.card__desc {
  font-family: "Figtree", var(--f-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(244,242,236,.65);
  margin: 0;
}
.card__desc b { color: var(--paper); font-weight: 500; }
.card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: auto; padding-top: 14px;
  font-family: "Figtree", var(--f-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--yellow);
  transition: gap .25s ease;
}
.card__cta svg {
  width: 16px; height: 16px; fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.card:hover .card__cta { gap: 14px; }

.card--hero {
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  grid-template-rows: 1fr auto;
}
.card--hero .card__img { aspect-ratio: auto; min-height: 340px; }
.card--hero .card__body {
  padding: 28px 32px 32px;
  gap: 14px;
}
.card--hero .card__title {
  font-size: clamp(26px, 2.8vw, 36px);
  max-width: 18ch;
}
.card--hero .card__desc { font-size: 15px; max-width: 58ch; }

@media (max-width: 960px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .card--hero { grid-column: span 2; grid-row: span 1; grid-template-rows: auto auto; }
  .card--hero .card__img { min-height: 0; aspect-ratio: 16 / 9; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .card--hero { grid-column: span 1; }
}

/* ---------- menu mobile ---------- */
.nav__mobile-head,
.nav__mobile-sub,
.nav__mobile-foot { display: none; }

@media (max-width: 960px) {
  /* oferta ukryta na mobile */
  .nav__menu .nav__has-mega { display: none !important; }

  .nav__menu {
    padding: 24px 22px 60px !important;
    gap: 0 !important;
    font-size: 18px !important;
    background: #0a0a0a !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
  }

  .nav__mobile-head {
    display: flex;
    align-items: center;
    padding: 4px 0 16px;
    margin-bottom: 4px;
  }
  .nav__mobile-head img { height: 52px; width: auto; }

  .nav__menu > a,
  .nav__has-mega > a {
    position: relative;
    display: flex !important;
    align-items: center;
    gap: 14px;
    padding: 18px 0 !important;
    border-bottom: 1px solid var(--line);
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 22px;
    color: var(--paper);
    letter-spacing: -.01em;
  }
  .nav__menu > a[data-num]::before,
  .nav__has-mega > a[data-num]::before {
    content: attr(data-num);
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .2em;
    color: var(--yellow);
    opacity: .7;
    min-width: 30px;
  }
  .nav__has-mega { padding: 0; margin: 0; }
  .nav__has-mega > a .nav__chev { display: none; }

  .nav__mobile-sub {
    display: block;
    margin-top: 22px;
    padding-top: 4px;
  }
  /* kontakt bez separatora */
  .nav__menu > a:last-of-type { border-bottom: 0; }
  .nav__mobile-sub__label {
    display: block;
    font-family: var(--f-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: rgba(244,242,236,.45);
    margin-bottom: 14px;
  }
  .nav__mobile-sub ul {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
  }
  .nav__mobile-sub li a {
    display: block;
    padding: 6px 0;
    font-family: "Figtree", var(--f-body);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.35;
    color: rgba(244,242,236,.62);
    border: 0 !important;
  }
  .nav__mobile-sub li a:hover,
  .nav__mobile-sub li a:active { color: var(--yellow); }

  .nav__mobile-foot {
    display: block;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }
  .nav__mobile-cta {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%;
    padding: 14px 18px;
    background: var(--yellow);
    color: var(--yellow-ink) !important;
    font-family: var(--f-body);
    font-weight: 600;
    font-size: 15px;
    border-radius: 2px;
    border: 0 !important;
    margin-bottom: 22px;
    cursor: pointer;
  }
  .nav__mobile-cta .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--ink);
  }
  .nav__mobile-contact {
    display: flex; flex-direction: column; gap: 14px;
  }
  .nav__mobile-contact > a,
  .nav__mobile-contact > div {
    display: flex !important; align-items: flex-start !important; gap: 12px;
    padding: 0 !important;
    border: 0 !important;
    font-family: "Figtree", var(--f-body) !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    color: rgba(244,242,236,.75) !important;
    letter-spacing: 0 !important;
  }
  .nav__mobile-contact .ico { color: var(--yellow); margin-top: 2px; flex-shrink: 0; }
  .nav__mobile-contact span { display: inline-flex; flex-direction: column; }
  .nav__mobile-contact b {
    display: block;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--paper);
    margin-bottom: 2px;
  }

  /* sticky nav */
  .nav.is-stuck { padding-top: 8px; padding-bottom: 8px; }
  .nav.is-stuck .brand-strip img { height: 40px; }
  .nav.is-open.is-stuck { background: transparent; border-bottom: 0; backdrop-filter: none; }
  .nav.is-open .nav__burger { position: relative; z-index: 65; }
  body.is-nav-open .nav__menu { transform: translateY(0) !important; }
}

/* ---------- hero mobile ---------- */
@media (max-width: 720px) {
  .hero { min-height: 88vh; padding-top: 90px; }
  .hero__scrim {
    background:
      linear-gradient(180deg,
        rgba(10,10,10,.35) 0%,
        rgba(10,10,10,.2) 40%,
        rgba(10,10,10,.55) 80%,
        #0a0a0a 100%);
  }
  .hero__video { height: 100%; }
  .hero__body { gap: 14px; }
  .hero__lead { max-width: 38ch; }
}

/* ---------- pracujemy na ---------- */
@media (max-width: 720px) {
  .partners {
    flex-wrap: nowrap !important;
    padding: 8px 12px !important;
    gap: 8px !important;
    width: 100%;
    justify-content: center;
  }
  .partners__label { font-size: 9px; letter-spacing: .05em; flex-shrink: 0; }
  .partners img { height: 16px !important; }
  .partners img[alt*="PerfectShield" i] { height: 18px !important; transform: translateY(2px); }
  .partners img[alt*="Gtechniq" i] { height: 15px !important; transform: translateY(2px); margin-right: -12px; }
  .partners__dot { width: 3px; height: 3px; }
}

/* ---------- kafle uslug ---------- */
@media (max-width: 720px) {
  .services { padding: clamp(56px, 9vh, 90px) clamp(16px, 4vw, 48px); }
  .services__head { gap: 18px; margin-bottom: 22px; }
  .services__title { font-size: clamp(24px, 7vw, 32px); }
  .services__lead { font-size: 14px; }

  .tiles { grid-template-columns: 1fr !important; gap: 10px !important; }
  .tile, .tile--big {
    grid-column: span 1 !important;
    min-height: 220px !important;
  }
  .tile::before {
    background: linear-gradient(0deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.7) 35%, rgba(0,0,0,.35) 70%, rgba(0,0,0,.15) 100%) !important;
  }
  .tile__inner { padding: 16px 16px 16px !important; }
  .tile__title, .tile--big .tile__title {
    font-size: 16px !important; margin-bottom: 4px !important;
  }
  .tile__text {
    font-size: 12px !important;
    line-height: 1.45 !important;
    margin-bottom: 8px !important;
    /* max 2 linie */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .tile__tags { gap: 4px !important; }
  .tile__tags span {
    font-size: 9.5px !important;
    padding: 3px 7px !important;
    letter-spacing: 0;
  }

  .more-link {
    padding: 9px 14px !important;
    font-size: 11px !important;
    gap: 8px !important;
    max-width: 100%;
  }
  .more-link svg { width: 14px; height: 14px; }
}

/* ---------- manifest ---------- */
@media (max-width: 900px) {
  .statement__bg {
    background-attachment: scroll !important;
    inset: 0 !important;
    background-position: center center !important;
  }
  .statement { min-height: 56vh; }
  .statement__quote { font-size: clamp(22px, 6vw, 32px); max-width: 20ch; }
  .statement__sub { font-size: 14px; }
}

/* ---------- galeria mobile ---------- */
@media (max-width: 720px) {
  .gallery { padding: clamp(56px, 8vh, 90px) 16px; }
  .gallery__split { gap: 14px; }
  .gallery__side { padding: 8px; border-radius: 14px; }
  .gallery__video { aspect-ratio: 16 / 10; max-height: 320px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
  .real-tile__name { font-size: 12px; left: 10px; bottom: 8px; }
}

/* ---------- stopka kontakt ---------- */
.foot__row,
.foot__row *,
.foot__link,
.foot__link * {
  color: inherit !important;
  text-decoration: none !important;
}
.foot__row,
.foot__link { color: rgba(244,242,236,.62); }
.foot__row:hover,
.foot__link:hover,
.foot__row:hover *,
.foot__link:hover * { color: var(--paper) !important; }
.foot__row .ico,
.foot__social .ico { color: var(--yellow) !important; }

/* ---------- more-link ---------- */
@media (max-width: 560px) {
  .more-link em { font-size: 10.5px; }
  .more-link span { font-size: 11px; line-height: 1.3; }
}
