:root {
  --ink: #050506;
  --ink-2: #0d0e0c;
  --panel: #151713;
  --line: rgba(255, 255, 255, 0.16);
  --text: #f4f4ed;
  --muted: #b9bbb0;
  --acid: #ceff1a;
  --aqua: #00e0c0;
  --ember: #ff6040;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(206, 255, 26, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
}

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

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

#signal-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.52;
  pointer-events: none;
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 5, 6, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateX(-50%) translateY(-18px);
  animation: headerEnter 900ms cubic-bezier(0.2, 0.9, 0.2, 1) 120ms forwards;
}

.brand,
.nav,
.nav-cta,
.button,
.hero-strip,
.metric-row div,
.process-grid article,
.lead-form,
.team-card,
.service-card,
.floating-panel {
  border-radius: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  opacity: 0;
  animation: brandEnter 760ms ease 420ms forwards;
}

.brand-logo {
  display: block;
  width: 42px;
  height: 38px;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
  animation: emblemFloat 5.5s ease-in-out 1.1s infinite;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.nav a,
.nav-cta {
  padding: 10px 12px;
}

.nav a:hover,
.nav-cta:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  color: var(--ink);
  background: var(--acid);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  padding: 128px max(22px, calc((100vw - 1180px) / 2)) 34px;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.12);
  opacity: 0;
  transform: scale(1.04);
  animation: slowZoom 16s ease-in-out infinite alternate;
  transition: opacity 900ms ease;
}

.hero-video.is-active {
  opacity: 1;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.94) 0%, rgba(5, 5, 6, 0.58) 47%, rgba(5, 5, 6, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 5, 6, 0.98) 0%, rgba(5, 5, 6, 0.1) 55%, rgba(5, 5, 6, 0.72) 100%);
}

.hero-content {
  width: min(820px, 100%);
  padding-bottom: 74px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--acid);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(48px, 9vw, 112px);
  line-height: 0.92;
}

.hero-copy {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(244, 244, 237, 0.88);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--line);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  border-color: transparent;
  background: var(--acid);
  color: var(--ink);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.hero-strip span {
  min-height: 66px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: rgba(5, 5, 6, 0.7);
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.section {
  padding: 104px max(22px, calc((100vw - 1180px) / 2));
}

.section-head {
  width: min(820px, 100%);
  margin-bottom: 34px;
}

.instagram-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 800;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 68px);
  line-height: 0.98;
}

h3 {
  margin: 8px 0 0;
  font-size: 24px;
  line-height: 1.1;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 22px;
}

.statement {
  min-height: 280px;
  display: flex;
  align-items: end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(206, 255, 26, 0.18), rgba(255, 96, 64, 0.08)), var(--panel);
}

.statement p {
  margin: 0;
  color: rgba(244, 244, 237, 0.88);
  font-size: 22px;
  line-height: 1.45;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-row div {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.metric-row strong {
  color: var(--aqua);
  font-size: 52px;
  line-height: 1;
}

.metric-row span {
  color: var(--muted);
  line-height: 1.4;
}

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

.service-card {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  isolation: isolate;
}

.service-card.large {
  grid-column: span 2;
}

.service-card img,
.service-card video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.12);
  transition: transform 650ms ease;
}

.service-card video {
  background: #050506;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(5, 5, 6, 0.94), rgba(5, 5, 6, 0.52) 48%, rgba(5, 5, 6, 0.18));
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card:hover video {
  transform: scale(1.04);
}

.service-card img.service-image-clone {
  object-position: 50% 20%;
}

.service-card div {
  width: 100%;
  padding: 22px;
}

.service-card span,
.process-grid span {
  color: var(--acid);
  font-weight: 800;
}

.service-card p,
.showcase-copy p,
.process-grid p,
.team-card p,
.contact-copy p,
.footer {
  color: var(--muted);
  line-height: 1.55;
}

.showcase {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 30px;
  align-items: center;
}

.proof {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    var(--ink-2);
}

.photo-case {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(206, 255, 26, 0.08), transparent 55%),
    rgba(255, 255, 255, 0.025);
}

.photo-case-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.photo-carousel {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.photo-stage {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 10px;
  align-items: stretch;
}

.photo-panel {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050506;
}

.photo-panel span {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(5, 5, 6, 0.76);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
}

.photo-panel.featured span {
  background: var(--acid);
  color: var(--ink);
}

.photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  transition: opacity 260ms ease, transform 420ms ease;
}

.photo-panel:first-child img {
  filter: saturate(0.9) contrast(0.96);
}

.photo-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.photo-controls button {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.photo-controls span {
  color: var(--muted);
  font-weight: 800;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.proof-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.proof-card img,
.proof-card video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.08);
  background: #050506;
}

.proof-card div {
  padding: 20px;
}

.proof-card span {
  color: var(--acid);
  font-weight: 800;
}

.proof-card p {
  color: var(--muted);
  line-height: 1.55;
}

.real-estate-case {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(300px, 1.22fr);
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(206, 255, 26, 0.08), transparent 56%),
    rgba(255, 255, 255, 0.025);
}

.case-video {
  width: min(420px, 100%);
  justify-self: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.case-video video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 6px;
  background: #050506;
  object-fit: cover;
}

.case-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.case-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.case-points span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 800;
}

.digital-products {
  background:
    linear-gradient(90deg, rgba(0, 224, 192, 0.08), transparent 54%),
    var(--ink);
}

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

.website-case,
.app-case {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.website-case > div:last-child,
.app-case > div:last-child {
  padding: 0 6px 8px;
}

.website-case span,
.app-case span {
  color: var(--acid);
  font-weight: 800;
}

.website-case p,
.app-case p {
  color: var(--muted);
  line-height: 1.55;
}

.website-case a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 800;
}

.browser-frame,
.app-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #070807;
}

.browser-bar {
  display: flex;
  gap: 6px;
  padding: 10px;
  border-bottom: 1px solid var(--line);
}

.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--muted);
}

.browser-frame img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center top;
}

.app-window {
  min-height: 330px;
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
}

.app-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px 12px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.app-sidebar strong {
  color: var(--text);
  line-height: 1.15;
}

.app-sidebar span {
  color: var(--muted);
  font-size: 0.82rem;
}

.app-panel {
  padding: 16px;
}

.app-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.app-topline strong {
  padding: 7px 9px;
  border-radius: 8px;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.72rem;
}

.app-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.app-metrics div,
.app-list p {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.app-metrics div {
  padding: 10px;
}

.app-metrics strong {
  display: block;
  color: var(--aqua);
  font-size: 1.4rem;
}

.app-metrics span {
  color: var(--muted);
  font-size: 0.75rem;
}

.app-list {
  display: grid;
  gap: 8px;
}

.app-list p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 10px;
}

.app-list strong {
  color: var(--text);
  font-size: 0.92rem;
}

.showcase-copy p {
  max-width: 590px;
  font-size: 18px;
}

.visual-stack {
  position: relative;
  min-height: 560px;
}

.stack-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.floating-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(360px, calc(100% - 44px));
  padding: 20px;
  border: 1px solid rgba(206, 255, 26, 0.46);
  background: rgba(5, 5, 6, 0.78);
  backdrop-filter: blur(16px);
}

.floating-panel span {
  color: var(--aqua);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  line-height: 1.15;
}

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

.process-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
}

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

.team-card {
  padding: 12px 12px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  filter: grayscale(0.2) contrast(1.08);
}

.team-card img.team-photo-erick {
  object-position: 74% 58%;
}

.team-card img.team-photo-regis {
  object-position: 50% 18%;
}

.team-card h3,
.team-card p {
  padding-inline: 6px;
}

.team-card strong {
  color: var(--acid);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(5, 5, 6, 0.86);
  color: var(--text);
  font: inherit;
  padding: 14px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--acid);
}

textarea {
  resize: vertical;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(22px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes slowZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.09);
  }
}

@keyframes headerEnter {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes brandEnter {
  from {
    opacity: 0;
    transform: translateX(-8px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes emblemFloat {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(110, 150, 255, 0));
    transform: translateY(0);
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(110, 150, 255, 0.42));
    transform: translateY(-1px);
  }
}

@media (max-width: 1020px) {
  .topbar {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .intro-grid,
  .showcase,
  .real-estate-case,
  .photo-case,
  .digital-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-grid,
  .team-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-strip,
  .metric-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .topbar {
    top: 10px;
    width: calc(100% - 20px);
    gap: 10px;
    padding: 8px 9px;
  }

  .brand {
    gap: 8px;
    font-size: 14px;
  }

  .brand-logo {
    width: 34px;
    height: 31px;
  }

  .nav-cta {
    font-size: 13px;
    padding: 9px 10px;
    text-align: center;
  }

  .hero {
    min-height: 94vh;
    padding-top: 110px;
  }

  .hero-content {
    padding-bottom: 34px;
  }

  h1 {
    max-width: 11ch;
    font-size: 46px;
    line-height: 0.96;
  }

  .hero-copy {
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .button {
    flex: 1 1 100%;
    width: 100%;
  }

  .section {
    padding: 72px 18px;
  }

  h2 {
    font-size: 36px;
    line-height: 1.02;
  }

  h3 {
    font-size: 21px;
  }

  .service-grid,
  .process-grid,
  .team-grid,
  .proof-grid,
  .hero-strip,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .service-card.large {
    grid-column: auto;
  }

  .service-card {
    min-height: 330px;
  }

  .statement,
  .metric-row div,
  .process-grid article {
    min-height: auto;
    padding: 20px;
  }

  .statement p {
    font-size: 19px;
  }

  .metric-row strong {
    font-size: 42px;
  }

  .stack-main,
  .visual-stack {
    height: auto;
    min-height: 0;
  }

  .case-video {
    width: min(360px, 100%);
  }

  .photo-stage {
    grid-template-columns: 1fr 1fr;
  }

  .app-window {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stack-main {
    aspect-ratio: 4 / 5;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .topbar {
    grid-template-columns: 1fr;
  }

  .brand,
  .nav-cta {
    justify-content: center;
    width: 100%;
  }

  .hero {
    min-height: 100svh;
    padding: 132px 16px 24px;
  }

  h1 {
    max-width: 10ch;
    font-size: 38px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-copy,
  .showcase-copy p {
    font-size: 16px;
  }

  .hero-strip span {
    min-height: 54px;
    padding: 11px;
    font-size: 14px;
  }

  .service-card {
    min-height: 300px;
  }

  .case-copy p {
    font-size: 16px;
  }

  .photo-case-copy p {
    font-size: 16px;
  }

  .photo-stage {
    grid-template-columns: 1fr;
  }

  .photo-panel img {
    min-height: 340px;
  }

  .app-metrics {
    grid-template-columns: 1fr;
  }

  .case-points span {
    width: 100%;
    text-align: center;
  }

  .service-card div,
  .team-card,
  .lead-form {
    padding: 16px;
  }

  .floating-panel {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .stack-main {
    aspect-ratio: 1 / 1.18;
  }
}
