/* Defines global CSS custom properties (colors, fonts, easing curves) used site-wide */
:root {
  /* CSS declaration line */
  --black: #0a0a0a;
  --coal: #121212;
  --panel: #181818;
  /* CSS declaration line */
  --yellow: #ffe100;
  --yellow-dim: #b8a400;
  --bone: #edebe3;
  --grey: #8a8a82;
  /* CSS declaration line */
  --line: rgba(237, 235, 227, 0.14);
  /* CSS declaration line */
  --display: "Anton", Impact, sans-serif;
  /* CSS declaration line */
  --body: "Archivo", -apple-system, Helvetica, sans-serif;
  /* CSS declaration line */
  --mono: "JetBrains Mono", ui-monospace, monospace;
  /* CSS declaration line */
  --ease: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  /* End of the CSS rule block above / closes rule */
}
/* Style rule(s) for: * */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Style rule(s) for: body */
body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* Style rule(s) for: ::selection */
::selection {
  background: var(--yellow);
  color: var(--black);
}
/* Style rule(s) for: a */
a {
  color: inherit;
  text-decoration: none;
}
/* Style rule(s) for: button */
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  text-align: left;
}
/* Style rule(s) for: body::after */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 5000;
  pointer-events: none;
  opacity: 0.05;
  /* CSS declaration line */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  /* End of the CSS rule block above / closes rule */
  animation: grain 8s steps(10) infinite;
}
/* Keyframe animation named 'grain' */
@keyframes grain {
  0%,
  100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -8%);
  }
  30% {
    transform: translate(4%, -4%);
  }
  50% {
    transform: translate(-6%, 6%);
  }
  70% {
    transform: translate(6%, 3%);
  }
  90% {
    transform: translate(-3%, 8%);
  }
}
/* Style rule(s) for: .stripe */
.stripe {
  height: 16px;
  background: repeating-linear-gradient(
    -45deg,
    var(--yellow) 0 22px,
    var(--black) 22px 44px
  );
}
/* Style rule(s) for: .cursor-dot,.cursor-ring */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
/* Style rule(s) for: .cursor-dot */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
}
/* Style rule(s) for: .cursor-ring */
.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--yellow);
  transition:
    width 0.35s var(--ease-out),
    height 0.35s var(--ease-out),
    opacity 0.3s;
}
/* Style rule(s) for: .cursor-ring.is-hover */
.cursor-ring.is-hover {
  width: 70px;
  height: 70px;
  opacity: 0.7;
}
/* Responsive breakpoint override for smaller screens */
@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}
/* Style rule(s) for: .preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--black);
  color: var(--bone);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 4vw, 48px);
  transition: transform 1s var(--ease);
}
/* Style rule(s) for: .preloader.is-done */
.preloader.is-done {
  transform: translateY(-101%);
}
/* Style rule(s) for: .pl-top */
.pl-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey);
}
/* Style rule(s) for: .pl-count */
.pl-count {
  font-family: var(--display);
  font-size: clamp(100px, 22vw, 300px);
  line-height: 0.85;
  align-self: flex-end;
  color: var(--yellow);
  font-variant-numeric: tabular-nums;
}
/* Style rule(s) for: .pl-word */
.pl-word {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--grey);
}
/* Style rule(s) for: .pl-bar */
.pl-bar {
  height: 3px;
  background: var(--panel);
  margin-top: 14px;
  overflow: hidden;
}
/* Style rule(s) for: .pl-bar i */
.pl-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--yellow);
}
/* Style rule(s) for: .nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 4vw, 48px);
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.85),
    rgba(10, 10, 10, 0)
  );
  transform: translateY(-120%);
  transition: transform 0.9s var(--ease) 0.1s;
}
/* Style rule(s) for: .nav.is-in */

.dropdown {
  position: relative;
}

.dropbtn {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 10px 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #111;
  border: 1px solid #333;
  z-index: 9999;
}

.dropdown-content a {
  display: block;
  color: #fff;
  padding: 12px 15px;
  text-decoration: none;
}

.dropdown-content a:hover {
  background: #222;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.nav.is-in {
  transform: translateY(0);
}
/* Style rule(s) for: .nav-logo */
.nav-logo {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--yellow);
}
/* Style rule(s) for: .nav-links */
.nav-links {
  display: flex;
  gap: 32px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
/* Style rule(s) for: .nav-links a */
.nav-links a {
  position: relative;
  padding: 4px 0;
  color: var(--bone);
}
/* Style rule(s) for: .nav-links a::after */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
/* Style rule(s) for: .nav-links a:hover::after */
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
/* Style rule(s) for: .nav-cta */
.nav-cta {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: var(--yellow);
  color: var(--black);
  padding: 11px 22px;
  font-weight: 500;
  clip-path: polygon(
    8px 0,
    100% 0,
    100% calc(100% - 8px),
    calc(100% - 8px) 100%,
    0 100%,
    0 8px
  );
  transition: background 0.3s;
}
/* Style rule(s) for: .nav-cta:hover */
.nav-cta:hover {
  background: var(--bone);
}
/* Responsive breakpoint override for smaller screens */
@media (max-width: 760px) {
  .nav-links {
    display: none;
  }
}
/* ===== STORY ===== */
/* Style rule(s) for: .story */
.story {
  height: 680vh;
  position: relative;
}
/* Style rule(s) for: .story-pin */
.story-pin {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: var(--black);
}
/* Style rule(s) for: #vidVibe */
#vidVibe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}
/* Style rule(s) for: #vidVibe.on */
#vidVibe.on {
  opacity: 1;
}
/* Style rule(s) for: #seqCanvas */
#seqCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 0.45s ease;
}
/* Style rule(s) for: #seqCanvas.on */
#seqCanvas.on {
  opacity: 1;
}
/* Style rule(s) for: .story-shade */
.story-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0) 30%,
    rgba(10, 10, 10, 0) 55%,
    rgba(10, 10, 10, 0.72) 100%
  );
}
/* Style rule(s) for: .idle-overlay */
.idle-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(20px, 4vw, 48px) clamp(90px, 14vh, 140px);
  pointer-events: none;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
/* Style rule(s) for: .idle-overlay.off */
.idle-overlay.off {
  opacity: 0;
  transform: translateY(-30px);
}
/* Style rule(s) for: .idle-kicker */
.idle-kicker {
  font-family: var(--mono);
  font-size: clamp(11px, 1.2vw, 13px);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--yellow);
  margin-bottom: 14px;
}
/* Style rule(s) for: .idle-title */
.idle-title {
  font-family: var(--display);
  font-size: clamp(64px, 14.5vw, 15rem);
  line-height: 0.86;
  text-transform: uppercase;
  color: var(--bone);
}
/* Style rule(s) for: .idle-title span */
.idle-title span {
  color: var(--yellow);
}
/* Style rule(s) for: .idle-sub */
.idle-sub {
  font-family: var(--mono);
  font-size: clamp(11px, 1.2vw, 13px);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--grey);
  margin-top: 22px;
}
/* Style rule(s) for: .beat */
.beat {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 clamp(20px, 4vw, 48px) clamp(90px, 15vh, 150px);
  pointer-events: none;
}
/* Style rule(s) for: .beat .b-num */
.beat .b-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.12s ease,
    transform 0.12s ease;
}
/* Style rule(s) for: .beat h2 */
.beat h2 {
  font-family: var(--display);
  font-size: clamp(52px, 11vw, 170px);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 10px 0 14px;
  clip-path: inset(0 0 100% 0);
  transform: translateY(40px);
  transition:
    clip-path 0.12s ease,
    transform 0.12s ease;
}
/* Style rule(s) for: .beat p */
.beat p {
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(14px, 1.5vw, 19px);
  color: var(--bone);
  max-width: 38ch;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.12s ease,
    transform 0.12s ease;
}
/* Style rule(s) for: .beat.on .b-num */
.beat.on .b-num {
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.5s var(--ease-out);
}
/* Style rule(s) for: .beat.on h2 */
.beat.on h2 {
  transition:
    clip-path 0.7s var(--ease),
    transform 0.7s var(--ease);
}
/* Style rule(s) for: .beat.on p */
.beat.on p {
  transition:
    opacity 0.6s var(--ease-out) 0.15s,
    transform 0.6s var(--ease-out) 0.15s;
}
/* Style rule(s) for: .beat.on .b-num */
.beat.on .b-num {
  opacity: 1;
  transform: none;
}
/* Style rule(s) for: .beat.on h2 */
.beat.on h2 {
  clip-path: inset(0 0 -10% 0);
  transform: none;
}
/* Style rule(s) for: .beat.on p */
.beat.on p {
  opacity: 1;
  transform: none;
}
/* Style rule(s) for: .beat.final */
.beat.final {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 0;
}
/* Style rule(s) for: .beat.final h2 */
.beat.final h2 {
  color: var(--bone);
}
/* Style rule(s) for: .beat.final h2 em */
.beat.final h2 em {
  font-style: normal;
  color: var(--yellow);
}
/* Style rule(s) for: .beat.final .b-hint */
.beat.final .b-hint {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-top: 26px;
  opacity: 0;
  transition: opacity 0.6s 0.3s;
}
/* Style rule(s) for: .beat.final.on .b-hint */
.beat.final.on .b-hint {
  opacity: 1;
  animation: pulse 2.2s ease-in-out infinite;
}
/* Style rule(s) for: .story-hud */
.story-hud {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(76px, 10vh, 110px) clamp(20px, 4vw, 48px)
    clamp(24px, 4vh, 40px);
  color: var(--bone);
}
/* Style rule(s) for: .hud-top */
.hud-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
/* Style rule(s) for: .hud-chapters */
.hud-chapters {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
/* Style rule(s) for: .hud-ch */
.hud-ch {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.3;
  transition:
    opacity 0.4s,
    color 0.4s;
  display: flex;
  gap: 12px;
  align-items: center;
}
/* Style rule(s) for: .hud-ch::before */
.hud-ch::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.4s var(--ease);
}
/* Style rule(s) for: .hud-ch.on */
.hud-ch.on {
  opacity: 1;
  color: var(--yellow);
}
/* Style rule(s) for: .hud-ch.on::before */
.hud-ch.on::before {
  width: 28px;
}
/* Style rule(s) for: .hud-index */
.hud-index {
  font-family: var(--display);
  font-size: clamp(16px, 1.8vw, 24px);
  color: var(--yellow);
}
/* Style rule(s) for: .hud-bottom */
.hud-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
/* Style rule(s) for: .hud-hint */
.hud-hint {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: pulse 2.2s ease-in-out infinite;
  color: var(--grey);
}
/* Keyframe animation named 'pulse' */
@keyframes pulse {
  50% {
    opacity: 0.4;
  }
}
/* Style rule(s) for: .hud-bar */
.hud-bar {
  width: 4px;
  height: clamp(120px, 24vh, 220px);
  background: rgba(237, 235, 227, 0.12);
  overflow: hidden;
  position: relative;
}
/* Style rule(s) for: .hud-bar i */
.hud-bar i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: var(--yellow);
}
/* Responsive breakpoint override for smaller screens */
@media (max-width: 760px) {
  .hud-chapters {
    display: none;
  }
}
/* ===== PAGE ===== */
/* Style rule(s) for: .marquee */
.marquee {
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  overflow: hidden;
  padding: 12px 0;
  background: var(--black);
}
/* Style rule(s) for: .marquee-track */
.marquee-track {
  display: flex;
  width: max-content;
  animation: mq 22s linear infinite;
}
/* Style rule(s) for: .marquee:hover .marquee-track */
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
/* Style rule(s) for: .marquee-track span */
.marquee-track span {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(22px, 3.4vw, 46px);
  white-space: nowrap;
  padding-right: 22px;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--bone);
}
/* Style rule(s) for: .marquee-track .dot */
.marquee-track .dot {
  width: 0.3em;
  height: 0.3em;
  background: var(--yellow);
  display: inline-block;
  transform: rotate(45deg);
}
/* Keyframe animation named 'mq' */
@keyframes mq {
  to {
    transform: translateX(-50%);
  }
}
/* Style rule(s) for: .marquee.yellow */
.marquee.yellow {
  background: var(--yellow);
  border-color: var(--black);
}
/* Style rule(s) for: .marquee.yellow span */
.marquee.yellow span {
  color: var(--black);
}
/* Style rule(s) for: .marquee.yellow .dot */
.marquee.yellow .dot {
  background: var(--black);
}
/* Style rule(s) for: .marquee.rev .marquee-track */
.marquee.rev .marquee-track {
  animation-direction: reverse;
}
/* Style rule(s) for: .section */
.section {
  padding: clamp(84px, 12vw, 170px) clamp(16px, 3vw, 40px);
  position: relative;
}
/* Style rule(s) for: .eyebrow */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(30px, 4vw, 60px);
  color: var(--grey);
}
/* Style rule(s) for: .eyebrow::before */
.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--yellow);
}
/* Style rule(s) for: .eyebrow em */
.eyebrow em {
  font-style: normal;
  color: var(--yellow);
}
/* Style rule(s) for: .reveal */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 1s var(--ease-out),
    transform 1s var(--ease-out);
}
/* Style rule(s) for: .reveal.in */
.reveal.in {
  opacity: 1;
  transform: none;
}
/* Style rule(s) for: .on-yellow */
.on-yellow {
  background: var(--yellow);
  color: var(--black);
}
/* Style rule(s) for: .on-yellow .eyebrow */
.on-yellow .eyebrow {
  color: rgba(10, 10, 10, 0.6);
}
/* Style rule(s) for: .on-yellow .eyebrow::before */
.on-yellow .eyebrow::before {
  background: var(--black);
}
/* Style rule(s) for: .on-yellow .eyebrow em */
.on-yellow .eyebrow em {
  color: var(--black);
}
/* Style rule(s) for: .manifesto p */
.manifesto p {
  font-family: var(--display);
  font-size: clamp(34px, 6.6vw, 100px);
  line-height: 1;
  max-width: 20ch;
  text-transform: uppercase;
}
/* Style rule(s) for: .manifesto .w */
.manifesto .w {
  color: rgba(237, 235, 227, 0.14);
  transition: color 0.5s var(--ease-out);
}
/* Style rule(s) for: .manifesto .w.lit */
.manifesto .w.lit {
  color: var(--bone);
}
/* Style rule(s) for: .manifesto .w.accent.lit */
.manifesto .w.accent.lit {
  color: var(--yellow);
}
/* Style rule(s) for: .svc-card */
.svc-card {
  position: sticky;
  top: clamp(70px, 10vh, 110px);
  background: var(--black);
  border-top: 2px solid var(--yellow);
  padding: clamp(24px, 4vw, 48px) 0 clamp(60px, 8vw, 110px);
}
/* Style rule(s) for: .svc-card:nth-child(2) */
.svc-card:nth-child(2) {
  top: calc(clamp(70px, 10vh, 110px) + 16px);
}
/* Style rule(s) for: .svc-card:nth-child(3) */
.svc-card:nth-child(3) {
  top: calc(clamp(70px, 10vh, 110px) + 32px);
}
/* Style rule(s) for: .svc-card:nth-child(4) */
.svc-card:nth-child(4) {
  top: calc(clamp(70px, 10vh, 110px) + 48px);
}
/* Style rule(s) for: .svc-head */
.svc-head {
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 3vw, 40px);
  flex-wrap: wrap;
}
/* Style rule(s) for: .svc-num */
.svc-num {
  font-family: var(--mono);
  font-size: clamp(12px, 1.4vw, 15px);
  color: var(--yellow);
  letter-spacing: 0.1em;
}
/* Style rule(s) for: .svc-name */
.svc-name {
  font-family: var(--display);
  font-size: clamp(44px, 9vw, 130px);
  line-height: 0.95;
  text-transform: uppercase;
  transition: color 0.4s;
}
/* Style rule(s) for: .svc-card:hover .svc-name */
.svc-card:hover .svc-name {
  color: var(--yellow);
}
/* Style rule(s) for: .svc-body */
.svc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: clamp(18px, 2.5vw, 30px);
  max-width: 1100px;
}
/* Style rule(s) for: .svc-body p */
.svc-body p {
  color: var(--grey);
  max-width: 52ch;
  font-size: clamp(14px, 1.3vw, 17px);
}
/* Style rule(s) for: .svc-tags */
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
}
/* Style rule(s) for: .svc-tags span */
.svc-tags span {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--line);
  padding: 8px 14px;
  transition: all 0.3s;
}
/* Style rule(s) for: .svc-tags span:hover */
.svc-tags span:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
/* Responsive breakpoint override for smaller screens */
@media (max-width: 760px) {
  .svc-body {
    grid-template-columns: 1fr;
  }
}
/* Style rule(s) for: .work-head */
.work-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: clamp(32px, 5vw, 64px);
}
/* Style rule(s) for: .work-title */
.work-title {
  font-family: var(--display);
  font-size: clamp(52px, 10vw, 150px);
  line-height: 0.92;
  text-transform: uppercase;
}
/* Style rule(s) for: .work-title em */
.work-title em {
  font-style: normal;
  color: var(--yellow);
}
/* Style rule(s) for: .work-count */
.work-count {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}
/* Style rule(s) for: .work-grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
  row-gap: clamp(44px, 7vw, 110px);
}
/* Style rule(s) for: .wk */
.wk {
  cursor: pointer;
}
/* Style rule(s) for: .wk:nth-child(1) */
.wk:nth-child(1) {
  grid-column: 1/7;
}
/* Style rule(s) for: .wk:nth-child(2) */
.wk:nth-child(2) {
  grid-column: 8/13;
  margin-top: clamp(60px, 10vw, 150px);
}
/* Style rule(s) for: .wk:nth-child(3) */
.wk:nth-child(3) {
  grid-column: 1/6;
  margin-top: clamp(-30px, -3vw, -60px);
}
/* Style rule(s) for: .wk:nth-child(4) */
.wk:nth-child(4) {
  grid-column: 7/13;
}
/* Style rule(s) for: .wk:nth-child(5) */
.wk:nth-child(5) {
  grid-column: 1/8;
}
/* Style rule(s) for: .wk:nth-child(6) */
.wk:nth-child(6) {
  grid-column: 9/13;
  margin-top: clamp(60px, 10vw, 150px);
}
/* Responsive breakpoint override for smaller screens */
@media (max-width: 760px) {
  .wk,
  .wk:nth-child(n) {
    grid-column: 1/13;
    margin-top: 0;
  }
}
/* Style rule(s) for: .wk-visual */
.wk-visual {
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}
/* Style rule(s) for: .wk:nth-child(odd) .wk-visual */
.wk:nth-child(odd) .wk-visual {
  aspect-ratio: 4/3;
}
/* Style rule(s) for: .wk:nth-child(even) .wk-visual */
.wk:nth-child(even) .wk-visual {
  aspect-ratio: 1/1;
}
/* Style rule(s) for: .wk-inner */
.wk-inner {
  position: absolute;
  inset: -12%;
  display: grid;
  place-items: center;
  will-change: transform;
}
/* Style rule(s) for: .wk .mark */
.wk .mark {
  font-family: var(--display);
  transition: transform 0.7s var(--ease);
  text-transform: uppercase;
}
/* Style rule(s) for: .wk:hover .mark */
.wk:hover .mark {
  transform: scale(1.1) rotate(-3deg);
}
/* Style rule(s) for: .wv-a */
.wv-a {
  background: var(--yellow);
  color: var(--black);
}
.wv-a .mark {
  font-size: clamp(80px, 11vw, 170px);
}
/* Style rule(s) for: .wv-b */
.wv-b {
  background: var(--panel);
  color: var(--bone);
}
.wv-b .mark {
  font-size: clamp(60px, 8.5vw, 130px);
  transform: skewX(-8deg);
}
/* Style rule(s) for: .wv-c */
.wv-c {
  background: var(--coal);
  color: var(--yellow);
}
.wv-c .mark {
  font-size: clamp(64px, 9vw, 140px);
  text-transform: lowercase;
  letter-spacing: -0.02em;
}
/* Style rule(s) for: .wv-d */
.wv-d {
  background: var(--bone);
  color: var(--black);
}
.wv-d .mark {
  font-size: clamp(64px, 9vw, 140px);
}
/* Style rule(s) for: .wv-e */
.wv-e {
  background: linear-gradient(135deg, #1e1b00, var(--black) 65%);
  color: var(--yellow);
}
.wv-e .mark {
  font-size: clamp(76px, 10.5vw, 165px);
}
/* Style rule(s) for: .wv-f */
.wv-f {
  background: repeating-linear-gradient(
    -45deg,
    var(--yellow) 0 16px,
    var(--black) 16px 32px
  );
  color: var(--yellow);
}
/* Style rule(s) for: .wv-f .mark */
.wv-f .mark {
  font-size: clamp(56px, 8.5vw, 130px);
  background: var(--black);
  padding: 0.08em 0.35em;
  border: 2px solid var(--yellow);
}
/* Style rule(s) for: .wk-cap */
.wk-cap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
/* Style rule(s) for: .wk-cap h3 */
.wk-cap h3 {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 30px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
/* Style rule(s) for: .wk-cap span */
.wk-cap span {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey);
}
/* Style rule(s) for: .stats-row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
/* Responsive breakpoint override for smaller screens */
@media (max-width: 900px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 56px;
  }
}
/* Style rule(s) for: .stat b */
.stat b {
  font-family: var(--display);
  display: block;
  font-size: clamp(60px, 9vw, 140px);
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}
/* Style rule(s) for: .stat span */
.stat span {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  display: block;
  margin-top: 12px;
  opacity: 0.75;
}
/* ===== TESTIMONIALS - giant sticky title, sheets stack over it ===== */
/* Style rule(s) for: .testi-sec */
.testi-sec {
  position: relative;
}
/* Style rule(s) for: .testi-head */
.testi-head {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* End of the CSS rule block above / closes rule */
  text-align: center;
  z-index: 0;
  padding: 0 16px;
}
/* Style rule(s) for: .testi-head .eyebrow */
.testi-head .eyebrow {
  justify-content: center;
  margin-bottom: clamp(16px, 2vh, 26px);
}
/* Style rule(s) for: .testi-title */
.testi-title {
  font-family: var(--display);
  font-size: clamp(40px, 11.5vw, 13.5rem);
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
/* Style rule(s) for: .testi-title span */
.testi-title span {
  color: var(--yellow);
}
/* Style rule(s) for: .tst-stack */
.tst-stack {
  position: relative;
  z-index: 2;
  margin-top: -34svh;
  padding: 0 clamp(12px, 3vw, 40px) clamp(80px, 10vw, 140px);
}
/* Style rule(s) for: .tst-card */
.tst-card {
  position: sticky;
  width: min(840px, 96%);
  margin: 0 auto clamp(90px, 16vh, 170px);
  /* CSS declaration line */
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* CSS declaration line */
  text-align: center;
  padding: clamp(38px, 6vh, 64px) clamp(22px, 5vw, 64px);
  /* CSS declaration line */
  border: 2px solid rgba(255, 225, 0, 0.5);
  border-radius: 20px;
  background: var(--coal);
  /* End of the CSS rule block above / closes rule */
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.55);
}
/* Style rule(s) for: .tst-card:nth-child(1) */
.tst-card:nth-child(1) {
  top: calc(50vh - 34svh + 0px);
  transform: rotate(-0.5deg);
  background: #151515;
}
/* Style rule(s) for: .tst-card:nth-child(2) */
.tst-card:nth-child(2) {
  top: calc(50vh - 34svh + 16px);
  transform: rotate(0.7deg);
  background: #101010;
}
/* Style rule(s) for: .tst-card:nth-child(3) */
.tst-card:nth-child(3) {
  top: calc(50vh - 34svh + 32px);
  transform: rotate(-0.4deg);
  background: var(--yellow);
  color: var(--black);
  border-color: var(--black);
}
/* Style rule(s) for: .tst-card:nth-child(4) */
.tst-card:nth-child(4) {
  top: calc(50vh - 34svh + 48px);
  transform: rotate(0.5deg);
  background: #181818;
}
/* Style rule(s) for: .tst-logo */
.tst-logo {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  /* End of the CSS rule block above / closes rule */
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(24px, 4vh, 44px);
  color: var(--yellow);
}
/* Style rule(s) for: .tst-card:nth-child(3) .tst-logo */
.tst-card:nth-child(3) .tst-logo {
  color: var(--black);
}
/* Style rule(s) for: .tst-logo .lg-badge */
.tst-logo .lg-badge {
  width: 0.62em;
  height: 0.62em;
  background: currentColor;
  display: inline-block;
  transform: rotate(45deg);
}
/* Style rule(s) for: .tst-quote */
.tst-quote {
  font-family: var(--display);
  font-size: clamp(19px, 2.7vw, 36px);
  line-height: 1.14;
  text-transform: uppercase;
  max-width: 26ch;
}
/* Style rule(s) for: .tst-quote strong */
.tst-quote strong {
  font-weight: 400;
  color: var(--yellow);
  background: rgba(255, 225, 0, 0.08);
  padding: 0 0.08em;
}
/* Style rule(s) for: .tst-card:nth-child(3) .tst-quote strong */
.tst-card:nth-child(3) .tst-quote strong {
  color: var(--black);
  background: rgba(10, 10, 10, 0.12);
}
/* Style rule(s) for: .tst-author */
.tst-author {
  margin-top: clamp(24px, 4vh, 42px);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--grey);
}
/* Style rule(s) for: .tst-card:nth-child(3) .tst-author */
.tst-card:nth-child(3) .tst-author {
  color: rgba(10, 10, 10, 0.65);
}
/* Style rule(s) for: .tst-author b */
.tst-author b {
  color: var(--bone);
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
}
/* Style rule(s) for: .tst-card:nth-child(3) .tst-author b */
.tst-card:nth-child(3) .tst-author b {
  color: var(--black);
}
/* Style rule(s) for: .tst-count */
.tst-count {
  position: absolute;
  top: clamp(18px, 3vh, 32px);
  right: clamp(20px, 3vw, 40px);
  font-family: var(--display);
  font-size: clamp(15px, 1.6vw, 22px);
  color: var(--yellow);
}
/* Style rule(s) for: .tst-card:nth-child(3) .tst-count */
.tst-card:nth-child(3) .tst-count {
  color: var(--black);
}
/* Style rule(s) for: .tst-more */
.tst-more {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
/* Style rule(s) for: .tst-more a */
.tst-more a {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--yellow);
  /* CSS declaration line */
  border: 1px solid var(--yellow);
  padding: 16px 32px;
  transition: all 0.3s;
  /* End of the CSS rule block above / closes rule */
  clip-path: polygon(
    10px 0,
    100% 0,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    0 100%,
    0 10px
  );
}
/* Style rule(s) for: .tst-more a:hover */
.tst-more a:hover {
  background: var(--yellow);
  color: var(--black);
}
/* ===== HORIZONTAL PROCESS (heading no longer overlaps) ===== */
/* Style rule(s) for: .hproc */
.hproc {
  height: 380vh;
  position: relative;
  background: var(--black);
}
/* Style rule(s) for: .hproc-pin */
.hproc-pin {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: clamp(80px, 11vh, 120px);
}
/* Style rule(s) for: .hproc-head */
.hproc-head {
  padding: 0 clamp(16px, 3vw, 40px);
}
/* Style rule(s) for: .hproc-title */
.hproc-title {
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 110px);
  line-height: 0.92;
  text-transform: uppercase;
}
/* Style rule(s) for: .hproc-title em */
.hproc-title em {
  font-style: normal;
  color: var(--yellow);
}
/* Style rule(s) for: .hproc-mid */
.hproc-mid {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 0;
}
/* Style rule(s) for: .hproc-track */
.hproc-track {
  display: flex;
  gap: clamp(20px, 3.5vw, 56px);
  padding: 0 clamp(20px, 5vw, 80px);
  will-change: transform;
  align-items: stretch;
}
/* Style rule(s) for: .hp-panel */
.hp-panel {
  flex: 0 0 auto;
  width: min(66vw, 780px);
  max-height: 56svh;
  border: 1px solid var(--line);
  border-top: 3px solid var(--yellow);
  /* End of the CSS rule block above / closes rule */
  background: var(--coal);
  padding: clamp(24px, 3.4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.6vh, 20px);
  position: relative;
  overflow: hidden;
}
/* Style rule(s) for: .hp-num */
.hp-num {
  font-family: var(--display);
  font-size: clamp(70px, 13vh, 160px);
  line-height: 0.85;
  color: rgba(255, 225, 0, 0.14);
}
/* Style rule(s) for: .hp-panel h3 */
.hp-panel h3 {
  font-family: var(--display);
  font-size: clamp(30px, 4.6vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
}
/* Style rule(s) for: .hp-panel h3 span */
.hp-panel h3 span {
  color: var(--yellow);
}
/* Style rule(s) for: .hp-panel p */
.hp-panel p {
  color: var(--grey);
  font-size: clamp(14px, 1.4vw, 18px);
  max-width: 46ch;
}
/* Style rule(s) for: .hp-tag */
.hp-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
}
/* Style rule(s) for: .hp-panel.hp-end */
.hp-panel.hp-end {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  justify-content: center;
  align-items: flex-start;
}
/* Style rule(s) for: .hp-panel.hp-end h3 */
.hp-panel.hp-end h3 {
  font-size: clamp(36px, 5.4vw, 76px);
}
/* Style rule(s) for: .hp-panel.hp-end p */
.hp-panel.hp-end p {
  color: rgba(10, 10, 10, 0.7);
}
/* Style rule(s) for: .hproc-bar */
.hproc-bar {
  position: absolute;
  bottom: clamp(24px, 5vh, 48px);
  left: clamp(20px, 5vw, 80px);
  right: clamp(20px, 5vw, 80px);
  height: 3px;
  background: rgba(237, 235, 227, 0.12);
}
/* Style rule(s) for: .hproc-bar i */
.hproc-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--yellow);
}
/* Style rule(s) for: .hproc-hint */
.hproc-hint {
  position: absolute;
  bottom: calc(clamp(24px, 5vh, 48px) + 14px);
  right: clamp(20px, 5vw, 80px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}
/* ===== CTA PHYSICS PILLS ===== */
/* Style rule(s) for: .cta-phys */
.cta-phys {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
/* Style rule(s) for: .phys-pill */
.phys-pill {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  /* CSS declaration line */
  background: var(--black);
  color: var(--yellow);
  padding: 13px 26px;
  border-radius: 99px;
  font-size: clamp(14px, 1.7vw, 23px);
  /* CSS declaration line */
  white-space: nowrap;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  will-change: transform;
  /* End of the CSS rule block above / closes rule */
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}
/* Style rule(s) for: .phys-pill:active */
.phys-pill:active {
  cursor: grabbing;
}
/* Style rule(s) for: .phys-pill.alt */
.phys-pill.alt {
  background: #161616;
  color: var(--bone);
}
/* Style rule(s) for: .phys-pill.star */
.phys-pill.star {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  padding: 0;
  display: grid;
  place-items: center;
  font-size: 32px;
}
/* Style rule(s) for: .cta h2,.cta p */
.cta h2,
.cta p {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
/* Style rule(s) for: .cta .btn-magnet */
.cta .btn-magnet {
  position: relative;
  z-index: 3;
}
/* ===== SERVICE HOVER FLOAT BADGE ===== */
/* Style rule(s) for: .svc-float */
.svc-float {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 900;
  pointer-events: none;
  /* CSS declaration line */
  width: clamp(92px, 9vw, 142px);
  height: clamp(92px, 9vw, 142px);
  display: grid;
  place-items: center;
  /* CSS declaration line */
  background: var(--yellow);
  color: var(--black);
  border: 3px solid var(--black);
  border-radius: 26px;
  /* CSS declaration line */
  font-family: var(--display);
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1;
  /* CSS declaration line */
  opacity: 0;
  transition: opacity 0.22s ease;
  /* End of the CSS rule block above / closes rule */
  box-shadow:
    0 10px 0 #b8a400,
    0 28px 54px rgba(0, 0, 0, 0.55);
}
/* Style rule(s) for: .svc-float.on */
.svc-float.on {
  opacity: 1;
}
/* Style rule(s) for: .cta */
.cta {
  background: var(--yellow);
  color: var(--black);
  text-align: center;
  padding: clamp(110px, 17vw, 240px) clamp(16px, 3vw, 40px);
  position: relative;
  overflow: hidden;
}
/* Style rule(s) for: .cta h2 */
.cta h2 {
  font-family: var(--display);
  font-size: clamp(56px, 13vw, 200px);
  line-height: 0.9;
  text-transform: uppercase;
}
/* Style rule(s) for: .cta h2 .o */
.cta h2 .o {
  background: var(--black);
  color: var(--yellow);
  padding: 0.02em 0.14em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
/* Style rule(s) for: .cta p */
.cta p {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin: 30px 0 46px;
  color: rgba(10, 10, 10, 0.65);
}
/* Style rule(s) for: .btn-magnet */
.btn-magnet {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 24px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 24px 52px;
  transition: color 0.35s;
  will-change: transform;
  clip-path: polygon(
    14px 0,
    100% 0,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    0 100%,
    0 14px
  );
}
/* Style rule(s) for: .btn-magnet:hover */
.btn-magnet:hover {
  color: var(--bone);
}
/* Style rule(s) for: .btn-magnet .arr */
.btn-magnet .arr {
  transition: transform 0.4s var(--ease);
}
/* Style rule(s) for: .btn-magnet:hover .arr */
.btn-magnet:hover .arr {
  transform: translateX(8px);
}
/* Style rule(s) for: .footer */
.footer {
  background: var(--black);
  color: var(--bone);
  padding: 0 clamp(16px, 3vw, 40px) 28px;
}
/* Style rule(s) for: .footer-grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
/* Responsive breakpoint override for smaller screens */
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Style rule(s) for: .footer-grid strong */
.footer-grid strong {
  display: block;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  color: var(--yellow);
}
/* Style rule(s) for: .footer-grid a */
.footer-grid a {
  display: block;
  padding: 3px 0;
  color: var(--grey);
  transition:
    color 0.3s,
    transform 0.3s;
}
/* Style rule(s) for: .footer-grid a:hover */
.footer-grid a:hover {
  color: var(--bone);
  transform: translateX(4px);
}
/* Style rule(s) for: .footer-word */
.footer-word {
  font-family: var(--display);
  font-size: clamp(60px, 15.5vw, 18rem);
  line-height: 0.85;
  text-align: center;
  user-select: none;
  text-transform: uppercase;
  color: var(--yellow);
}
/* Style rule(s) for: .footer-base */
.footer-base {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey);
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 8px;
}
/* Responsive breakpoint override for smaller screens */
@media (prefers-reduced-motion: reduce) {
  /* Style rule(s) for: *,*::before,*::after */
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  /* Style rule(s) for: .preloader */
  .preloader {
    display: none;
  }
  .nav {
    transform: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .manifesto .w {
    color: var(--bone);
  }
  body::after {
    display: none;
  }
  /* End of the CSS rule block above / closes rule */
}
/* CSS declaration line */




/* servicess page start css */

/* ================================================================
   LOGOSTERS® — SERVICES PAGE STYLES (body only)
   Depends only on the :root vars already defined on your site:
   --black --coal --panel --yellow --yellow-dim --bone --grey --line
   --display --body --mono --ease --ease-out
   All selectors are scoped under .svc-* so nothing here can clash
   with existing site classes/tags.
================================================================= */

.svc-page {
  background: var(--black);
  color: var(--bone);
  font-family: var(--body);
  overflow-x: hidden;
}

.svc-page * {
  box-sizing: border-box;
}

/* ---------------- HERO ---------------- */

.svc-hero {
  padding: 200px 64px 56px;
  max-width: 1600px;
  margin: 0 auto;
}

.svc-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.svc-hero__eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--yellow);
  display: inline-block;
}

.svc-hero__eyebrow-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--yellow);
  font-weight: 700;
}

.svc-hero__eyebrow-sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--grey);
}

.svc-hero__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--bone);
  font-size: clamp(48px, 9vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}

.svc-hero__title--accent {
  color: var(--yellow);
}

.svc-hero__desc {
  max-width: 480px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey);
}

/* ---------------- MARQUEE ---------------- */

.svc-marquee {
  border-top: 1px solid var(--yellow);
  border-bottom: 1px solid var(--yellow);
  background: var(--black);
  overflow: hidden;
  padding: 18px 0;
}

.svc-marquee__track {
  display: flex;
  width: max-content;
  animation: svc-marquee-scroll 28s linear infinite;
}

.svc-page .svc-marquee:hover .svc-marquee__track {
  animation-play-state: paused;
}

.svc-marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.svc-marquee__item {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 26px;
  color: var(--bone);
  padding: 0 20px;
  white-space: nowrap;
}

.svc-marquee__dot {
  color: var(--yellow);
  font-size: 14px;
  transform: translateY(-2px);
}

@keyframes svc-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .svc-marquee__track {
    animation: none;
  }
}

/* ---------------- SERVICES LIST ---------------- */

.svc-list {
  max-width: 1600px;
  margin: 0 auto;
  padding: 64px 64px 40px;
}

.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  transition: background-color 0.3s var(--ease-out);
}

.svc-row--last {
  border-bottom: 1px solid var(--line);
}

.svc-row__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.svc-row__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--yellow-dim);
  margin-bottom: 6px;
}

.svc-row__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1;
  color: var(--bone);
  margin: 0 0 12px;
  transition: color 0.25s var(--ease-out);
}

.svc-row:hover .svc-row__title {
  color: var(--yellow);
}

.svc-row__meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--grey);
  margin: 0;
}

.svc-row__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.svc-row__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey);
  max-width: 560px;
  margin: 0;
}

.svc-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--bone);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 2px;
  white-space: nowrap;
  transition: border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.svc-row:hover .svc-tag {
  border-color: var(--yellow-dim);
}

/* ---------------- CTA BAND ---------------- */

.svc-cta {
  background: var(--yellow);
  color: var(--black);
  padding: 96px 64px;
  text-align: left;
}

.svc-cta__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  color: var(--black);
  margin: 0 0 40px;
}

.svc-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 18px 26px;
  transition: transform 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}

.svc-cta__btn:hover {
  background: var(--coal);
  transform: translateX(4px);
}

.svc-cta__arrow {
  display: inline-block;
  transition: transform 0.2s var(--ease-out);
}

.svc-cta__btn:hover .svc-cta__arrow {
  transform: translateX(3px);
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 900px) {
  .svc-hero {
    padding: 150px 24px 40px;
  }

  .svc-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .svc-list {
    padding: 40px 24px 24px;
  }

  .svc-cta {
    padding: 64px 24px;
  }
}

@media (max-width: 480px) {
  .svc-marquee__item {
    font-size: 18px;
    padding: 0 12px;
  }
}

/* servicess page end css */






















/* ---------- MOBILE MENU BUTTON Start ---------- */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 900;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--bone);
  transition:
    transform 0.35s var(--ease),
    opacity 0.25s;
}
.nav-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links-mobile {
  position: fixed;
  top: 0;
  right: 0;
  height: 100svh;
  width: min(78vw, 320px);
  background: var(--coal);
  border-left: 1px solid var(--line);
  z-index: 850;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 90px 28px 40px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}
.nav-links-mobile.is-open {
  transform: translateX(0);
}
.nav-links-mobile a {
  font-family: var(--mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bone);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.nav-links-mobile .nav-cta {
  margin-top: 24px;
  text-align: center;
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  z-index: 820;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 760px) {
  .nav-burger {
    display: flex;
  }
}
@media(max-width:760px){
  .nav-burger{display:flex}
  .nav > .nav-cta{display:none}   /* top bar wala CTA chhupao, sirf mobile menu wala rahega */
}
/* ---------- MOBILE MENU BUTTON End ---------- */






















/* Porfolio page css Start------------------------------------------------------------------- */



/* ================================================================
   LOGOSTERS® — PORTFOLIO PAGE STYLES (body only)
   Depends only on the :root vars already on your site:
   --black --coal --panel --yellow --yellow-dim --bone --grey --line
   --display --body --mono --ease --ease-out
   Every selector is scoped under .pf-* — cannot clash with
   index.php / services.php styles.
================================================================= */

.pf-page {
  background: var(--black);
  color: var(--bone);
  font-family: var(--body);
  overflow-x: hidden;
}

.pf-page * {
  box-sizing: border-box;
}

/* ---------------- HERO ---------------- */

.pf-hero {
  padding: 200px 64px 40px;
 max-width: 1600px;
  margin: 0 auto;
}

.pf-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.pf-hero__eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--yellow);
  display: inline-block;
}

.pf-hero__eyebrow-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--yellow);
  font-weight: 700;
}

.pf-hero__eyebrow-sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--grey);
}

.pf-hero__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--bone);
  font-size: clamp(48px, 9vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}

.pf-hero__title--accent {
  color: var(--yellow);
}

.pf-hero__desc {
  max-width: 460px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey);
  margin: 0 0 40px;
}

/* ---------------- FILTERS ---------------- */

.pf-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pf-filter {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--bone);
  background: transparent;
  border: 1px solid var(--line);
  padding: 9px 18px;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s var(--ease-out),
    color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.pf-filter:hover {
  border-color: var(--yellow-dim);
}

.pf-filter.is-active {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  font-weight: 700;
}

/* ---------------- GRID ---------------- */

.pf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  max-width: 1600px;
  margin: 40px auto 0;
  padding: 0 64px 4px;
}

.pf-card {
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.pf-card.pf-is-hidden {
  display: none;
}

.pf-card--feature {
  grid-column: 1 / -1;
}

.pf-card__box {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pf-card--feature .pf-card__box {
  height: 620px;
}

.pf-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.pf-card__mark {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: 0.01em;
  pointer-events: none;
}

.pf-card__mark--italic {
  font-style: italic;
  transform: skewX(-6deg);
}

.pf-card__mark--spaced {
  letter-spacing: 0.3em;
}

.pf-card__mark--logotype {
  font-family: var(--body);
  font-weight: 800;
  font-style: italic;
  text-transform: lowercase;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--yellow);
}

.pf-card__mark--boxed {
  border: 1px solid var(--yellow-dim);
  padding: 26px 46px;
  font-size: clamp(28px, 3.4vw, 44px);
}

/* colour variants */

.pf-card--yellow .pf-card__box {
  background: var(--yellow);
}
.pf-card--yellow .pf-card__mark {
  color: var(--black);
}

.pf-card--dark .pf-card__box {
  background: var(--panel);
}
.pf-card--dark .pf-card__mark {
  color: var(--bone);
}

.pf-card--bone .pf-card__box {
  background: var(--bone);
}
.pf-card--bone .pf-card__mark {
  color: var(--black);
}

.pf-card--glow .pf-card__box {
  background: radial-gradient(
    ellipse at center,
    rgba(255, 225, 0, 0.16) 0%,
    var(--coal) 68%
  );
}
.pf-card--glow .pf-card__mark {
  color: var(--yellow);
}

.pf-card--olive-dark .pf-card__box {
  background: #2a2600;
}
.pf-card--olive-dark .pf-card__mark {
  color: var(--yellow);
}

.pf-card--olive-light .pf-card__box {
  background: #c7c22e;
}
.pf-card--olive-light .pf-card__mark {
  color: var(--black);
}

.pf-card--outline .pf-card__box {
  background: var(--coal);
  border: 1px solid var(--yellow-dim);
}
.pf-card--outline .pf-card__mark {
  color: var(--bone);
}

.pf-card--pulse .pf-card__box {
  background: var(--coal);
}

/* pulse feature extras */

.pf-card__watermark {
  position: absolute;
  top: 14%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(28px, 4.6vw, 58px);
  color: rgba(237, 235, 227, 0.06);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

.pf-card__pill {
  position: absolute;
  top: 42%;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--bone);
  border: 1px solid var(--line);
  padding: 10px 20px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pf-card__pill-arrow {
  font-style: normal;
}

/* ---------------- CAPTIONS ---------------- */

.pf-card__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 2px 32px;
  border-bottom: 1px solid var(--line);
}

.pf-card__name {
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--bone);
}

.pf-card__tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--grey);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---------------- EMPTY STATE ---------------- */

.pf-empty {
  text-align: center;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--grey);
  padding: 60px 24px;
}

/* ---------------- CTA BAND ---------------- */

.pf-cta {
  background: var(--yellow);
  color: var(--black);
  padding: 96px 64px;
  text-align: center;
  margin-top: 48px;
}

.pf-cta__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  color: var(--black);
  margin: 0 0 32px;
}

.pf-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 18px 26px;
  transition: transform 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}

.pf-cta__btn:hover {
  background: var(--coal);
  transform: translateX(4px);
}

.pf-cta__arrow {
  display: inline-block;
  transition: transform 0.2s var(--ease-out);
}

.pf-cta__btn:hover .pf-cta__arrow {
  transform: translateX(3px);
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 900px) {
  .pf-hero {
    padding: 150px 24px 32px;
  }

  .pf-grid {
    grid-template-columns: 1fr;
    padding: 0 24px 4px;
  }

  .pf-card__box {
    height: 320px;
  }

  .pf-card--feature .pf-card__box {
    height: 440px;
  }

  .pf-cta {
    padding: 64px 24px;
  }
}

@media (max-width: 480px) {
  .pf-card__box {
    height: 260px;
  }

  .pf-card--feature .pf-card__box {
    height: 360px;
  }

  .pf-card__mark--boxed {
    padding: 18px 30px;
  }
}





/* Porfolio page css End------------------------------------------------------------------- */










/* Pricing page css start ---------------------- */

/* ================================================================
   LOGOSTERS® — PRICING PAGE STYLES (body only)
   Depends only on the :root vars already on your site:
   --black --coal --panel --yellow --yellow-dim --bone --grey --line
   --display --body --mono --ease --ease-out
   Every selector is scoped under .pr-* — cannot clash with
   services.php / portfolio.php styles.
================================================================= */

.pr-page {
  background: var(--black);
  color: var(--bone);
  font-family: var(--body);
  overflow-x: hidden;
}

.pr-page * {
  box-sizing: border-box;
}

/* ---------------- HERO ---------------- */

.pr-hero {
  padding: 200px 64px 56px;
  max-width: 1600px;

  margin: 0 auto;
}

.pr-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.pr-hero__eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--yellow);
  display: inline-block;
}

.pr-hero__eyebrow-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--yellow);
  font-weight: 700;
}

.pr-hero__eyebrow-sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--grey);
}

.pr-hero__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--bone);
  font-size: clamp(48px, 8.5vw, 108px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}

.pr-hero__title--accent {
  color: var(--yellow);
}

.pr-hero__desc {
  max-width: 460px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey);
}

/* ---------------- PRICING CARDS ---------------- */

.pr-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
max-width: 1600px;
  margin: 0 auto;
  padding: 24px 64px 96px;
}

.pr-plan {
  position: relative;
  background: var(--coal);
  border: 1px solid var(--line);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}

.pr-plan--featured {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-16px);
  padding-top: 56px;
}

.pr-plan__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 8px 16px;
}

.pr-plan__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--yellow-dim);
  margin-bottom: 14px;
}

.pr-plan--featured .pr-plan__eyebrow {
  color: rgba(10, 10, 10, 0.6);
}

.pr-plan__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  color: var(--bone);
  margin: 0 0 24px;
}

.pr-plan--featured .pr-plan__title {
  color: var(--black);
}

.pr-plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 28px;
}

.pr-plan__amount {
  font-family: var(--display);
  font-weight: 400;
  font-size: 34px;
  color: var(--yellow);
}

.pr-plan--featured .pr-plan__amount {
  color: var(--black);
}

.pr-plan__unit {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--grey);
}

.pr-plan--featured .pr-plan__unit {
  color: rgba(10, 10, 10, 0.55);
}

.pr-plan__list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.pr-plan__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--bone);
}

.pr-plan--featured .pr-plan__list li {
  color: var(--black);
}

.pr-plan__bullet {
  font-style: normal;
  color: var(--yellow);
  font-size: 11px;
  line-height: 1.5;
  flex-shrink: 0;
}

.pr-plan--featured .pr-plan__bullet {
  color: var(--black);
}

.pr-plan__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 16px 20px;
  transition: transform 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}

.pr-plan__btn:hover {
  transform: translateY(-2px);
}

.pr-plan__btn--dark {
  background: var(--black);
  color: var(--yellow);
}

.pr-plan__arrow {
  transition: transform 0.2s var(--ease-out);
}

.pr-plan__btn:hover .pr-plan__arrow {
  transform: translateX(3px);
}

/* ---------------- FAQ ---------------- */

.pr-faq {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 64px 120px;
}

.pr-faq__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.pr-faq__eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--yellow);
  display: inline-block;
}

.pr-faq__eyebrow-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--yellow);
  font-weight: 700;
}

.pr-faq__eyebrow-sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--grey);
}

.pr-faq__item {
  border-top: 1px solid var(--line);
}

.pr-faq__item:last-child {
  border-bottom: 1px solid var(--line);
}

.pr-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 26px 0 10px;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--bone);
  letter-spacing: 0.01em;
}

.pr-faq__icon {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 20px;
  color: var(--yellow);
  transition: transform 0.3s var(--ease-out);
}

.pr-faq__item.is-open .pr-faq__icon {
  transform: rotate(45deg);
}

.pr-faq__a {
  max-height: 26px;
  overflow: hidden;
  opacity: 0.45;
  transition: max-height 0.4s var(--ease-out), opacity 0.3s var(--ease-out);
}

.pr-faq__a p {
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--grey);
  max-width: 640px;
}

.pr-faq__item.is-open .pr-faq__a {
  max-height: 200px;
  opacity: 1;
}

/* ---------------- CTA BAND ---------------- */

.pr-cta {
  background: var(--yellow);
  color: var(--black);
  padding: 96px 64px;
  text-align: center;
}

.pr-cta__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  color: var(--black);
  margin: 0 0 32px;
}

.pr-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 18px 26px;
  transition: transform 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}

.pr-cta__btn:hover {
  background: var(--coal);
  transform: translateX(4px);
}

.pr-cta__arrow {
  display: inline-block;
  transition: transform 0.2s var(--ease-out);
}

.pr-cta__btn:hover .pr-cta__arrow {
  transform: translateX(3px);
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 1000px) {
  .pr-plans {
    grid-template-columns: 1fr;
    padding: 24px 24px 64px;
  }

  .pr-plan--featured {
    transform: none;
    order: -1;
  }

  .pr-hero {
    padding: 150px 24px 40px;
  }

  .pr-faq {
    padding: 24px 24px 80px;
  }

  .pr-cta {
    padding: 64px 24px;
  }
}

@media (max-width: 480px) {
  .pr-faq__q {
    font-size: 15px;
    gap: 12px;
  }
}

/* Pricing page css End ---------------------- */





/* about us page css Start ---------------------- */


/* ================================================================
   LOGOSTERS® — ABOUT PAGE STYLES (body only)
   Depends only on the :root vars already on your site:
   --black --coal --panel --yellow --yellow-dim --bone --grey --line
   --display --body --mono --ease --ease-out
   Every selector is scoped under .ab-* — cannot clash with
   services.php / portfolio.php / pricing.php styles.
================================================================= */

.ab-page {
  background: var(--black);
  color: var(--bone);
  font-family: var(--body);
  overflow-x: hidden;
}

.ab-page * {
  box-sizing: border-box;
}

/* ---------------- HERO ---------------- */

.ab-hero {
  padding: 200px 64px 64px;
  max-width: 1600px;
  margin: 0 auto;
}

.ab-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.ab-hero__eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--yellow);
  display: inline-block;
}

.ab-hero__eyebrow-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--yellow);
  font-weight: 700;
}

.ab-hero__eyebrow-sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--grey);
}

.ab-hero__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--bone);
  font-size: clamp(48px, 8.5vw, 108px);
  line-height: 0.94;
  letter-spacing: -0.01em;
  margin: 0 0 48px;
}

.ab-hero__title--accent {
  color: var(--yellow);
}

.ab-hero__statement {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.18;
  color: var(--bone);
  max-width: 1100px;
  margin: 0 0 64px;
}

.ab-hero__statement--accent {
  color: var(--yellow);
}

/* ---------------- VALUE CARDS ---------------- */

.ab-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ab-value {
  background: var(--coal);
  border: 1px solid var(--line);
  padding: 28px 26px;
}

.ab-value__num {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--yellow-dim);
  margin-bottom: 14px;
}

.ab-value__title {
  font-family: var(--body);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 12px;
}

.ab-value__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--grey);
  margin: 0;
}

/* ---------------- MARQUEE ---------------- */

.ab-marquee {
  border-top: 1px solid var(--yellow);
  border-bottom: 1px solid var(--yellow);
  background: var(--black);
  overflow: hidden;
  padding: 18px 0;
  margin-top: 56px;
}

.ab-marquee__track {
  display: flex;
  width: max-content;
  animation: ab-marquee-scroll 28s linear infinite;
}

.ab-page .ab-marquee:hover .ab-marquee__track {
  animation-play-state: paused;
}

.ab-marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ab-marquee__item {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 26px;
  color: var(--bone);
  padding: 0 20px;
  white-space: nowrap;
}

.ab-marquee__dot {
  color: var(--yellow);
  font-size: 14px;
  transform: translateY(-2px);
}

@keyframes ab-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ab-marquee__track {
    animation: none;
  }
}

/* ---------------- TEAM ---------------- */

.ab-team {
  
  margin: 0 auto;
  padding: 64px 64px 40px;
  max-width: 1600px;
}

.ab-team__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.ab-team__eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--yellow);
  display: inline-block;
}

.ab-team__eyebrow-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--yellow);
  font-weight: 700;
}

.ab-team__eyebrow-sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--grey);
}

.ab-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ab-member__box {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 18px;
}

.ab-member__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ab-member__initials {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 44px;
  pointer-events: none;
}

.ab-member--yellow .ab-member__box {
  background: var(--yellow);
}
.ab-member--yellow .ab-member__initials {
  color: var(--black);
}

.ab-member--dark .ab-member__box {
  background: var(--coal);
}
.ab-member--dark .ab-member__initials {
  color: var(--yellow);
}

.ab-member--bone .ab-member__box {
  background: var(--bone);
}
.ab-member--bone .ab-member__initials {
  color: var(--black);
}

.ab-member--outline .ab-member__box {
  background: var(--coal);
  border: 1px solid var(--yellow-dim);
}
.ab-member--outline .ab-member__initials {
  color: var(--bone);
}

.ab-member__name {
  font-family: var(--body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  color: var(--bone);
  margin: 0 0 4px;
}

.ab-member__role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: var(--grey);
  margin: 0;
}

/* ---------------- STATS BAND ---------------- */

.ab-stats {
  background: var(--yellow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 80px 64px;
  margin-top: 56px;
}

.ab-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ab-stat__num {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 1;
  color: var(--black);
}

.ab-stat__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(10, 10, 10, 0.65);
}

/* ---------------- CTA ---------------- */

.ab-cta {
  text-align: center;
  padding: 140px 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.ab-cta__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 1;
  color: var(--bone);
  margin: 0 0 40px;
}

.ab-cta__title--accent {
  color: var(--yellow);
}

.ab-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 8px 4px;
}

.ab-cta__arrow {
  display: inline-block;
  transition: transform 0.2s var(--ease-out);
}

.ab-cta__link:hover .ab-cta__arrow {
  transform: translateX(4px);
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 900px) {
  .ab-hero {
    padding: 150px 24px 40px;
  }

  .ab-values {
    grid-template-columns: 1fr;
  }

  .ab-team {
    padding: 48px 24px 24px;
  }

  .ab-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 56px 24px;
    row-gap: 40px;
  }

  .ab-cta {
    padding: 80px 24px;
  }
}

@media (max-width: 480px) {
  .ab-team__grid {
    grid-template-columns: 1fr;
  }

  .ab-member__box {
    height: 220px;
  }

  .ab-marquee__item {
    font-size: 18px;
    padding: 0 12px;
  }
}



/* about us page css End ---------------------- */










/* Contact us page css Start ---------------------- */


/* ================================================================
   LOGOSTERS® — CONTACT PAGE STYLES (body only)
   Depends only on the :root vars already on your site:
   --black --coal --panel --yellow --yellow-dim --bone --grey --line
   --display --body --mono --ease --ease-out
   Every selector is scoped under .ct-* — cannot clash with
   services.php / portfolio.php / pricing.php / about-us.php styles.
================================================================= */

.ct-page {
  background: var(--black);
  color: var(--bone);
  font-family: var(--body);
  overflow-x: hidden;
}

.ct-page * {
  box-sizing: border-box;
}

.ct-wrap {
  max-width: 1600px;
  margin: 0 auto;
  padding: 200px 64px 64px 64px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
}

/* ---------------- LEFT: HERO ---------------- */

.ct-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.ct-eyebrow__line {
  width: 28px;
  height: 2px;
  background: var(--yellow);
  display: inline-block;
}

.ct-eyebrow__label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--yellow);
  font-weight: 700;
}

.ct-eyebrow__sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--grey);
}

.ct-title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--bone);
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}

.ct-title--accent {
  color: var(--yellow);
}

.ct-desc {
  max-width: 420px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey);
  margin: 0 0 56px;
}

/* ---------------- FORM ---------------- */

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 620px;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ct-field__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--grey);
}

.ct-field__input {
  width: 100%;
  background: var(--coal);
  border: 1px solid var(--line);
  color: var(--bone);
  font-family: var(--body);
  font-size: 14px;
  padding: 14px 16px;
  border-radius: 2px;
  transition: border-color 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}

.ct-field__input::placeholder {
  color: var(--grey);
}

.ct-field__input:focus {
  outline: none;
  border-color: var(--yellow-dim);
  background: var(--panel);
}

.ct-field__input.ct-field--error {
  border-color: #e5484d;
}

.ct-field__input--select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%238a8a82' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.ct-field__input--select:invalid {
  color: var(--grey);
}

.ct-field__textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--body);
  line-height: 1.5;
}

.ct-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  border: none;
  padding: 18px 26px;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 10px;
  transition: transform 0.2s var(--ease-out), opacity 0.2s var(--ease-out);
}

.ct-submit:hover {
  transform: translateY(-2px);
}

.ct-submit:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

.ct-submit__arrow {
  display: inline-block;
  transition: transform 0.2s var(--ease-out);
}

.ct-submit:hover .ct-submit__arrow {
  transform: translateX(3px);
}

.ct-form__status {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--grey);
  min-height: 16px;
  margin: 0;
}

.ct-form__status.is-success {
  color: var(--yellow);
}

.ct-form__status.is-error {
  color: #e5484d;
}

/* ---------------- RIGHT: INFO ---------------- */

.ct-right {
  padding-top: 88px;
}

.ct-info {
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.ct-info__block {
  padding-bottom: 32px;
}

.ct-info__block--divided {
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.ct-info__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--bone);
  margin: 0 0 16px;
}

.ct-info__email {
  display: inline-block;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--bone);
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 6px;
  line-height: 1.4;
  transition: color 0.2s var(--ease-out);
}

.ct-info__email:hover {
  color: var(--yellow);
}

.ct-info__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ct-info__links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s var(--ease-out), gap 0.2s var(--ease-out);
}

.ct-info__links a:hover {
  color: var(--yellow);
  gap: 10px;
}

.ct-info__arrow {
  font-size: 12px;
}

.ct-info__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--grey);
  margin: 0;
  max-width: 320px;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 980px) {
  .ct-wrap {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 150px 24px 24px 24px;
  }

  .ct-right {
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .ct-submit {
    width: 100%;
    justify-content: center;
  }
}


/* Contact us page css End ---------------------- */



/* Other services us page css Start ---------------------- */

/* ================================================================
   LOGOSTERS® — OTHER SERVICES PAGE STYLES (body only)
   Depends only on the :root vars already on your site:
   --black --coal --panel --yellow --yellow-dim --bone --grey --line
   --display --body --mono --ease --ease-out
   Every selector is scoped under .os-* — cannot clash with
   services.php / portfolio.php / pricing.php / about-us.php /
   contact-us.php styles.
================================================================= */

.os-page {
  background: var(--black);
  color: var(--bone);
  font-family: var(--body);
  overflow-x: hidden;
}

.os-page * {
  box-sizing: border-box;
}

/* ---------------- HERO ---------------- */

.os-hero {
  padding: 200px 64px 72px;
  max-width: 1600px;
  margin: 0 auto;
}

.os-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.os-hero__eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--yellow);
  display: inline-block;
}

.os-hero__eyebrow-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--yellow);
  font-weight: 700;
}

.os-hero__eyebrow-sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--grey);
}

.os-hero__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--bone);
  font-size: clamp(48px, 8.5vw, 108px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}

.os-hero__title--accent {
  color: var(--yellow);
}

.os-hero__desc {
  max-width: 460px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey);
}

/* ---------------- GRID ---------------- */

.os-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 64px 96px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.os-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}

.os-card__icon {
  color: var(--yellow);
  width: 26px;
  height: 26px;
  margin-bottom: 24px;
}

.os-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.os-card__title {
  font-family: var(--body);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 12px;
}

.os-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--grey);
  margin: 0;
}

/* ---------------- CTA BAND ---------------- */

.os-cta {
  background: var(--yellow);
  color: var(--black);
  padding: 96px 64px;
  text-align: center;
}

.os-cta__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  color: var(--black);
  margin: 0 0 32px;
}

.os-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 18px 26px;
  transition: transform 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}

.os-cta__btn:hover {
  background: var(--coal);
  transform: translateX(4px);
}

.os-cta__arrow {
  display: inline-block;
  transition: transform 0.2s var(--ease-out);
}

.os-cta__btn:hover .os-cta__arrow {
  transform: translateX(3px);
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 1100px) {
  .os-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .os-hero {
    padding: 150px 24px 48px;
  }

  .os-grid {
    padding: 0 24px 64px;
  }

  .os-cta {
    padding: 64px 24px;
  }
}

@media (max-width: 560px) {
  .os-grid {
    grid-template-columns: 1fr;
  }

  .os-card {
    padding: 32px 24px;
  }
}

/* Other services us page css End ---------------------- */




/* Terms And Condition page css Start ---------------------- */


/* ================================================================
   LOGOSTERS® — TERMS & CONDITIONS PAGE STYLES (body only)
   Depends only on the :root vars already on your site:
   --black --coal --panel --yellow --yellow-dim --bone --grey --line
   --display --body --mono --ease --ease-out
   Every selector is scoped under .tc-* — cannot clash with any
   other page's styles.
================================================================= */

.tc-page {
  background: var(--black);
  color: var(--bone);
  font-family: var(--body);
  overflow-x: hidden;
}

.tc-page * {
  box-sizing: border-box;
}

/* ---------------- HERO ---------------- */

.tc-hero {
  padding: 200px 64px 40px;
  max-width: 1600px;
  margin: 0 auto;
}

.tc-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.tc-hero__eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--yellow);
  display: inline-block;
}

.tc-hero__eyebrow-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--yellow);
  font-weight: 700;
}

.tc-hero__eyebrow-sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--grey);
}

.tc-hero__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--bone);
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}

.tc-hero__title--accent {
  color: var(--yellow);
}

.tc-hero__updated {
  font-size: 13px;
  color: var(--grey);
  margin: 0;
}

/* ---------------- SECTIONS ---------------- */

.tc-body {
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 64px 120px;
}

.tc-list {
  max-width: 640px;
  margin-left: 280px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.tc-item__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--yellow);
  margin: 0 0 10px;
}

.tc-item__text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--grey);
  margin: 0;
}

.tc-item__link {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s var(--ease-out);
}

.tc-item__link:hover {
  color: var(--bone);
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 1100px) {
  .tc-list {
    margin-left: 120px;
  }
}

@media (max-width: 760px) {
  .tc-hero {
    padding: 150px 24px 32px;
  }

  .tc-body {
    padding: 24px 24px 80px;
  }

  .tc-list {
    margin-left: 0;
    max-width: 100%;
  }
}


/* Terms And Condition page css End ---------------------- */






/* Privacy Policy page css Start ---------------------- */

/* ================================================================
   LOGOSTERS® — PRIVACY POLICY PAGE STYLES (body only)
   Depends only on the :root vars already on your site:
   --black --coal --panel --yellow --yellow-dim --bone --grey --line
   --display --body --mono --ease --ease-out
   Every selector is scoped under .pp-* — cannot clash with any
   other page's styles.
================================================================= */

.pp-page {
  background: var(--black);
  color: var(--bone);
  font-family: var(--body);
  overflow-x: hidden;
}

.pp-page * {
  box-sizing: border-box;
}

/* ---------------- HERO ---------------- */

.pp-hero {
  padding: 200px 64px 40px;
  max-width: 1600px;
  margin: 0 auto;
}

.pp-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.pp-hero__eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--yellow);
  display: inline-block;
}

.pp-hero__eyebrow-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--yellow);
  font-weight: 700;
}

.pp-hero__eyebrow-sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--grey);
}

.pp-hero__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--bone);
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}

.pp-hero__title--accent {
  color: var(--yellow);
}

.pp-hero__updated {
  font-size: 13px;
  color: var(--grey);
  margin: 0;
}

/* ---------------- SECTIONS ---------------- */

.pp-body {
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 64px 120px;
}

.pp-list {
  max-width: 640px;
  margin-left: 280px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pp-item__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--yellow);
  margin: 0 0 10px;
}

.pp-item__text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--grey);
  margin: 0;
}

.pp-item__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pp-item__bullets li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--grey);
}

.pp-item__bullets li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--yellow-dim);
}

.pp-item__link {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s var(--ease-out);
}

.pp-item__link:hover {
  color: var(--bone);
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 1100px) {
  .pp-list {
    margin-left: 120px;
  }
}

@media (max-width: 760px) {
  .pp-hero {
    padding: 150px 24px 32px;
  }

  .pp-body {
    padding: 24px 24px 80px;
  }

  .pp-list {
    margin-left: 0;
    max-width: 100%;
  }
}

/* Privacy Policy page css End ---------------------- */










