:root {
  --bg: #050505;
  --bg-soft: #0d0d10;
  --panel: rgba(12, 12, 14, 0.7);
  --panel-strong: rgba(20, 20, 24, 0.9);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f5f7;
  --muted: #a4a4ab;
  --accent: #f60404;
  --accent-soft: rgba(246, 4, 4, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(246, 4, 4, 0.18), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(180deg, #030303 0%, #08080a 48%, #040404 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

@media (hover: hover) and (pointer: fine) {
  html,
  body,
  a,
  button,
  input,
  textarea,
  label,
  [role="button"] {
    cursor: url("./cursor-mark.png") 16 16, auto;
  }
}

body.is-loading {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

#scene,
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#scene {
  z-index: 0;
  opacity: 0.65;
}

.noise {
  z-index: 1;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black, transparent 85%);
}

.page-shell {
  position: relative;
  z-index: 2;
  padding: 88px 0 72px;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(246, 4, 4, 0.14), transparent 24%),
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(180deg, #050505 0%, #09090c 55%, #040404 100%);
  transition:
    opacity 0.85s ease,
    visibility 0.85s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%, transparent 70%, rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 120px);
  opacity: 0.35;
  pointer-events: none;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-100%);
}

.loader__inner {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
  position: relative;
  padding: 34px 34px 28px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(20, 20, 24, 0.62), rgba(8, 8, 10, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.loader__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.loader__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.loader__orb--one {
  width: 220px;
  height: 220px;
  top: 12%;
  left: 18%;
  background: radial-gradient(circle, rgba(246, 4, 4, 0.22), transparent 68%);
  animation: loaderDrift 9s ease-in-out infinite;
}

.loader__orb--two {
  width: 180px;
  height: 180px;
  right: 18%;
  bottom: 14%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  animation: loaderDrift 11s ease-in-out infinite reverse;
}

.loader__orb--three {
  width: 120px;
  height: 120px;
  top: 22%;
  right: 28%;
  background: radial-gradient(circle, rgba(246, 4, 4, 0.14), transparent 70%);
  animation: loaderDrift 7s ease-in-out infinite;
}

.loader__mark-wrap {
  position: relative;
  width: 122px;
  height: 122px;
  display: grid;
  place-items: center;
}

.loader__ring {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  animation: loaderSpin 8s linear infinite;
}

.loader__ring::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3b30;
  box-shadow: 0 0 20px rgba(246, 4, 4, 0.55);
  transform: translateX(-50%);
}

.loader__ring--outer {
  inset: 0;
  opacity: 0.55;
  animation-direction: reverse;
  animation-duration: 12s;
}

.loader__mark {
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(246, 4, 4, 0.35));
  animation: loaderFloat 2.2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.loader__wordmark {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-family: "Anton", sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  letter-spacing: 0.06em;
  line-height: 0.9;
}

.loader__wordmark span:first-child {
  color: rgba(255, 248, 240, 0.96);
}

.loader__wordmark span:last-child {
  color: #ff3b30;
}

.loader__subtitle {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.loader__bar {
  width: min(280px, 70vw);
  height: 5px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.loader__bar span {
  display: block;
  width: 34%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff4a3d, #c10808);
  box-shadow: 0 0 20px rgba(246, 4, 4, 0.4);
  animation: loaderBar 1.6s ease-in-out infinite;
}

.loader__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.loader__meta {
  width: min(320px, 80vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 2px;
}

.loader__count {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: rgba(255, 248, 240, 0.94);
}

.glass {
  background: linear-gradient(180deg, rgba(18, 18, 22, 0.86), rgba(10, 10, 12, 0.72));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* ===== NAVBAR WRAPPER ===== */
.site-header {
  width: min(940px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 7px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: fixed;
  left: 0;
  right: 0;
  top: 14px;
  z-index: 60;
  background:
    linear-gradient(180deg, rgba(32, 32, 38, 0.58), rgba(10, 10, 12, 0.78)),
    radial-gradient(circle at top center, rgba(246, 4, 4, 0.12), transparent 55%);
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -10px 30px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.site-header__panel {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent),
    radial-gradient(circle at top, rgba(255, 0, 0, 0.12), transparent 58%);
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  pointer-events: none;
}

/* ===== BRAND ===== */
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.brand__mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 0, 0, 0.34));
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__wordmark {
  width: 122px;
  object-fit: contain;
}

.brand__sub {
  font-size: 0.49rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
  line-height: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: white;
}

.nav {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -8px 18px rgba(0, 0, 0, 0.14);
  position: relative;
  z-index: 1;
}

.nav a {
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  background: linear-gradient(135deg, #ff3b30, #c10808);
  box-shadow:
    0 12px 28px rgba(255, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  position: relative;
  z-index: 1;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow:
    0 16px 34px rgba(255, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.nav-cta__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.88);
}

.hero,
.section,
.marquee-section {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  padding: 88px 0 56px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: #d6d6db;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero h1,
.section h2,
.preview-modal h3 {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(3.4rem, 10vw, 7.8rem);
}

.hero h1 span {
  color: var(--accent);
  text-shadow: 0 0 28px rgba(246, 4, 4, 0.25);
}

.hero__text,
.contact-copy p,
.about-card p:last-child,
.pricing-note,
.preview-modal__meta p:last-child {
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__stats {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero__stats li,
.service-card,
.gallery-card,
.about-card,
.pricing-card,
.contact-form,
.hero__visual {
  border-radius: var(--radius);
}

.hero__stats li {
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.hero__stats strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.hero__stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero__visual {
  min-height: 620px;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: none;
}

.hero__frame {
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 3;
  pointer-events: none;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  filter: none;
}

.hero__glow {
  display: none;
}

.hero__badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 4;
  padding: 16px 18px;
  background: rgba(8, 8, 10, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
}

.hero__badge span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  margin-bottom: 6px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__badge-label {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #35ff7a;
  box-shadow: 0 0 14px rgba(53, 255, 122, 0.75);
  animation: liveDot 1.2s ease-in-out infinite;
}

.section {
  padding-top: 46px;
}

.section__head,
.section--split,
.about-section,
.contact-section {
  display: grid;
  gap: 24px;
}

.section__head,
.section--split {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.section h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  max-width: 14ch;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.filter-chip {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: pointer;
  transition: all 160ms ease;
}

.filter-chip.is-active,
.filter-chip:hover,
.filter-chip:focus-visible {
  color: var(--text);
  border-color: rgba(246, 4, 4, 0.45);
  background: rgba(246, 4, 4, 0.12);
}

.gallery {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  padding: 0;
  background: transparent;
  border: 0;
  overflow: hidden;
  cursor: pointer;
  box-shadow: none;
  transition: transform 220ms ease;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-6px);
}

.gallery-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 16px;
  background: transparent;
}

.gallery-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.gallery-card__thumb::after {
  content: none;
}

.gallery-card__tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #d7d7db;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.gallery-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.gallery-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.service-card span {
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.service-card h3 {
  margin: 14px 0 10px;
  font-size: 1.4rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.marquee {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding: 18px 0;
}

.marquee__track {
  display: flex;
  gap: 28px;
  width: max-content;
  align-items: center;
  animation: marquee 24s linear infinite;
}

.tool-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.94);
  white-space: nowrap;
}

.tool-pill__logo {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.tool-pill__logo img {
  width: 22px;
  height: 22px;
  display: block;
  filter: brightness(0) invert(1);
}

.tool-pill__appicon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.tool-pill em {
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tool-pill--ps .tool-pill__logo {
  background: linear-gradient(135deg, #001e36, #31a8ff);
}

.tool-pill--ae .tool-pill__logo {
  background: linear-gradient(135deg, #15002d, #d291ff);
}

.tool-pill--pr .tool-pill__logo {
  background: linear-gradient(135deg, #2a0014, #ff5fa2);
}

.tool-pill--ai .tool-pill__logo {
  background: linear-gradient(135deg, #311400, #ff9a00);
}

.tool-pill--bl .tool-pill__logo {
  background: linear-gradient(135deg, #1a1f2b, #ff8a00);
}

.tool-pill--fg .tool-pill__logo {
  background: linear-gradient(135deg, #1e1e1e, #7b61ff);
}

.tool-pill--td .tool-pill__logo {
  background: linear-gradient(135deg, #111, #ff3b30);
}

.tool-pill--cd .tool-pill__logo {
  background: linear-gradient(135deg, #111, #00c2ff);
}

.about-section,
.contact-section {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-card,
.pricing-card,
.contact-form {
  padding: 30px;
}

.pricing-card {
  background: linear-gradient(180deg, rgba(30, 10, 10, 0.82), rgba(15, 15, 18, 0.92));
}

.price-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.price-row strong {
  display: block;
  font-family: "Anton", sans-serif;
  font-size: clamp(3rem, 6vw, 4.8rem);
  letter-spacing: 0.03em;
  font-weight: 400;
  color: var(--accent);
}

.price-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.price-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.12);
}

.contact-copy {
  align-self: center;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: #d6d6db;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-form label.full,
.contact-submit {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 16px 18px;
  border-radius: 18px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(246, 4, 4, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  margin-top: 8px;
  padding: 15px 18px 15px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 70, 58, 0.96), rgba(183, 0, 0, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
  color: #fff;
  cursor: pointer;
  box-shadow:
    0 18px 34px rgba(246, 4, 4, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 24px 42px rgba(246, 4, 4, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.contact-submit__label {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-submit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 1rem;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.footer-section {
  padding-bottom: 10px;
}

.footer-top {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  position: relative;
  overflow: hidden;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
  box-shadow: none;
}

.footer-top::before {
  content: none;
}

.footer-top::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.footer-column {
  min-height: 300px;
  padding: 34px 38px 28px;
  position: relative;
  z-index: 1;
}

.footer-column + .footer-column {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-column h3 {
  margin: 0 0 22px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.footer-list {
  display: grid;
  gap: 16px;
}

.footer-list a,
.footer-list span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.96rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: white;
  transform: translateX(4px);
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-social-icons a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.footer-social-icons a:hover,
.footer-social-icons a:focus-visible {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(246, 4, 4, 0.35);
  background: rgba(246, 4, 4, 0.08);
}

.footer-social-icons svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.about-page-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.about-page-hero__copy {
  position: relative;
}

.about-page-hero__copy h1 {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-page-hero__chips {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-page-hero__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  color: rgba(255, 248, 240, 0.88);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-page-hero__text {
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.8;
  margin: 18px 0 0;
}

.about-page-hero__stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-page-stat {
  padding: 18px;
  border-radius: 22px;
}

.about-page-stat strong {
  display: block;
  margin-bottom: 8px;
}

.about-page-stat span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.about-page-hero__visual {
  position: relative;
  min-height: 620px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(246, 4, 4, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(17, 17, 20, 0.7), rgba(8, 8, 10, 0.94));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.about-page-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-page-hero__frame {
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
  pointer-events: none;
}

.about-page-hero__visual-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 16px 18px;
  border-radius: 20px;
  max-width: 240px;
}

.about-page-hero__visual-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-page-hero__visual-card strong {
  display: block;
  line-height: 1.2;
  font-size: 1.02rem;
}

.about-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.about-page-card {
  padding: 28px;
  border-radius: 28px;
}

.about-page-card p:last-child {
  color: var(--muted);
  line-height: 1.8;
}

.about-page-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.about-page-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.about-page-story__intro h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  line-height: 1;
}

.about-page-story__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-page-story-card {
  min-height: 100%;
  padding: 26px 24px;
  border-radius: 26px;
}

.about-page-story-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(246, 4, 4, 0.18), rgba(255, 255, 255, 0.04));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.about-page-story-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.about-page-story-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.about-page-tools__grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-page-tool {
  padding: 24px;
  border-radius: 24px;
}

.about-page-tool strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.about-page-tool span {
  color: var(--muted);
  line-height: 1.7;
}

.footer-bottom {
  margin-top: 0;
  padding: 14px 36px 14px;
  border-radius: 0 0 28px 28px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  overflow: hidden;
}

.footer-bottom__wordmark {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-family: "Anton", sans-serif;
  font-size: clamp(3.2rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: rgba(255, 248, 240, 0.96);
  text-transform: uppercase;
}

.footer-bottom__letter {
  color: rgba(255, 248, 240, 0.96);
  flex: 1 1 0;
  text-align: center;
}

.footer-bottom__letter--accent {
  color: #ff3b30;
}

@media (max-width: 760px) {
  .footer-bottom__wordmark {
    gap: 4px;
  }
}

.footer-bottom__meta {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom__mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-bottom__meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.footer-top::before {
  border-radius: 0;
}

.footer-top {
  border-radius: 28px 28px 0 0;
}

.footer-bottom {
  display: block;
}

@media (max-width: 1080px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-column {
    min-height: auto;
    padding: 28px 26px;
  }

  .footer-column + .footer-column {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 760px) {
  .footer-column {
    padding: 24px 20px;
  }

  .footer-list {
    gap: 14px;
  }

  .footer-list a,
  .footer-list span {
    font-size: 0.9rem;
  }

  .footer-bottom {
    padding: 12px 20px 14px;
    border-radius: 0 0 22px 22px;
  }

  .footer-bottom__wordmark {
    width: 100%;
  }

  .footer-bottom__meta {
    margin-top: 8px;
  }
}

.preview-modal {
  width: min(960px, calc(100vw - 24px));
  border: none;
  padding: 0;
  background: transparent;
}

.preview-modal::backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}

.preview-modal__content {
  padding: 20px;
  border-radius: 30px;
}

.preview-modal__content img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 30%, rgba(246, 4, 4, 0.2), transparent 32%),
    #0e0e12;
  padding: 18px;
}

.preview-modal__meta {
  padding: 22px 10px 4px;
}

.preview-modal h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 10px;
}

.preview-modal__close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(20, 20, 24, 0.9);
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.is-hidden {
  display: none !important;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.58;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.92;
  }
}

@keyframes loaderBar {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(320%);
  }
}

@keyframes loaderSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes loaderDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(12px, -16px, 0) scale(1.08);
  }
}

@keyframes liveDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.75);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 14px));
  }
}

@media (max-width: 1080px) {
  .hero,
  .about-section,
  .contact-section,
  .section--split,
  .section__head {
    grid-template-columns: 1fr;
  }

  .about-page-hero,
  .about-page-grid,
  .about-page-story {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .gallery,
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page-tools__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page-story__grid {
    grid-template-columns: 1fr;
  }

  .filters {
    justify-content: flex-start;
  }

  .hero__visual {
    min-height: 420px;
  }

  .about-page-hero__visual {
    min-height: 520px;
  }

  .about-page-story__intro h2 {
    max-width: none;
  }

  .footer-top {
    align-items: start;
  }
}

@media (max-width: 900px) {
  .page-shell {
    padding-top: 76px;
  }

  .site-header {
    width: calc(100vw - 18px);
    margin: 0 auto;
    padding: 8px 10px;
    border-radius: 18px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    top: 6px;
    overflow: visible;
  }

  .nav-toggle {
    display: block;
  }

  .site-header__panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 10px;
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(32, 32, 38, 0.94), rgba(10, 10, 12, 0.94)),
      radial-gradient(circle at top center, rgba(246, 4, 4, 0.12), transparent 55%);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .site-header.is-open .site-header__panel {
    display: flex;
  }

  .nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    gap: 6px;
    font-size: 0.72rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .brand {
    width: auto;
    justify-content: flex-start;
    gap: 6px;
  }

  .brand__text {
    justify-items: start;
  }

  .brand__wordmark {
    width: 118px;
    max-width: none;
  }

  .brand__sub {
    display: none;
  }

  .nav a {
    padding: 12px 14px;
    text-align: left;
    font-size: 0.74rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
    font-size: 0.68rem;
    border-radius: 14px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero__stats,
  .service-grid,
  .gallery,
  .contact-form,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .about-page-hero__stats,
  .about-page-tools__grid,
  .about-page-story__grid {
    grid-template-columns: 1fr;
  }

  .section,
  .marquee-section {
    padding-top: 34px;
  }

  .hero__visual {
    padding: 20px;
    min-height: 360px;
  }

  .about-page-hero__visual {
    min-height: 420px;
  }

  .about-page-card,
  .about-page-tool,
  .about-page-story-card {
    padding: 22px;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 900px) {
  .site-header {
    width: calc(100vw - 16px) !important;
    padding: 8px 10px !important;
    border-radius: 16px !important;
  }

  .brand__mark {
    width: 28px !important;
    height: 28px !important;
  }

  .brand__wordmark {
    width: 112px !important;
  }

  .nav-toggle {
    display: block !important;
  }

  .site-header__panel {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    right: 0 !important;
    padding: 10px !important;
    border-radius: 16px !important;
    background:
      linear-gradient(180deg, rgba(32, 32, 38, 0.96), rgba(10, 10, 12, 0.96)),
      radial-gradient(circle at top center, rgba(246, 4, 4, 0.12), transparent 55%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35) !important;
  }

  .site-header.is-open .site-header__panel {
    display: flex !important;
  }

  .nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    width: 100% !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .nav a {
    width: 100% !important;
    padding: 11px 12px !important;
    text-align: left !important;
    font-size: 0.74rem !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.04) !important;
  }

  .nav-cta {
    width: 100% !important;
    justify-content: center !important;
    margin-top: 4px !important;
  }

  .about-page-hero__copy h1 {
    font-size: clamp(2.8rem, 16vw, 4.5rem) !important;
  }

  .about-page-hero__text {
    font-size: 0.95rem !important;
  }

  .about-page-hero__stats {
    gap: 10px !important;
  }

  .about-page-hero__chips {
    gap: 8px !important;
  }

  .about-page-hero__chips span {
    min-height: 34px !important;
    padding: 0 12px !important;
    font-size: 0.72rem !important;
  }

  .about-page-stat {
    padding: 16px !important;
    border-radius: 18px !important;
  }

  .about-page-hero__visual {
    min-height: 340px !important;
    border-radius: 22px !important;
  }

  .about-page-grid {
    gap: 16px !important;
  }

  .about-page-hero__visual-card {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    max-width: none !important;
    padding: 14px 16px !important;
  }
}
