@font-face {
  font-family: 'Geist';
  src: url('../fonts/geist-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@property --gradient-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:root {
  font-family: 'Geist', Arial, sans-serif;
  color: #111111;
  background: #090909;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --red: #bc1d31;
  --red-bright: #e12a43;
  --red-dark: #780b19;
  --paper: #f4f1ee;
  --paper-2: #e8e4e0;
  --ink: #111111;
  --muted: #746f6a;
  --line-light: rgba(17, 17, 17, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --dark: #090909;
  --dark-2: #111111;
  --green: #62d98c;
  --cyan: #76d6e4;
  --shell: clamp(24px, 4.5vw, 88px);
  --section-space: clamp(88px, 10vw, 170px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--dark);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--dark);
  color: var(--ink);
}

[hidden] {
  display: none !important;
}

#projetos,
#servicos,
#hospedagem,
#agencias,
#contato {
  scroll-margin-top: 78px;
}

body.admin-bar .site-header,
body.admin-bar .scroll-progress {
  top: 32px;
}

body,
button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
strong,
b {
  letter-spacing: 0;
}

button,
a,
input {
  outline: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  box-shadow: 0 0 0 3px rgba(225, 42, 67, 0.42);
}

::selection {
  color: #ffffff;
  background: var(--red);
}

.page-shell {
  width: calc(100% - (var(--shell) * 2));
  margin-inline: auto;
}

.section-light,
.section-dark,
.contact-section {
  position: relative;
  z-index: 2;
}

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.section-dark {
  color: #ffffff;
  background: var(--dark);
}

.scroll-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  transform-origin: 0 50%;
  background: var(--red-bright);
}

.site-header {
  position: sticky;
  z-index: 900;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 14px var(--shell);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: #070707;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  font-size: 14px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 8px;
  background: var(--red);
  font-size: 21px;
  font-weight: 900;
}

.brand-custom-logo,
.brand-custom-logo a {
  display: inline-flex;
  align-items: center;
}

.brand-custom-logo img {
  width: auto;
  max-width: 180px;
  height: 42px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3.2vw, 58px);
  font-size: 12px;
  font-weight: 730;
  text-transform: uppercase;
}

.desktop-nav .menu-list,
.site-footer .menu-list {
  display: flex;
  align-items: center;
  justify-content: inherit;
  gap: inherit;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer .menu-list {
  width: 100%;
  justify-content: space-between;
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
}

.desktop-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: '';
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 220ms ease;
  background: var(--red-bright);
}

.desktop-nav a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}

.header-cta {
  justify-self: end;
}

.header-cta-menu,
.mobile-cta-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-cta-menu {
  justify-self: end;
}

.header-cta-menu a,
.mobile-cta-menu a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--red);
  font-size: 13px;
  font-weight: 760;
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta-menu a:hover,
.mobile-cta-menu a:hover {
  transform: translateY(-2px);
  background: var(--red-bright);
}

.button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button {
  min-height: 44px;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 760;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.button svg {
  transition: transform 180ms ease;
}

.button:hover:not(:disabled) svg {
  transform: translateX(3px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.button-primary {
  color: #ffffff;
  background: var(--red);
}

.button-primary:hover:not(:disabled) {
  background: var(--red-bright);
}

.button-ghost {
  color: inherit;
  border-color: currentColor;
  background: transparent;
}

.button-light {
  color: var(--ink);
  background: #ffffff;
}

.button-large {
  min-height: 52px;
  padding-inline: 22px;
  font-size: 14px;
}

.icon-button {
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
}

.menu-toggle {
  display: none;
  justify-self: end;
}

.mobile-menu {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 22px;
  color: #ffffff;
  background: #090909;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 260ms ease, transform 260ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu > .icon-button {
  align-self: flex-end;
}

.mobile-menu nav {
  display: grid;
  gap: 0;
  margin: auto 0;
}

.mobile-menu-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu nav a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: clamp(28px, 9vw, 44px);
  font-weight: 740;
}

.mobile-cta-menu {
  display: grid;
}

.mobile-cta-menu a {
  width: 100%;
}

.gradient-border-component {
  isolation: isolate;
}

.animated-border {
  --gradient-primary: #26060a;
  --gradient-secondary: #b51d2e;
  --gradient-accent: #ff6577;
  --bg-color: #101010;
  --border-width: 1px;
  --border-radius: 8px;
  --animation-duration: 6s;
  border: var(--border-width) solid transparent;
  border-radius: var(--border-radius);
  background-image: linear-gradient(var(--bg-color), var(--bg-color)), conic-gradient(from var(--gradient-angle, 0deg), var(--gradient-primary) 0%, var(--gradient-secondary) 25%, var(--gradient-accent) 32%, var(--gradient-secondary) 40%, var(--gradient-primary) 52%, var(--gradient-secondary) 75%, var(--gradient-accent) 82%, var(--gradient-primary) 100%);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
}

.gradient-border-auto,
.gradient-border-stop-hover {
  animation: rotate-gradient var(--animation-duration) linear infinite;
}

.gradient-border-stop-hover:hover {
  animation-play-state: paused;
}

.gradient-border-hover:hover {
  animation: rotate-gradient var(--animation-duration) linear infinite;
}

@keyframes rotate-gradient {
  to { --gradient-angle: 360deg; }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 780;
  text-transform: uppercase;
}

.section-label i {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red-bright);
}

.section-label.dark {
  color: #5d5955;
}

.hero-section {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100svh - 122px);
  overflow: hidden;
  color: #ffffff;
  background: #080808;
  perspective: 1400px;
}

.hero-background {
  position: absolute;
  inset: -18px;
}

.hero-background {
  background: #080808 url('../images/defaults/hero-background-poster.webp') center / cover no-repeat;
}

.hero-background video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero-background.hero-video-disabled video {
  display: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(44px, 6vw, 110px);
  min-height: calc(100svh - 122px);
  padding-top: 34px;
  padding-bottom: 98px;
}

.hero-copy {
  max-width: 960px;
}

.hero-copy h1 {
  max-width: 940px;
  margin-bottom: 24px;
  font-size: clamp(48px, 5vw, 92px);
  line-height: 0.93;
  font-weight: 770;
}

.hero-copy h1 span {
  color: #ff4058;
}

.hero-copy > p {
  max-width: 700px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  margin-top: 42px;
  padding-top: 21px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.hero-proof span {
  display: grid;
  gap: 3px;
}

.hero-proof strong {
  color: #ffffff;
  font-size: 14px;
}

.hero-visual {
  width: 100%;
  max-width: 620px;
  justify-self: end;
  transform-style: preserve-3d;
}

.hero-visual-depth,
.hero-visual-float {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
}

.hero-visual-depth {
  will-change: transform;
}

.hero-visual-float {
  animation: hero-float 6.5s ease-in-out infinite;
}

@keyframes hero-float {
  50% { transform: translateY(-8px); }
}

.hero-showcase {
  position: relative;
  height: clamp(520px, 61vh, 760px);
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.58);
  transform: translateZ(26px);
}

.hero-showcase > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-showcase-slide {
  opacity: 0;
  transform: scale(1.055);
  transition: opacity 900ms ease, transform 5.2s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}

.hero-showcase-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.showcase-scan {
  position: absolute;
  z-index: 2;
  right: 0;
  left: 0;
  top: -28%;
  height: 24%;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.13), rgba(225, 42, 67, 0.22), transparent);
  mix-blend-mode: screen;
  animation: showcase-scan 5.8s ease-in-out infinite;
}

@keyframes showcase-scan {
  0%, 18% { transform: translateY(0); opacity: 0; }
  27% { opacity: 0.7; }
  72% { opacity: 0.42; }
  86%, 100% { transform: translateY(620%); opacity: 0; }
}

.hero-signal-rings {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 88%;
  aspect-ratio: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero-signal-rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(225, 42, 67, 0.2);
  border-radius: 50%;
  opacity: 0;
  animation: signal-ring 5.4s ease-out infinite;
}

.hero-signal-rings i:nth-child(2) { animation-delay: 1.8s; }
.hero-signal-rings i:nth-child(3) { animation-delay: 3.6s; }

@keyframes signal-ring {
  0% { transform: scale(0.76); opacity: 0; }
  16% { opacity: 0.48; }
  70%, 100% { transform: scale(1.32); opacity: 0; }
}

.hero-copy h1 span {
  background-image: linear-gradient(105deg, #ff4058 20%, #ff4058 42%, #ffffff 50%, #ff4058 58%, #ff4058 80%);
  background-size: 260% 100%;
  background-position: 100% 0;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: hero-highlight 7s ease-in-out infinite;
}

@keyframes hero-highlight {
  0%, 64%, 100% { background-position: 100% 0; }
  78% { background-position: 0 0; }
}

.showcase-status {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 780;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(98, 217, 140, 0.13);
  animation: live-pulse 1.8s ease-in-out infinite;
}

@keyframes live-pulse {
  50% { opacity: 0.4; transform: scale(0.8); }
}

.showcase-metrics {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 7, 7, 0.83);
  backdrop-filter: blur(12px);
}

.showcase-metrics span {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.showcase-metrics span:last-child {
  border-right: 0;
}

.showcase-metrics small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
  text-transform: uppercase;
}

.showcase-metrics b {
  font-size: clamp(18px, 2vw, 29px);
}

.hero-ticker {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--line-dark);
  background: rgba(5, 5, 5, 0.78);
  font-size: 11px;
  font-weight: 720;
  white-space: nowrap;
}

.hero-ticker-track,
.hero-ticker-group {
  display: flex;
  width: max-content;
}

.hero-ticker-track {
  animation: hero-ticker 28s linear infinite;
}

.hero-ticker-group {
  flex-shrink: 0;
}

@keyframes hero-ticker {
  to { transform: translateX(-50%); }
}

.hero-ticker span {
  padding-right: 32px;
}

.hero-ticker-brand {
  color: var(--red-bright);
}

.credibility-section,
.services-section,
.technology-section,
.process-section,
.faq-section {
  padding-block: var(--section-space);
}

.credibility-section {
  display: flex;
  flex-direction: column;
  min-height: 78vh;
  overflow: hidden;
  padding-bottom: 0;
}

.credibility-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: clamp(50px, 9vw, 170px);
  align-items: start;
}

.credibility-grid h2,
.section-heading h2,
.technology-grid h2,
.agency-layout h2,
.faq-layout h2,
.contact-layout h2 {
  max-width: 1050px;
  margin-bottom: 0;
  font-size: clamp(42px, 5.2vw, 94px);
  line-height: 0.98;
  font-weight: 750;
}

.credibility-note {
  padding-left: clamp(26px, 3vw, 58px);
  border-left: 1px solid var(--line-light);
}

.credibility-note h3 {
  max-width: 24ch;
  margin: 0 0 18px;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.05;
}

.credibility-note > p,
.section-heading > p,
.section-heading.split > p,
.technology-grid > div > p,
.agency-layout > div > p,
.faq-layout > div > p,
.contact-layout > div > p {
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.65;
}

.proof-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.proof-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 680;
}

.proof-list svg {
  color: var(--red);
}

.segment-section,
.projects-section,
.hosting-section,
.agency-section {
  padding-block: var(--section-space);
}

.section-heading {
  max-width: 1080px;
  margin-bottom: clamp(48px, 7vw, 96px);
}

.section-heading h2 {
  font-size: clamp(40px, 4.7vw, 82px);
}

.section-heading > p {
  max-width: 700px;
  margin-top: 24px;
}

.section-dark .section-heading > p,
.section-dark .section-heading.split > p,
.agency-layout > div > p {
  color: rgba(255, 255, 255, 0.58);
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(48px, 9vw, 160px);
  max-width: none;
  align-items: end;
}

.section-heading.split > p {
  margin: 0;
}

.segment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: stretch;
}

.segment-tabs {
  border-top: 1px solid var(--line-dark);
}

.segment-tab {
  display: grid;
  grid-template-columns: 30px 1fr 22px;
  align-items: center;
  gap: 15px;
  width: 100%;
  min-height: 94px;
  padding: 18px 10px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.48);
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  text-align: left;
  transition: color 180ms ease, padding 180ms ease, background 180ms ease;
}

.segment-tab:hover,
.segment-tab.active {
  padding-left: 20px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.045);
}

.segment-tab.active > svg:first-child {
  color: var(--red-bright);
}

.segment-tab span {
  display: grid;
  gap: 5px;
}

.segment-tab b {
  font-size: 17px;
}

.segment-tab small {
  font-size: 12px;
}

.segment-result {
  display: flex;
  min-height: 420px;
  align-items: flex-end;
  padding: clamp(28px, 4vw, 60px);
  background-color: #101010 !important;
}

.segment-result > div {
  width: 100%;
  transition: opacity 160ms ease, transform 160ms ease;
}

.segment-result.is-switching > div {
  opacity: 0;
  transform: translateY(10px);
}

.result-kicker,
.plan-audience,
.contact-action > div > span,
.performance-header,
.agency-image > div > span,
.eyebrow {
  color: var(--red-bright);
  font-size: 10px;
  font-weight: 780;
  text-transform: uppercase;
}

.segment-result h3 {
  max-width: 680px;
  margin: 16px 0 18px;
  font-size: clamp(34px, 4vw, 70px);
  line-height: 1;
}

.segment-result p {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.6;
}

.projects-section {
  padding-top: 30px;
}

.project-list {
  border-top: 1px solid var(--line-dark);
}

.project-row {
  display: grid;
  width: 100%;
  min-height: 128px;
  grid-template-columns: 52px minmax(240px, 1.1fr) minmax(240px, 0.7fr) 30px;
  align-items: center;
  gap: 20px;
  padding: 0;
  color: inherit;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background 180ms ease, padding 180ms ease;
}

.project-row:hover { padding-inline: 20px; background: rgba(255, 255, 255, 0.05); }

.project-card-media {
  display: none;
}

.project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card-copy {
  display: contents;
}

.project-number,
.project-type {
  display: block;
  color: var(--red-bright);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-type { display: none; }

.project-row h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: clamp(27px, 3vw, 50px);
  line-height: 0.98;
}

.project-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.project-row > svg { transition: transform 180ms ease; }
.project-row:hover > svg { transform: rotate(-30deg); }

.project-preview {
  position: fixed;
  z-index: 950;
  width: 440px;
  height: min(32vw, 448px);
  overflow: hidden;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: #0b0b0b;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

.project-preview img { width: 100%; height: 100%; object-fit: contain; }
.project-card-media-all { background: linear-gradient(135deg, #5d0614, #170407 56%, #080808); }
.project-preview span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 10px;
  overflow: hidden;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.74);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.project-empty {
  margin: 0;
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.projects-archive { min-height: 100svh; padding-top: clamp(130px, 16vw, 220px); }
.projects-archive-header { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr); gap: 34px; padding-bottom: clamp(48px, 8vw, 120px); }
.projects-archive-header .section-label { grid-column: 1 / -1; }
.projects-archive-header h1 { max-width: 11ch; margin: 0; font-size: clamp(54px, 8vw, 128px); line-height: 0.88; }
.projects-archive-header p { max-width: 43ch; align-self: end; margin: 0; color: rgba(255, 255, 255, 0.62); font-size: 16px; line-height: 1.65; }
.projects-archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; padding-bottom: clamp(64px, 10vw, 160px); }
.archive-project-card { display: grid; grid-template-columns: 1fr; align-content: start; overflow: hidden; border: 1px solid var(--line-dark); border-radius: 8px; background: #101010; }
.archive-project-media { display: block; aspect-ratio: 4 / 5; overflow: hidden; background: #080808; }
.archive-project-media img, .archive-project-media > span { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1); }
.archive-project-media > span { background: linear-gradient(135deg, #5d0614, #170407 56%, #080808); }
.archive-project-card:hover .archive-project-media img { transform: scale(1.03); }
.archive-project-copy { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; padding: clamp(24px, 2.4vw, 38px); }
.archive-project-copy h2 { margin: 18px 0 12px; font-size: clamp(28px, 2.4vw, 40px); line-height: 0.96; }
.archive-project-copy h2 a { color: #ffffff; }
.archive-project-copy p { max-width: 50ch; margin: 0; color: rgba(255, 255, 255, 0.62); line-height: 1.6; }
.archive-project-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--red-bright); font-weight: 760; }
.projects-archive .navigation { grid-column: 1 / -1; }
.projects-archive-cta { display: flex; align-items: end; justify-content: space-between; gap: 24px; padding-bottom: clamp(80px, 12vw, 180px); border-top: 1px solid var(--line-dark); padding-top: clamp(42px, 6vw, 88px); }
.projects-archive-cta h2 { max-width: 16ch; margin: 18px 0 0; font-size: clamp(36px, 5vw, 78px); line-height: 0.93; }

.credibility-clients { width: 100%; margin-top: auto; padding-top: clamp(54px, 8vw, 120px); }
.clients-marquee { overflow: hidden; }
.clients-marquee-track,
.clients-marquee-group { display: flex; width: max-content; align-items: center; }
.clients-marquee-track { animation: client-marquee 32s linear infinite; will-change: transform; }
.clients-marquee-track:hover { animation-play-state: paused; }
.client-logo { display: flex; width: 220px; height: 112px; flex: 0 0 220px; align-items: center; justify-content: center; padding-inline: 30px; }
.client-logo img { display: block; width: 160px; height: auto; max-height: 62px; object-fit: contain; filter: brightness(0); opacity: 0.78; transition: opacity 180ms ease; }
.client-logo:hover img, .client-logo:focus-visible img { opacity: 1; }
@keyframes client-marquee { to { transform: translateX(-50%); } }

.studio-section { padding-block: var(--section-space); }
.studio-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr); gap: clamp(40px, 9vw, 160px); }
.studio-layout h2 { max-width: 11ch; margin: 20px 0; font-size: clamp(42px, 5.6vw, 86px); line-height: 0.92; }
.studio-layout > div > p { max-width: 52ch; margin: 0; color: rgba(16, 16, 16, 0.66); line-height: 1.65; }
.studio-people { display: grid; border-top: 1px solid var(--line-light); }
.studio-people article { display: grid; grid-template-columns: 68px 1fr; gap: 18px; align-items: start; padding-block: 28px; border-bottom: 1px solid var(--line-light); }
.studio-people article > span { display: grid; width: 58px; height: 58px; place-items: center; color: #ffffff; border-radius: 8px; background: var(--red); font-size: 22px; font-weight: 800; }
.studio-people strong { display: block; font-size: 26px; }
.studio-people p { margin: 8px 0 0; color: rgba(16, 16, 16, 0.66); line-height: 1.55; }

.floating-whatsapp {
  position: fixed;
  z-index: 1200;
  right: clamp(16px, 2vw, 30px);
  bottom: clamp(16px, 2vw, 30px);
  display: inline-flex;
  width: 56px;
  height: 56px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: #178a4b;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  color: #ffffff;
  background: #1aa156;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

.case-section {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: clamp(680px, 86vh, 960px);
  overflow: hidden;
  color: #ffffff;
  background: #10090a;
}

.case-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.case-background {
  object-fit: cover;
  transition: opacity 220ms ease, transform 600ms ease;
}

.case-section.is-changing .case-background {
  opacity: 0.18;
  transform: scale(1.025);
}

.case-stat strong,
.case-stat span,
[data-case-title] {
  transition: opacity 180ms ease, transform 180ms ease;
}

.case-section.is-changing .case-stat strong,
.case-section.is-changing .case-stat span,
.case-section.is-changing [data-case-title] {
  opacity: 0;
  transform: translateY(10px);
}

.case-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.48fr);
  align-items: end;
  gap: 40px;
  padding-block: var(--section-space);
}

.case-copy {
  max-width: 900px;
}

.case-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(42px, 4.6vw, 76px);
  line-height: 0.96;
}

@media (min-width: 901px) {
  .case-section {
    height: clamp(720px, 86vh, 900px);
    min-height: 0;
  }

  .case-layout {
    height: 100%;
  }

  .case-copy h2 {
    display: flex;
    min-height: 2.88em;
    align-items: flex-end;
  }
}

.case-copy > p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
  line-height: 1.6;
}

.case-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}

.case-tabs button {
  position: relative;
  min-width: 132px;
  overflow: hidden;
  padding: 13px 15px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.38);
  font-size: 12px;
  font-weight: 680;
}

.case-tabs button.active {
  color: #ffffff;
  border-color: var(--red-bright);
}

.case-tabs button span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--red-bright);
}

.case-tabs button.active span {
  animation: case-progress 4s linear forwards;
}

@keyframes case-progress {
  to { transform: scaleX(1); }
}

.case-stat {
  display: grid;
  align-self: end;
  justify-self: end;
  min-width: min(100%, 330px);
  gap: 7px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(16px);
}

.case-stat strong {
  font-size: clamp(52px, 7vw, 116px);
  line-height: 0.9;
}

.case-stat span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.service-item {
  min-height: 350px;
  padding: clamp(26px, 3vw, 48px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: color 220ms ease, background 220ms ease;
}

.service-item:hover {
  color: #ffffff;
  background: var(--red);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(58px, 7vw, 104px);
  color: var(--red);
}

.service-item:hover .service-top {
  color: #ffffff;
}

.service-top span {
  font-size: 11px;
  font-weight: 760;
}

.service-item h3 {
  margin-bottom: 14px;
  font-size: clamp(23px, 2.1vw, 34px);
}

.service-item p {
  color: var(--muted);
  line-height: 1.6;
}

.service-item:hover p {
  color: rgba(255, 255, 255, 0.76);
}

.service-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 720;
  text-align: left;
}

.hosting-section {
  overflow: hidden;
}

.hosting-orbit {
  position: absolute;
  top: 9%;
  right: -7vw;
  display: grid;
  place-items: center;
  width: min(46vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: orbit 24s linear infinite;
}

.hosting-orbit::before,
.hosting-orbit::after {
  position: absolute;
  content: '';
  border: 1px solid rgba(188, 29, 49, 0.24);
  border-radius: 50%;
}

.hosting-orbit::before { inset: 16%; }
.hosting-orbit::after { inset: 35%; }

.hosting-orbit svg {
  position: absolute;
  color: rgba(255, 255, 255, 0.35);
}

.hosting-orbit svg:nth-child(1) { top: 7%; left: 48%; }
.hosting-orbit svg:nth-child(2) { right: 7%; bottom: 28%; }
.hosting-orbit svg:nth-child(3) { bottom: 10%; left: 20%; }

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.hosting-section .page-shell {
  position: relative;
  z-index: 2;
}

.hosting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hosting-grid > div,
.hosting-border {
  height: 100%;
}

.hosting-plan {
  display: flex;
  flex-direction: column;
  min-height: 460px;
  height: 100%;
  padding: clamp(26px, 3vw, 45px);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.hosting-border .hosting-plan {
  border: 0;
  background: transparent;
}

.hosting-plan.featured {
  background: #140d0e;
}

.hosting-plan h3 {
  margin: 17px 0 42px;
  font-size: clamp(34px, 3.3vw, 55px);
}

.hosting-plan ul {
  display: grid;
  gap: 16px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.hosting-plan li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hosting-plan li svg {
  color: var(--red-bright);
}

.hosting-plan .button {
  width: 100%;
  margin-top: auto;
}

.hosting-trust {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.hosting-trust span {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.hosting-trust svg {
  flex: 0 0 auto;
  color: var(--cyan);
}

.technology-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(370px, 0.75fr);
  gap: clamp(50px, 9vw, 160px);
  align-items: center;
}

.technology-grid h2 {
  font-size: clamp(40px, 4.7vw, 80px);
}

.technology-grid > div > p {
  max-width: 720px;
  margin-top: 24px;
}

.tech-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 42px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.tech-steps span {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 74px;
  padding: 16px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-size: 13px;
  font-weight: 680;
}

.tech-steps b {
  color: var(--red);
  font-size: 11px;
}

.performance-panel {
  position: relative;
  display: grid;
  min-height: 560px;
  overflow: hidden;
  place-items: center;
  padding: clamp(28px, 4vw, 54px);
  color: #ffffff;
  border-radius: 8px;
  background: #0d0d0d;
}

.performance-panel::before {
  position: absolute;
  inset: -40%;
  content: '';
  background: conic-gradient(from 0deg, transparent, rgba(188, 29, 49, 0.7), transparent 28%);
  animation: performance-scan 4.8s linear infinite;
}

.performance-panel::after {
  position: absolute;
  inset: 1px;
  content: '';
  border-radius: 7px;
  background: #0d0d0d;
}

@keyframes performance-scan {
  to { transform: rotate(360deg); }
}

.performance-panel > * {
  position: relative;
  z-index: 2;
}

.performance-header {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.55);
}

.performance-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: min(72%, 320px);
  aspect-ratio: 1;
  border: 2px solid rgba(188, 29, 49, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(188, 29, 49, 0.13), 0 0 50px rgba(188, 29, 49, 0.16);
}

.performance-ring::before {
  position: absolute;
  inset: 12px;
  content: '';
  border: 7px solid transparent;
  border-top-color: var(--red-bright);
  border-right-color: var(--red);
  border-radius: 50%;
  animation: orbit 2.7s linear infinite;
}

.performance-ring strong {
  color: #ff314b;
  font-size: clamp(72px, 8vw, 130px);
  line-height: 0.84;
}

.performance-ring small {
  position: absolute;
  bottom: 26%;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.performance-bars {
  display: flex;
  width: 76%;
  height: 42px;
  align-items: flex-end;
  gap: 7px;
}

.performance-bars i {
  flex: 1;
  height: 30%;
  background: var(--red);
  animation: bar-load 1.8s ease-in-out infinite alternate;
}

.performance-bars i:nth-child(2) { height: 74%; animation-delay: 0.2s; background: var(--cyan); }
.performance-bars i:nth-child(3) { height: 52%; animation-delay: 0.4s; background: var(--green); }

@keyframes bar-load {
  to { height: 95%; }
}

.performance-panel > p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.agency-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.75fr);
  gap: clamp(50px, 9vw, 160px);
  align-items: center;
}

.agency-layout h2 {
  font-size: clamp(42px, 5vw, 86px);
}

.agency-layout > div > p {
  max-width: 720px;
  margin: 27px 0 34px;
}

.agency-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-bottom: 34px;
}

.agency-points span {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.agency-points svg {
  flex: 0 0 auto;
  color: var(--red-bright);
}

.agency-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  background: #310a10;
}

.agency-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.agency-image > div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(12px);
}

.agency-image > div strong {
  font-size: 18px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.process-step {
  min-height: 300px;
  padding: clamp(24px, 3vw, 44px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.process-step > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 770;
}

.process-step h3 {
  margin-top: 90px;
  margin-bottom: 13px;
  font-size: clamp(25px, 2.3vw, 38px);
}

.process-step p {
  color: var(--muted);
  line-height: 1.55;
}

.faq-section {
  padding-top: 30px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.65fr) minmax(0, 1fr);
  gap: clamp(50px, 10vw, 180px);
}

.faq-layout h2 {
  font-size: clamp(40px, 4.2vw, 72px);
}

.faq-layout > div > p {
  margin-top: 23px;
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-item {
  border-bottom: 1px solid var(--line-light);
}

.faq-item > button {
  display: flex;
  width: 100%;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  cursor: pointer;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-size: clamp(17px, 1.5vw, 23px);
  font-weight: 690;
}

.faq-item > button svg {
  flex: 0 0 auto;
  transition: transform 220ms ease;
}

.faq-item.open > button svg {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  animation: faq-open 220ms ease-out both;
}

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-answer p {
  max-width: 720px;
  padding: 0 36px 26px 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-section {
  padding-block: var(--section-space);
  overflow: hidden;
  color: #ffffff;
  background: var(--red);
}

.contact-section::before {
  position: absolute;
  inset: 0;
  content: '';
  opacity: 0.22;
  background-image: linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 84px 84px;
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.72fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: center;
}

.contact-layout h2 {
  font-size: clamp(44px, 5.4vw, 92px);
}

.contact-layout > div > p {
  max-width: 660px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-action {
  display: grid;
  gap: 20px;
  padding: clamp(28px, 4vw, 52px);
  background-color: #101010 !important;
}

.contact-action > div {
  display: grid;
  gap: 10px;
}

.contact-action > div strong {
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.12;
}

.contact-action > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 680;
}

.site-footer {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding-top: clamp(65px, 8vw, 120px);
  color: #ffffff;
  background: #090909;
}

.site-footer nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: clamp(13px, 1.2vw, 19px);
  font-weight: 720;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(70px, 10vw, 150px);
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.75;
}

.footer-meta span:last-child {
  text-align: right;
}

.footer-gallery-track,
.footer-gallery-group {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
}

.footer-gallery {
  width: 100%;
  margin-top: 64px;
  overflow: hidden;
}

.footer-gallery-track {
  animation: gallery-flow 34s linear infinite;
  will-change: transform;
}

.footer-gallery:hover .footer-gallery-track { animation-play-state: paused; }

.footer-gallery-item {
  display: block;
  width: clamp(210px, 20vw, 380px);
  aspect-ratio: 4 / 5;
  flex: 0 0 auto;
  overflow: hidden;
}

.footer-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 240ms ease;
}

.footer-gallery-item:hover img,
.footer-gallery-item:focus-visible img { filter: brightness(1.08); }

@keyframes gallery-flow {
  to { transform: translateX(-50%); }
}

.footer-word {
  position: relative;
  display: flex;
  width: calc(100% - (var(--shell) * 2));
  margin: clamp(65px, 8vw, 120px) auto 18px;
  align-items: flex-end;
  justify-content: space-between;
  font-size: clamp(70px, 17.2vw, 320px);
  font-weight: 840;
  line-height: 0.72;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.footer-word span {
  flex: 1;
  text-align: center;
}

.footer-word.is-flickering span {
  animation: footer-flicker 520ms ease-out both;
}

.footer-word.is-flickering span:nth-child(2) { animation-delay: 50ms; }
.footer-word.is-flickering span:nth-child(3) { animation-delay: 100ms; }
.footer-word.is-flickering span:nth-child(4) { animation-delay: 150ms; }
.footer-word.is-flickering span:nth-child(5) { animation-delay: 200ms; }
.footer-word.is-flickering span:nth-child(6) { animation-delay: 250ms; }
.footer-word.is-flickering span:nth-child(7) { animation-delay: 300ms; }
.footer-word.is-flickering span:nth-child(8) { animation-delay: 350ms; }

@keyframes footer-flicker {
  0% { opacity: 0.08; }
  28% { opacity: 1; }
  48% { opacity: 0.25; }
  72%, 100% { opacity: 1; }
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 28px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-bottom .footer-social-links {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  font-size: inherit;
  font-weight: inherit;
}

.footer-bottom .footer-social-links a {
  position: relative;
  z-index: 1;
}

.footer-bottom .footer-social-links button {
  min-height: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: none;
  font: inherit;
  cursor: pointer;
}

.footer-bottom .footer-social-links a:hover,
.footer-bottom .footer-social-links a:focus-visible,
.footer-bottom .footer-social-links button:hover,
.footer-bottom .footer-social-links button:focus-visible {
  color: #ffffff;
}

.cookie-consent {
  position: fixed;
  z-index: 2100;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  width: min(760px, calc(100% - 40px));
  margin-left: auto;
  padding: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(9, 9, 9, 0.97);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.cookie-consent[hidden] { display: none; }
.cookie-consent-copy { max-width: 470px; }
.cookie-consent-copy strong { display: block; margin-bottom: 6px; font-size: 16px; }
.cookie-consent-copy p { margin: 0; color: rgba(255, 255, 255, 0.68); font-size: 13px; line-height: 1.55; }
.cookie-consent-copy a { color: #ffffff; text-decoration: underline; text-underline-offset: 3px; }
.cookie-consent-actions { display: flex; flex: 0 0 auto; gap: 8px; }
.cookie-consent-actions .button { min-height: 44px; padding-inline: 16px; white-space: nowrap; }

.quote-privacy-note {
  margin-top: 16px !important;
  color: rgba(255, 255, 255, 0.56) !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

.quote-privacy-note a { color: #ffffff; text-decoration: underline; text-underline-offset: 3px; }

.quote-overlay {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  overflow-y: auto;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.quote-overlay.is-open {
  opacity: 1;
}

.quote-dialog {
  position: relative;
  width: min(100%, 860px);
  max-height: calc(100svh - 44px);
  overflow-y: auto;
  padding: clamp(28px, 5vw, 60px);
  color: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #101010;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  transform: translateY(24px) scale(0.985);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.quote-overlay.is-open .quote-dialog {
  transform: translateY(0) scale(1);
}

.quote-close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
}

.quote-progress {
  height: 3px;
  margin: -2px 56px 42px 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.quote-progress span {
  display: block;
  height: 100%;
  background: var(--red-bright);
}

.quote-step h2 {
  max-width: 700px;
  margin: 15px 0 12px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
}

.quote-step > p {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}

.quote-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quote-options.compact {
  grid-template-columns: 1fr;
}

.quote-option {
  position: relative;
  display: grid;
  min-height: 96px;
  align-content: center;
  gap: 5px;
  padding: 17px 48px 17px 18px;
  cursor: pointer;
  color: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: transparent;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease;
}

.quote-option:hover,
.quote-option.active {
  border-color: var(--red-bright);
  background: rgba(188, 29, 49, 0.12);
}

.quote-option span {
  font-size: 15px;
  font-weight: 720;
}

.quote-option small {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.quote-option svg {
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--red-bright);
  transform: translateY(-50%);
  opacity: 0;
}

.quote-option.active svg {
  opacity: 1;
}

.quote-fields {
  display: grid;
  gap: 14px;
}

.quote-fields label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 680;
}

.quote-fields input {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  color: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.quote-fields input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.quote-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}

.quote-submit {
  width: 100%;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 550ms cubic-bezier(0.22, 1, 0.36, 1), transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.content-page {
  width: 100%;
  min-height: 72vh;
  margin-inline: 0;
  padding-inline: var(--shell);
  padding-top: clamp(150px, 16vw, 240px);
  padding-bottom: var(--section-space);
  color: var(--ink);
  background: var(--paper);
}

.content-page-header {
  max-width: 1050px;
  margin-bottom: 60px;
}

.content-page-header h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.96;
}

.content-loop {
  display: grid;
  gap: 18px;
  max-width: 1000px;
}

.content-entry {
  padding: clamp(25px, 4vw, 54px);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: #ffffff;
  line-height: 1.7;
}

.content-entry h2 {
  font-size: clamp(28px, 3vw, 48px);
}

.single-entry img,
.entry-featured img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.project-page {
  padding-top: 78px;
  color: #ffffff;
  background: #080808;
}

.project-entry-header {
  display: flex;
  min-height: min(46svh, 520px);
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  padding-top: clamp(50px, 6vw, 90px);
  padding-bottom: clamp(24px, 3.5vw, 50px);
}

.project-entry-header > div:first-child { max-width: 900px; }
.project-entry-logo { display: block; width: auto; max-width: min(260px, 54vw); max-height: 86px; margin-bottom: 24px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); }

.project-entry-header h1 {
  max-width: 12ch;
  margin: 20px 0;
  overflow-wrap: anywhere;
  font-size: clamp(52px, 8vw, 128px);
  line-height: 0.9;
}

.project-entry-header p {
  max-width: 58ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.project-entry-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.project-entry-body {
  padding-top: clamp(34px, 5vw, 72px);
  padding-bottom: clamp(64px, 9vw, 140px);
}

.project-entry-body.has-cover {
  display: grid;
  grid-template-columns: minmax(384px, 624px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(44px, 7vw, 120px);
}

.project-entry-featured {
  position: sticky;
  top: 96px;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #101010;
}

.project-entry-featured img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-entry-content {
  max-width: 820px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.project-entry-content > * + * { margin-top: 1.5em; }
.project-entry-content h2 { font-size: clamp(32px, 4vw, 58px); line-height: 1; }
.project-entry-content img { max-width: 100%; height: auto; border-radius: 8px; }
.project-entry-content .wp-block-gallery { margin-block: 2.5em; }

.project-entry-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 34px;
  padding-bottom: 72px;
  border-top: 1px solid var(--line-dark);
}

.not-found-page p {
  max-width: 650px;
  margin: 26px 0;
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .header-cta,
  .header-cta-menu { display: none; }
  .menu-toggle { display: inline-flex; }
  .projects-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .hero-copy h1 { font-size: clamp(48px, 7vw, 76px); }
  .hero-showcase { height: clamp(490px, 58vh, 650px); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .hosting-trust { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 901px) and (max-height: 800px) {
  .hero-layout {
    padding-top: 20px;
    padding-bottom: 62px;
  }

  .hero-copy h1 {
    margin-bottom: 18px;
    font-size: clamp(46px, 4.45vw, 68px);
  }

  .hero-copy > p {
    margin-bottom: 22px;
    font-size: 17px;
  }

  .hero-proof {
    margin-top: 25px;
  }

  .hero-showcase {
    height: min(68vh, 540px);
  }
}

@media (max-width: 900px) {
  :root {
    --shell: 22px;
    --section-space: 84px;
  }

  .hero-background {
    background-position: 70% center;
  }

  .hero-background::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: '';
    pointer-events: none;
    background: linear-gradient(
      90deg,
      #080808 0%,
      rgba(8, 8, 8, 0.8) 42%,
      rgba(8, 8, 8, 0.5) 100%
    );
  }

  .hero-background video {
    object-position: 75% center;
  }

  .hero-section,
  .hero-layout {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 58px;
    padding-bottom: 100px;
  }

  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 680px; justify-self: stretch; }
  .hero-visual-depth { transform: none !important; }
  .hero-signal-rings { width: 78%; }
  .hero-showcase { height: min(105vw, 760px); }

  .credibility-grid,
  .section-heading.split,
  .segment-layout,
  .technology-grid,
  .agency-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .credibility-note {
    padding: 30px 0 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .section-heading.split { align-items: start; gap: 26px; }
  .segment-result { min-height: 360px; }

  .case-layout {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .case-stat { justify-self: start; }
  .hosting-grid { grid-template-columns: 1fr; }
  .hosting-plan { min-height: 390px; }
  .hosting-orbit { width: 78vw; opacity: 0.5; }
  .technology-grid { gap: 54px; }
  .technology-grid > div { min-width: 0; }
  .performance-panel { min-height: 520px; }
  .agency-layout { gap: 54px; }
  .agency-image { min-height: 560px; }
  .agency-image img { min-height: 560px; }
  .footer-word { font-size: clamp(58px, 17.2vw, 160px); }
}

@media (max-width: 782px) {
  body.admin-bar .site-header,
  body.admin-bar .scroll-progress {
    top: 46px;
  }
}

@media (max-width: 620px) {
  .site-header { min-height: 68px; padding-block: 11px; }
  .brand-mark { width: 36px; height: 36px; }

  .hero-background {
    background-position: 80% top;
    background-size: auto 55%;
  }

  .hero-section,
  .hero-layout { min-height: calc(100svh - 112px); }
  .hero-background::after {
    background: linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.5) 0%,
      rgba(8, 8, 8, 0.8) 40%,
      #080808 60%,
      #080808 100%
    );
  }
  .hero-background video {
    height: 60%;
    object-position: 80% top;
  }
  .hero-layout { padding-top: 44px; padding-bottom: 76px; }
  .hero-copy h1 { font-size: clamp(35px, 10.6vw, 54px); }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    font-size: 10px;
  }
  .hero-proof span { min-width: 0; }
  .hero-proof strong { font-size: 12px; line-height: 1.15; }
  .project-row-all .project-card-media img { object-position: center 40%; }
  .hero-showcase { height: 128vw; min-height: 470px; max-height: 650px; }
  .showcase-metrics span { padding: 11px 8px; }
  .showcase-metrics small { font-size: 8px; }

  .credibility-grid h2,
  .section-heading h2,
  .technology-grid h2,
  .agency-layout h2,
  .faq-layout h2,
  .contact-layout h2,
  .case-copy h2 {
    font-size: clamp(30px, 9.6vw, 46px);
  }

  .proof-list,
  .tech-steps,
  .agency-points {
    grid-template-columns: 1fr;
  }

  .segment-tab { min-height: 88px; }
  .segment-result { min-height: 390px; }
  .segment-result h3 { font-size: 30px; }

  .project-row { grid-template-columns: 44px minmax(190px, 1fr) minmax(200px, 0.72fr) 26px; gap: 14px; }

  .case-section { min-height: 760px; }
  .case-section::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: '';
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(6, 6, 6, 0.5) 0%,
      rgba(6, 6, 6, 0.8) 46%,
      #060606 70%,
      #060606 100%
    );
  }
  .case-background {
    height: 70%;
    object-position: right top;
  }
  .case-section[data-case-active="0"] .case-background {
    object-position: 80% top;
  }
  .case-section[data-case-active="1"] .case-background {
    object-position: 70% top;
  }
  .case-section[data-case-active="2"] .case-background {
    object-position: 80% top;
  }
  .case-tabs { display: grid; grid-template-columns: 1fr; }
  .case-tabs button { width: 100%; }
  .case-stat { width: 100%; }

  .services-grid { grid-template-columns: 1fr; }
  .service-item { min-height: 300px; }
  .service-item h3 { font-size: 25px; }
  .service-top { margin-bottom: 54px; }
  .hosting-plan h3 { font-size: 38px; }
  .quote-step h2 { font-size: clamp(26px, 8vw, 40px); }
  .content-page-header h1 { font-size: clamp(38px, 11vw, 58px); }
  .hosting-trust { grid-template-columns: 1fr; }
  .performance-panel { min-height: 480px; }
  .agency-image, .agency-image img { min-height: 480px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 240px; }
  .process-step h3 { margin-top: 60px; }

  .site-footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .site-footer .menu-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .footer-meta { display: grid; gap: 22px; }
  .footer-meta span:last-child { text-align: left; }
  .footer-gallery-item { width: 66vw; }
  .footer-word { width: calc(100% - 20px); font-size: 16.7vw; }
  .footer-bottom { align-items: flex-start; gap: 16px; }

  .footer-bottom .footer-social-links { flex-wrap: wrap; }

  .cookie-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    padding: 16px;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .cookie-consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-consent-actions .button { width: 100%; padding-inline: 10px; font-size: 11px; }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
    justify-content: center;
  }

  .quote-overlay { padding: 0; place-items: stretch; }
  .quote-dialog {
    width: 100%;
    min-height: 100svh;
    max-height: none;
    padding: 26px 20px;
    border: 0;
    border-radius: 0;
  }
  .quote-options { grid-template-columns: 1fr; }
  .quote-actions { position: sticky; bottom: 0; padding-bottom: 8px; background: #101010; }
  .quote-actions .button { min-width: 0; padding-inline: 13px; }
}

@media (max-width: 900px) {
  .mobile-carousel {
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0 var(--shell);
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    touch-action: pan-x pan-y;
    user-select: none;
  }

  .mobile-carousel.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
  }

  .mobile-carousel.is-dragging * {
    pointer-events: none;
  }

  .mobile-carousel::-webkit-scrollbar { display: none; }

  .mobile-carousel:focus-visible {
    outline: 2px solid var(--red-bright);
    outline-offset: 6px;
  }

  .segment-tabs,
  .project-list,
  .services-grid,
  .hosting-grid,
  .hosting-trust,
  .tech-steps,
  .process-grid {
    display: grid;
    width: auto;
    max-width: none;
    grid-template-columns: none;
    grid-auto-flow: column;
    overflow-x: auto;
    gap: 14px;
    margin-right: calc(var(--shell) * -1);
    padding-right: var(--shell);
    padding-bottom: 10px;
    border: 0;
  }

  .segment-tabs { grid-auto-columns: min(82vw, 430px); }
  .project-list { grid-auto-columns: min(82vw, 430px); }
  .services-grid { grid-auto-columns: min(78vw, 380px); }
  .hosting-grid { grid-auto-columns: min(84vw, 420px); }
  .hosting-trust { grid-auto-columns: min(64vw, 300px); }
  .tech-steps { grid-auto-columns: min(68vw, 300px); }
  .process-grid { grid-auto-columns: min(76vw, 360px); }

  .segment-tab,
  .project-row,
  .service-item,
  .hosting-grid > div,
  .hosting-trust > span,
  .tech-steps > span,
  .process-step {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .segment-tab {
    min-height: 112px;
    padding: 18px;
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.025);
  }

  .segment-tab:hover,
  .segment-tab.active { padding-left: 18px; }

  .project-list { border-top: 0; }

  .project-row {
    position: relative;
    display: grid;
    grid-template-areas: 'media media' 'copy arrow';
    grid-template-columns: minmax(0, 1fr) 48px;
    grid-template-rows: auto 1fr;
    align-content: start;
    min-height: 0;
    gap: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    background: #101010;
  }

  .project-row:hover { padding: 0; background: #101010; }

  .project-number { position: absolute; z-index: 2; top: 12px; left: 12px; padding: 6px 8px; color: #ffffff; background: rgba(0, 0, 0, 0.62); }

  .project-card-media {
    display: block;
    grid-area: media;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #080808;
  }

  .project-card-media img {
    min-height: 0;
    object-position: top center;
  }

  .project-card-copy {
    display: grid;
    min-height: 104px;
    grid-area: copy;
    align-content: center;
    gap: 7px;
    padding: 18px;
  }

  .project-row h3 {
    margin: 0;
    font-size: clamp(28px, 8vw, 40px);
  }

  .project-row p { font-size: 13px; }
  .project-row > svg { align-self: center; grid-area: arrow; }
  .project-preview { display: none; }

  .project-entry-header {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .project-entry-header h1 { font-size: clamp(46px, 13vw, 70px); }
  .project-entry-body,
  .project-entry-body.has-cover {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 24px;
    padding-bottom: 72px;
  }
  .project-entry-featured { position: static; top: auto; }
  .project-entry-footer { flex-direction: column-reverse; }
  .project-entry-actions { width: 100%; flex-direction: column; }
  .project-entry-actions .button,
  .project-entry-footer > .button { width: 100%; }

  .service-item {
    min-height: 315px;
    border: 1px solid var(--line-light);
    border-radius: 8px;
    background: #ffffff;
  }

  .hosting-grid > div,
  .hosting-border { min-width: 0; height: auto; }
  .hosting-plan { min-height: 420px; }

  .hosting-trust { margin-top: 22px; }
  .hosting-trust span { min-height: 76px; }

  .tech-steps { margin-top: 34px; }
  .tech-steps span {
    min-height: 92px;
    border: 1px solid var(--line-light);
    border-radius: 8px;
    background: #ffffff;
  }

  .process-step {
    min-height: 260px;
    border: 1px solid var(--line-light);
    border-radius: 8px;
    background: #ffffff;
  }

  .process-step h3 { margin-top: 72px; }

  .footer-gallery {
    width: 100%;
    max-width: none;
    overflow-x: auto;
    gap: 12px;
    padding: 0 var(--shell) 12px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
  }

  .footer-gallery::-webkit-scrollbar { display: none; }
  .footer-gallery-track { animation: none; }
  .footer-gallery-group { gap: 12px; }
  .footer-gallery-item {
    flex: 0 0 74vw;
    width: 74vw;
    scroll-snap-align: start;
    border-radius: 8px;
    overflow: hidden;
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  .segment-tabs,
  .project-list { grid-auto-columns: 76vw; }
  .services-grid,
  .process-grid { grid-auto-columns: 72vw; }
  .hosting-grid { grid-auto-columns: 78vw; }
  .hosting-trust { grid-auto-columns: 48vw; }
  .tech-steps { grid-auto-columns: 54vw; }
}

@media (max-width: 900px) {
  .projects-archive { padding-top: 128px; }
  .projects-archive-header { grid-template-columns: 1fr; gap: 22px; padding-bottom: 56px; }
  .projects-archive-header .section-label { grid-column: auto; }
  .projects-archive-header h1 { font-size: clamp(48px, 13vw, 72px); }
  .projects-archive-grid { grid-template-columns: 1fr; gap: 16px; padding-bottom: 78px; }
  .archive-project-card { grid-template-columns: 1fr; }
  .archive-project-media { aspect-ratio: 4 / 5; }
  .archive-project-copy { padding: 22px 18px 20px; }
  .projects-archive-cta { align-items: flex-start; flex-direction: column; padding-bottom: 100px; }
  .projects-archive-cta .button { width: 100%; }
  .client-logo { width: 170px; height: 92px; flex-basis: 170px; padding-inline: 22px; }
  .client-logo img { width: 126px; max-height: 50px; }
  .studio-layout { grid-template-columns: 1fr; gap: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-copy h1 span {
    color: #ff4058;
    background: none;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .clients-marquee-track { animation: none; }
}
