:root {
  --bg-0: #000000;
  --bg-1: #050814;
  --bg-2: #070d1c;
  --bg-3: #0b1328;
  --navy: #060c1a;
  --accent: #00c2ff;
  --accent-2: #0084ff;
  --accent-3: #00e5ff;
  --accent-soft: rgba(0, 194, 255, 0.14);
  --text: #f4f7fb;
  --text-muted: #9aa4b8;
  --text-dim: #6d768a;
  --line: rgba(0, 194, 255, 0.16);
  --card: rgba(9, 15, 32, 0.72);
  --glow: 0 0 22px rgba(0, 132, 255, 0.45);
  --radius: 18px;
  --font-display: "Syne", sans-serif;
  --font-body: "Outfit", sans-serif;
  --container: 1160px;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

::selection {
  background: rgba(0, 132, 255, 0.35);
  color: #fff;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-thumb {
  background: #1a2a44;
  border-radius: 10px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(1200px 700px at 80% 10%, rgba(0, 132, 255, 0.12), transparent 55%),
    linear-gradient(165deg, var(--bg-0) 0%, var(--navy) 48%, #02040a 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 4.8rem 0;
}

.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.section-head {
  max-width: 680px;
  margin-bottom: 2rem;
}

.section-head h2,
.about-copy h2,
.cta-inner h2 {
  font-size: clamp(2rem, 3.6vw, 3.35rem);
}

.section-lead,
.hero-text,
.about-copy p {
  color: var(--text-muted);
}

.section-note {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--accent-2);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 70;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn-sm {
  min-height: 42px;
  padding: 0.55rem 1.05rem;
  font-size: 0.92rem;
}

.btn-primary {
  background: linear-gradient(180deg, #1aaeff 0%, var(--accent-2) 100%);
  color: #fff;
  box-shadow: var(--glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(0, 196, 255, 0.55);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(0, 132, 255, 0.28);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 600;
}

.text-link::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}

.text-link:hover::after {
  transform: translateX(4px);
}

.logo {
  position: relative;
  z-index: 46;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.logo-v {
  position: relative;
}

.logo-v::after {
  content: "";
  position: absolute;
  top: -0.12em;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 8px var(--accent);
  transform: translateX(-50%);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(2, 4, 10, 0.92);
  backdrop-filter: blur(14px);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-header.is-scrolled {
  background: rgba(4, 8, 18, 0.78);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 2.5rem, var(--container));
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-list {
  display: flex;
  gap: 1.35rem;
}

.nav-list a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.25s;
}

.nav-list a:hover,
.nav-list a.is-active {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 46;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 5px auto;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: var(--header-h) 0 0;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 22%;
  transform: scale(1.06);
  transform-origin: 70% 80%;
  animation: heroZoom 2.4s var(--ease) forwards;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(5, 8, 20, 0.78) 38%, rgba(5, 8, 20, 0.18) 68%, rgba(0, 0, 0, 0.35) 100%),
    radial-gradient(500px 280px at 72% 48%, rgba(0, 196, 255, 0.18), transparent 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(circle, rgba(0, 194, 255, 0.45) 1px, transparent 1.4px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, transparent 40%, #000 100%);
}

.hero-frame span {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(0, 194, 255, 0.45);
}

.hero-frame span:nth-child(1) { top: 18%; left: 46%; border-right: 0; border-bottom: 0; }
.hero-frame span:nth-child(2) { top: 18%; right: 7%; border-left: 0; border-bottom: 0; }
.hero-frame span:nth-child(3) { bottom: 16%; left: 46%; border-right: 0; border-top: 0; }
.hero-frame span:nth-child(4) { bottom: 16%; right: 7%; border-left: 0; border-top: 0; }

.hero-layout {
  position: relative;
  z-index: 2;
  padding: 8.5rem 0 6.5rem;
}

.hero-copy {
  max-width: 620px;
}

.hero-kicker {
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(1.7rem, 4.6vw, 4.4rem);
  font-weight: 800;
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero-title em {
  font-style: normal;
  color: var(--accent-3);
  text-shadow: 0 0 24px rgba(0, 229, 255, 0.28);
}

.hero-text {
  max-width: 52ch;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.hero-words {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transform: translateY(-50%);
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.hero-words-left { left: 1.1rem; }
.hero-words-right { right: 1.1rem; text-align: right; }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-dim);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.scroll-hint::after {
  content: "";
  width: 1px;
  height: 38px;
  background: linear-gradient(var(--accent), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

.reveal-hero {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.9s var(--ease) forwards;
}

.reveal-hero:nth-child(1) { animation-delay: 0.15s; }
.reveal-hero:nth-child(2) { animation-delay: 0.32s; }
.reveal-hero:nth-child(3) { animation-delay: 0.48s; }
.reveal-hero:nth-child(4) { animation-delay: 0.62s; }

.stats {
  position: relative;
  z-index: 3;
  margin-top: -2.2rem;
  padding: 0 0 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(6, 10, 24, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.stat {
  text-align: center;
  padding: 0.6rem;
}

.stat + .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-number {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 0 18px rgba(0, 194, 255, 0.35);
}

.stat-label {
  margin: 0.2rem 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4.5rem;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-frame {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 0 40px rgba(0, 132, 255, 0.12);
}

.about-frame img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: 78% 20%;
  filter: saturate(0.92) contrast(1.05);
}

.about-chip {
  position: absolute;
  right: -1.4rem;
  bottom: 2.2rem;
  width: 210px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.about-chip img {
  width: 100%;
  height: 132px;
  object-fit: cover;
}

.about-tag {
  position: absolute;
  left: 1.1rem;
  bottom: 1.2rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-points {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.about-points li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text);
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.1rem;
}

.service-card {
  position: relative;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 1.6rem 1.5rem 1.4rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(14, 22, 44, 0.9), rgba(7, 11, 22, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}

.service-card-wide {
  grid-column: span 3;
}

.service-card::before,
.service-card::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(0, 194, 255, 0.35);
  transition: border-color 0.3s;
}

.service-card::before {
  top: 12px;
  left: 12px;
  border-right: 0;
  border-bottom: 0;
}

.service-card::after {
  right: 12px;
  bottom: 12px;
  border-left: 0;
  border-top: 0;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 194, 255, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28), 0 0 24px rgba(0, 132, 255, 0.12);
}

.service-card:hover::before,
.service-card:hover::after {
  border-color: var(--accent);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  color: var(--accent);
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.service-card h3 {
  font-size: 1.28rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.filter-btn {
  min-height: 40px;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: 0.3s var(--ease);
}

.filter-btn:hover,
.filter-btn.is-active {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 16px rgba(0, 132, 255, 0.18);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 280px;
  background: #070b16;
}

.project-card:nth-child(1) { grid-column: span 7; min-height: 460px; }
.project-card:nth-child(2) { grid-column: span 5; min-height: 460px; }
.project-card:nth-child(3) { grid-column: span 4; min-height: 380px; }
.project-card:nth-child(4) { grid-column: span 8; min-height: 380px; }
.project-card:nth-child(5) { grid-column: span 5; min-height: 360px; }
.project-card:nth-child(6) { grid-column: span 7; min-height: 360px; }
.project-card:nth-child(7) { grid-column: span 7; min-height: 340px; }
.project-card:nth-child(8) { grid-column: span 5; min-height: 340px; }

.project-grid--three .project-card:nth-child(1),
.project-grid--three .project-card:nth-child(2) {
  grid-column: span 6;
  min-height: 440px;
}

.project-grid--three .project-card:nth-child(3) {
  grid-column: span 12;
  min-height: 400px;
}

.service-grid--few .service-card {
  grid-column: span 3;
}

.project-card.is-hidden {
  display: none;
}

.project-open {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: inherit;
}

.project-open img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s var(--ease);
}

.project-open:hover img {
  transform: scale(1.07);
}

.project-meta {
  position: absolute;
  inset: auto 0 0;
  padding: 4.5rem 1.3rem 1.3rem;
  background: linear-gradient(transparent, rgba(2, 4, 10, 0.92) 70%);
}

.project-cat {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-meta h3 {
  margin: 0 0 0.3rem;
  font-size: 1.35rem;
}

.project-meta p {
  margin: 0 0 0.8rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.project-cta {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  position: relative;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 12px rgba(0, 194, 255, 0.45);
}

.step {
  position: relative;
  padding-top: 0.2rem;
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #050814;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 1.25rem;
}

.step p {
  color: var(--text-muted);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.diff-card {
  padding: 1.5rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(12, 18, 36, 0.8), rgba(6, 9, 18, 0.9));
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.diff-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 194, 255, 0.35);
  box-shadow: 0 0 20px rgba(0, 132, 255, 0.12);
}

.diff-card h3 {
  font-size: 1.12rem;
  color: var(--accent-3);
}

.diff-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
}

.brands {
  padding: 0.2rem 0 0.6rem;
  overflow: hidden;
}

.brands-head {
  margin: 0 0 0.9rem;
}

.brands-label {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.brands-fade {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(0, 194, 255, 0.12);
  background: linear-gradient(90deg, rgba(0, 132, 255, 0.04), transparent 18%, transparent 82%, rgba(0, 132, 255, 0.04));
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.brands-track {
  display: flex;
  width: max-content;
  animation: brandsSlide 42s linear infinite;
}

.brands-fade:hover .brands-track {
  animation-play-state: paused;
}

.brands-list {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  padding: 0.9rem 3.2rem;
  list-style: none;
}

.brands-list li {
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.brands-list img {
  display: block;
  height: 58px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
  opacity: 0.95;
}

.brands-list li.is-light {
  background: #f4f6f8;
  border-radius: 10px;
  padding: 0.4rem 0.7rem;
}

.brands-list li.is-light img {
  height: 48px;
  opacity: 1;
}

.brands-list li::after {
  content: "";
  position: absolute;
  right: -1.75rem;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  transform: translateY(-50%);
  opacity: 0.7;
}

@keyframes brandsSlide {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.slider-viewport {
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 1.1rem;
  transition: transform 0.55s var(--ease);
}

.quote-card {
  flex: 0 0 calc((100% - 2.2rem) / 3);
  min-height: 280px;
  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 13, 28, 0.85);
  display: flex;
  flex-direction: column;
}

.quote-stars {
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
}

.quote-card p {
  color: var(--text);
  font-size: 1.02rem;
}

.quote-person {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
}

.quote-avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 194, 255, 0.2);
  background-color: rgba(0, 194, 255, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='%2398b4cc'%3E%3Ccircle cx='24' cy='18' r='8'/%3E%3Cpath d='M10 40c1.6-8.2 7.2-12.5 14-12.5S36.4 31.8 38 40'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center 62%;
  background-size: 70%;
}

.quote-person span {
  display: block;
  color: var(--text-dim);
  font-size: 0.86rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.slider-btn svg {
  width: 20px;
  height: 20px;
}

.slider-btn:hover {
  border-color: var(--accent);
  box-shadow: var(--glow);
}

.slider-dots {
  display: flex;
  gap: 0.45rem;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.cta-band {
  position: relative;
  padding: 5.2rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.38);
}

.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 240px at 50% 50%, rgba(0, 132, 255, 0.28), transparent 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.78));
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.cta-inner p {
  color: var(--text-muted);
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.site-footer {
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #02040a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p,
.footer-contact span {
  color: var(--text-muted);
}

.footer-nav h2,
.footer-contact h2 {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.footer-nav a,
.footer-contact a {
  color: var(--text-muted);
  display: inline-block;
  margin-bottom: 0.45rem;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.2rem;
  color: var(--text-dim);
  font-size: 0.88rem;
}

.back-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 30;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(5, 8, 20, 0.85);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.3s var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

.modal {
  position: relative;
  width: min(960px, calc(100% - 2rem));
  max-height: min(90vh, 820px);
  margin: auto;
  overflow: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #070b16;
  color: var(--text);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 40px rgba(0, 132, 255, 0.12);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.modal-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  border-radius: 22px;
}

.modal-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.modal-copy {
  padding: 2rem 1.7rem;
}

.modal-info {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.quote-modal {
  width: min(560px, calc(100% - 2rem));
}

.quote-form {
  padding: 2rem 1.6rem 1.6rem;
  display: grid;
  gap: 0.85rem;
}

.quote-lead {
  color: var(--text-muted);
}

.quote-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 1px solid var(--accent);
  border-color: var(--accent);
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); opacity: 0.3; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 1100px) {
  .service-card,
  .service-card-wide {
    grid-column: span 3;
  }

  .diff-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .quote-card {
    flex-basis: calc((100% - 1.1rem) / 2);
  }

  .hero-words {
    display: none;
  }

  .about-chip {
    right: 0.6rem;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    z-index: 45;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 44;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    background: rgba(3, 6, 14, 0.96);
    transform: translateX(110%);
    visibility: hidden;
    transition: transform 0.4s var(--ease), visibility 0.4s;
    padding: 5rem 1.5rem 2rem;
  }

  .nav.is-open {
    transform: none;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    font-size: 1.2rem;
  }

  .hero-img {
    object-position: 80% 28%;
  }

  .hero-glow {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(5, 8, 20, 0.55) 42%, rgba(0, 0, 0, 0.92) 100%),
      radial-gradient(420px 240px at 70% 28%, rgba(0, 196, 255, 0.2), transparent 70%);
  }

  .hero-layout {
    padding: 42vh 0 5.5rem;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-kicker {
    letter-spacing: 0.12em;
    font-size: 0.68rem;
  }

  .hero-title {
    font-size: clamp(1.55rem, 7.2vw, 2.4rem);
    line-height: 1.18;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .stats-grid,
  .about-grid,
  .footer-grid,
  .process-track,
  .modal-inner {
    grid-template-columns: 1fr;
  }

  .stat + .stat {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .about-frame img {
    height: 460px;
    object-position: 75% 12%;
  }

  .process-track::before {
    display: none;
  }

  .project-card,
  .project-card:nth-child(n) {
    grid-column: span 6;
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .container,
  .nav-wrap {
    width: min(100% - 2rem, var(--container));
  }

  .section {
    padding: 3.4rem 0;
  }

  .hero-actions,
  .cta-actions,
  .quote-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .site-header .btn {
    width: auto;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
  }

  .service-grid,
  .diff-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-wide {
    grid-column: span 1;
    min-height: auto;
  }

  .project-card,
  .project-card:nth-child(n) {
    grid-column: span 12;
    min-height: 280px;
  }

  .quote-card {
    flex-basis: 100%;
  }

  .about-chip {
    display: none;
  }

  .hero-frame {
    display: none;
  }

  .cta-band {
  padding: 5rem 0;
  }
}

/* Páginas de galeria */
.page-gallery .site-header {
  background: rgba(2, 4, 10, 0.92);
}

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 4.2rem) 0 2.2rem;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 132, 255, 0.18), transparent 68%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  margin-bottom: 0.7rem;
}

.gallery-note code {
  color: var(--accent);
  font-size: 0.84em;
}

.artist-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.artist-jump a {
  min-height: 38px;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
}

.artist-jump a:hover {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent-soft);
}

.artist-block {
  padding: 3.2rem 0 0.6rem;
  scroll-margin-top: calc(var(--header-h) + 1.2rem);
}

.artist-block + .artist-block {
  margin-top: 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.artist-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.3rem;
}

.artist-head h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.artist-head p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.back-link {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.back-link:hover {
  color: var(--accent);
}

.gallery-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.6rem 0 0;
}

.gallery-types a {
  min-height: 40px;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
}

.video-list {
  display: grid;
  gap: 2.6rem;
}

.video-block {
  scroll-margin-top: calc(var(--header-h) + 1.2rem);
}

.video-block h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
}

.video-block p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #070b16;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed.is-short {
  aspect-ratio: 9 / 16;
  max-width: 380px;
  margin-inline: auto;
}

.video-block a.video-yt {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
}

.gallery-note {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin: 0.35rem 0 0;
}

.gallery-section {
  padding: 0.5rem 0 5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.9rem;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border: 0;
  padding: 0;
  border-radius: 18px;
  background: #070b16;
  cursor: zoom-in;
  min-height: 260px;
  min-width: 0;
  color: inherit;
  grid-column: span 6;
}

.gallery-item:nth-child(6n+1) { grid-column: span 7; min-height: 430px; }
.gallery-item:nth-child(6n+2) { grid-column: span 5; min-height: 430px; }
.gallery-item:nth-child(6n+3) { grid-column: span 4; min-height: 320px; }
.gallery-item:nth-child(6n+4) { grid-column: span 8; min-height: 320px; }
.gallery-item:nth-child(6n+5) { grid-column: span 6; min-height: 340px; }
.gallery-item:nth-child(6n+6) { grid-column: span 6; min-height: 340px; }
.gallery-item:nth-child(6n+3):last-child,
.gallery-item:nth-child(6n+5):last-child {
  grid-column: span 12;
}
.gallery-grid:has(.gallery-item:only-child) .gallery-item {
  grid-column: span 12;
  min-height: min(62vh, 520px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-lightbox {
  width: min(1100px, calc(100% - 1.4rem));
  max-height: 92vh;
  background: #050814;
  overflow: hidden;
}

.gallery-lightbox-inner {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 60vh;
}

.gallery-lightbox-inner img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #000;
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}

.gallery-nav-btn.prev { left: 0.8rem; }
.gallery-nav-btn.next { right: 0.8rem; }

.gallery-count {
  position: absolute;
  left: 50%;
  bottom: 0.8rem;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--text-muted);
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .gallery-item,
  .gallery-item:nth-child(n) {
    grid-column: span 6;
    min-height: 240px;
  }
}

@media (max-width: 680px) {
  .gallery-item,
  .gallery-item:nth-child(n) {
    grid-column: span 12;
    min-height: 240px;
  }

  .gallery-nav-btn {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal-hero,
  .hero-img {
    opacity: 1;
    transform: none;
  }

  .brands-track {
    transform: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    animation: none !important;
  }

  .brands-list[aria-hidden="true"] {
    display: none;
  }
}
