:root {
  --page: #090b0f;
  --shell: #10141a;
  --ink: #f2f4f7;
  --muted: #a4acba;
  --line: rgba(232, 210, 153, 0.18);
  --blue: #5d68f0;
  --button: #171b22;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #050608;
}

@keyframes floatArtwork {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -12px, 0) rotate(0.4deg);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.48;
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    opacity: 0.78;
    transform: translate3d(-10px, 8px, 0) scale(1.04);
  }
}

@keyframes heroEnter {
  from {
    transform: translateY(22px);
  }

  to {
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

.stage {
  width: min(1880px, calc(100% - 32px));
  margin: 24px auto;
  padding: clamp(48px, 5.8vw, 124px);
  border-radius: 12px;
  background:
    radial-gradient(circle at 78% 0%, rgba(88, 122, 255, 0.12), transparent 30%),
    radial-gradient(circle at 8% 28%, rgba(232, 210, 153, 0.09), transparent 32%),
    var(--page);
}

.hero-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border-radius: 42px;
  color: #fff;
  background: #080a0d;
  box-shadow: var(--shadow);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0.46) 0%, transparent 22%, transparent 66%, rgba(7, 8, 10, 0.64) 100%),
    radial-gradient(circle at 43% 50%, rgba(64, 126, 255, 0.24), transparent 23%);
  mix-blend-mode: normal;
  pointer-events: none;
}

.site-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 18px clamp(30px, 6vw, 108px) 14px;
}

.brand,
.nav,
.header-tools,
.language-switcher {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: 24px;
  font-weight: 650;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(232, 210, 153, 0.34);
  border-radius: 8px;
  background: #050608;
  box-shadow: 0 8px 22px rgba(255, 52, 38, 0.22), 0 0 28px rgba(232, 210, 153, 0.1);
}

.brand-mark img {
  display: block;
  width: 108%;
  height: 108%;
  object-fit: cover;
  transform: translateY(0);
}

.nav {
  gap: clamp(16px, 1.5vw, 28px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 600;
}

.nav a {
  white-space: nowrap;
}

.nav a:hover {
  color: #e8d299;
}

.header-tools {
  gap: 14px;
}

.language-switcher {
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(232, 210, 153, 0.38);
  border-radius: 999px;
  background: rgba(5, 7, 9, 0.34);
  backdrop-filter: blur(14px);
}

.lang-button {
  min-width: 38px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: #69707c;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.lang-button.active {
  color: #fff;
  background: var(--button);
}

.header-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid rgba(232, 210, 153, 0.78);
  border-radius: 5px;
  color: #f4dfaa;
  background: rgba(7, 8, 10, 0.42);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
  font-weight: 750;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(232, 210, 153, 0.44);
  border-radius: 8px;
  color: #f4dfaa;
  background: rgba(7, 8, 10, 0.42);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 0;
  padding: clamp(24px, 4vw, 48px) clamp(30px, 6vw, 108px) clamp(28px, 4vw, 48px);
}

.hero-copy {
  max-width: 560px;
  margin-left: clamp(-38px, -2vw, -18px);
  padding: 0;
  animation: heroEnter 800ms ease 120ms both;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.78), 0 1px 2px rgba(0, 0, 0, 0.84);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 22px;
  padding: 10px 16px;
  border: 1px solid rgba(232, 210, 153, 0.52);
  border-radius: 999px;
  color: #f4dfaa;
  background: rgba(7, 8, 10, 0.34);
  backdrop-filter: blur(14px);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.pill > span:first-child {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #e8d299;
  box-shadow: 0 0 22px rgba(232, 210, 153, 0.52);
}

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

h1 {
  margin-bottom: 18px;
  color: #fff;
  max-width: 15.5ch;
  font-size: clamp(38px, 3.35vw, 52px);
  font-weight: 560;
  line-height: 1.05;
  letter-spacing: 0;
}

html[lang="en"] h1 {
  max-width: 15ch;
  font-size: clamp(37px, 3.25vw, 50px);
}

html[lang="es"] h1 {
  max-width: 15.5ch;
  font-size: clamp(37px, 3.25vw, 50px);
}

.pill + h1 {
  margin-top: 6px;
}

.lead {
  max-width: 520px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.35;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border-radius: 7px;
  font-size: 17px;
  font-weight: 760;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.header-button:hover {
  transform: translateY(-3px);
}

.button.primary {
  color: #090a0c;
  background: #f0d997;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: clamp(22px, 3.4vw, 40px);
}

.trust-row div + div {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.caption {
  display: block;
  margin-bottom: 12px;
  color: #f0d997;
  font-size: clamp(15px, 1vw, 19px);
  font-weight: 760;
  line-height: 1.08;
}

.trust-row strong {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.22;
}

.hero-photo-panel {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #111820;
  box-shadow: none;
  isolation: isolate;
}

.hero-photo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 48% 45%, rgba(58, 118, 255, 0.26), transparent 24%),
    linear-gradient(0deg, rgba(7, 8, 10, 0.3), transparent 34%);
  mix-blend-mode: screen;
}

.hero-photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(100deg, transparent 0 42%, rgba(255, 255, 255, 0.13) 43% 44%, transparent 45%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 22px);
  mix-blend-mode: screen;
  opacity: 0.42;
}

.hero-photo-panel picture,
.hero-photo-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.hero-photo-panel picture {
  transform: none;
  transform-origin: center;
}

.hero-photo-panel img {
  object-fit: cover;
  object-position: center;
}

.visual-wall {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  grid-auto-rows: 210px;
  gap: 18px;
  align-self: stretch;
  max-height: 934px;
  padding: 32px 0 0;
  overflow: hidden;
  perspective: 1000px;
}

.art-card,
.portfolio-art {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #20242a;
  isolation: isolate;
}

.art-card {
  min-height: 210px;
  box-shadow: 0 12px 36px rgba(26, 30, 38, 0.12);
  transform: translateZ(0);
  transition: transform 240ms ease, box-shadow 240ms ease;
  animation: floatArtwork 6.8s ease-in-out infinite;
}

.art-card:nth-child(2) {
  animation-delay: -1.4s;
}

.art-card:nth-child(3) {
  animation-delay: -2.6s;
}

.art-card:nth-child(4) {
  animation-delay: -3.8s;
}

.art-card:nth-child(5) {
  animation-delay: -5s;
}

.art-card:hover,
.portfolio-grid article:hover {
  box-shadow: 0 22px 50px rgba(26, 30, 38, 0.18);
}

.art-card span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.art-card::before,
.portfolio-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 24%, rgba(255,255,255,0.88), transparent 11%),
    radial-gradient(circle at 42% 22%, rgba(30,33,42,0.9), transparent 13%),
    radial-gradient(circle at 62% 34%, rgba(255,171,92,0.78), transparent 14%),
    radial-gradient(circle at 48% 55%, rgba(33,45,54,0.95), transparent 27%),
    linear-gradient(135deg, #10151c, #526370 56%, #d8c5a0);
}

.art-card::after,
.portfolio-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(100deg, transparent 0 42%, rgba(255,255,255,0.16) 43% 44%, transparent 45%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 17px);
  mix-blend-mode: screen;
}

.tall {
  grid-row: span 2;
}

.wide {
  grid-row: span 2;
}

.art-b::before {
  background:
    radial-gradient(circle at 58% 32%, rgba(255,255,255,0.8), transparent 8%),
    radial-gradient(circle at 54% 48%, rgba(208,93,70,0.9), transparent 18%),
    radial-gradient(circle at 68% 26%, rgba(180,231,214,0.75), transparent 18%),
    linear-gradient(135deg, #edf0e7, #9aa99d 42%, #6c4b3e 100%);
}

.art-c::before {
  background:
    radial-gradient(circle at 50% 48%, rgba(255,104,55,0.92), transparent 8%),
    radial-gradient(circle at 44% 54%, rgba(17,18,18,0.95), transparent 25%),
    radial-gradient(circle at 70% 22%, rgba(248,185,111,0.9), transparent 24%),
    linear-gradient(160deg, #2b3332, #7a4c32 55%, #f6c071);
}

.art-d::before {
  background:
    radial-gradient(circle at 42% 28%, rgba(255,139,68,0.9), transparent 7%),
    radial-gradient(circle at 58% 30%, rgba(255,139,68,0.9), transparent 7%),
    radial-gradient(circle at 50% 48%, rgba(40,45,48,0.96), transparent 28%),
    linear-gradient(135deg, #14191d, #47423b 52%, #d39a50);
}

.art-e::before {
  background:
    radial-gradient(circle at 52% 36%, rgba(58,75,82,0.95), transparent 18%),
    radial-gradient(circle at 58% 18%, rgba(255,197,91,0.82), transparent 16%),
    linear-gradient(160deg, #26313a, #627179 55%, #ffb24a);
}

.content-section,
.portfolio-section,
.websites-section,
.services-section,
.workflow-section,
.audience-section,
.contact-section {
  padding: clamp(124px, 10vw, 190px) clamp(16px, 4vw, 58px) 0;
  color: var(--ink);
}

.section-title {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(56px, 7vw, 112px);
  align-items: start;
  padding-top: clamp(64px, 7vw, 108px);
  border-top: 1px solid var(--line);
}

.section-title.compact {
  display: block;
}

.kicker {
  margin: 0;
  color: #f0d997;
  font-size: clamp(17px, 1.35vw, 26px);
  font-weight: 800;
  line-height: 1.06;
  text-transform: uppercase;
}

.section-title h2,
.contact-section h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5.4vw, 82px);
  font-weight: 540;
  line-height: 1.02;
  letter-spacing: 0;
}

.text-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(34px, 5vw, 86px);
  margin-top: 54px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.48;
}

.portfolio-title {
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 0.9fr);
}

.portfolio-intro {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.32;
}

.portfolio-intro p {
  margin-bottom: 28px;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.portfolio-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(232, 210, 153, 0.32);
  border-radius: 999px;
  color: #f0d997;
  background: rgba(232, 210, 153, 0.06);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(44px, 5vw, 86px) clamp(34px, 4vw, 70px);
  align-items: stretch;
  margin-top: clamp(62px, 7vw, 110px);
}

.portfolio-grid article {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(16, 20, 26, 0.82);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.portfolio-video-card-main {
  grid-column: 1 / -1;
}

.portfolio-video-card-main .portfolio-video-frame {
  height: clamp(470px, 43vw, 780px);
}

.portfolio-video-card-main h3 {
  max-width: 920px;
  font-size: clamp(34px, 3vw, 56px);
}

.portfolio-video-card-main p {
  max-width: 920px;
  font-size: clamp(20px, 1.45vw, 27px);
}

.portfolio-note,
.portfolio-break {
  min-height: 420px;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(232, 210, 153, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(232, 210, 153, 0.08), rgba(83, 103, 255, 0.08)),
    rgba(10, 13, 18, 0.72);
}

.portfolio-note span,
.portfolio-break span {
  display: block;
  margin-bottom: 28px;
  color: #f0d997;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 800;
  line-height: 1.06;
  text-transform: uppercase;
}

.portfolio-note p,
.portfolio-break p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.16;
}

.portfolio-video-frame {
  position: relative;
  height: clamp(300px, 24vw, 430px);
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 255, 255, 0.9), transparent 12%),
    radial-gradient(circle at 72% 42%, rgba(255, 171, 92, 0.62), transparent 20%),
    radial-gradient(circle at 40% 64%, rgba(75, 93, 105, 0.9), transparent 28%),
    linear-gradient(135deg, #10151c, #2f4653 52%, #d8c5a0);
}

.portfolio-video-frame-wide {
  aspect-ratio: auto;
}

.portfolio-video-frame-contain {
  min-height: 0;
  background:
    radial-gradient(circle at 50% 32%, rgba(83, 103, 255, 0.2), transparent 34%),
    #06080b;
}

.portfolio-video-frame-cover {
  min-height: 0;
}

.portfolio-image-frame {
  position: relative;
  height: clamp(300px, 24vw, 430px);
  min-height: 0;
  overflow: hidden;
  background: #0b0f14;
}

.portfolio-youtube-card .portfolio-image-frame img {
  object-position: center 56%;
}

.portfolio-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 48%, rgba(5, 6, 8, 0.42) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 20px);
  mix-blend-mode: screen;
}

.portfolio-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 360ms ease;
}

.portfolio-image-card:hover .portfolio-image-frame img {
  transform: scale(1.04);
}

.portfolio-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(100deg, transparent 0 42%, rgba(255, 255, 255, 0.18) 43% 44%, transparent 45%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
  mix-blend-mode: screen;
}

.portfolio-video-frame video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 220ms ease;
}

.portfolio-video-frame-contain video {
  object-fit: contain;
}

.portfolio-video-frame.is-ready video {
  opacity: 1;
}

.video-badge {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(16, 21, 28, 0.42);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portfolio-art {
  min-height: 330px;
  border-radius: 0;
}

.portfolio-grid h3,
.portfolio-grid p {
  padding: 0 clamp(24px, 2.7vw, 42px);
}

.portfolio-grid h3 {
  margin: 28px 0 10px;
  font-size: clamp(25px, 2vw, 34px);
}

.portfolio-grid p {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.websites-title {
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 0.72fr);
}

.websites-title h2 {
  max-width: 980px;
}

.websites-lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.32;
}

.websites-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2.7vw, 38px);
  margin-top: clamp(54px, 6vw, 88px);
}

.website-card {
  min-height: 420px;
  padding: clamp(20px, 2.4vw, 34px);
  border: 1px solid rgba(232, 210, 153, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(232, 210, 153, 0.11), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(83, 103, 255, 0.14), transparent 32%),
    linear-gradient(145deg, rgba(12, 15, 20, 0.92), rgba(6, 8, 12, 0.84));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.website-card:hover {
  border-color: rgba(232, 210, 153, 0.34);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.26), 0 0 30px rgba(232, 210, 153, 0.08);
  transform: translateY(-6px);
}

.website-mockup {
  position: relative;
  min-height: 168px;
  margin-bottom: clamp(24px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(232, 210, 153, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 36%),
    radial-gradient(circle at 72% 30%, rgba(83, 103, 255, 0.28), transparent 28%),
    #080b10;
}

.website-mockup img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transition: transform 360ms ease;
}

.website-card:hover .website-mockup img {
  transform: scale(1.035);
}

.website-card h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 650;
  line-height: 1.08;
}

.website-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.42;
}

.websites-build {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) 1fr;
  gap: clamp(28px, 4vw, 62px);
  align-items: start;
  margin-top: clamp(36px, 5vw, 74px);
  padding: clamp(24px, 3.4vw, 44px);
  border: 1px solid rgba(232, 210, 153, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(232, 210, 153, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(232, 210, 153, 0.06), rgba(83, 103, 255, 0.06)),
    rgba(10, 13, 18, 0.76);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.websites-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.websites-chips span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(232, 210, 153, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 18% 0%, rgba(232, 210, 153, 0.12), transparent 36%),
    rgba(12, 15, 20, 0.78);
  font-size: 15px;
  font-weight: 700;
}

.websites-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(34px, 4vw, 58px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 42px);
  margin-top: clamp(54px, 6vw, 88px);
}

.service-card {
  min-height: 260px;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(232, 210, 153, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(232, 210, 153, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(232, 210, 153, 0.06), rgba(83, 103, 255, 0.06)),
    rgba(12, 15, 20, 0.78);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  border-color: rgba(232, 210, 153, 0.32);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  transform: translateY(-6px);
}

.service-card span {
  display: block;
  margin-bottom: clamp(34px, 4vw, 58px);
  color: #f0d997;
  font-size: 14px;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 620;
  line-height: 1.08;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.42;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 42px);
  margin-top: clamp(54px, 6vw, 88px);
}

.workflow-card {
  min-height: 300px;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(232, 210, 153, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 85% 0%, rgba(83, 103, 255, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(232, 210, 153, 0.08), rgba(10, 13, 18, 0.76)),
    rgba(12, 15, 20, 0.8);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.workflow-card:hover {
  border-color: rgba(232, 210, 153, 0.32);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  transform: translateY(-6px);
}

.workflow-card-wide {
  grid-column: span 2;
}

.workflow-card span {
  display: block;
  margin-bottom: clamp(34px, 4vw, 58px);
  color: #f0d997;
  font-size: 14px;
  font-weight: 800;
}

.workflow-card h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 620;
  line-height: 1.08;
}

.workflow-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.42;
}

.audience-lead {
  max-width: 780px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.32;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 1.8vw, 24px);
  margin-top: clamp(54px, 6vw, 88px);
}

.audience-list span {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  padding: 0 clamp(18px, 2vw, 30px);
  border: 1px solid rgba(232, 210, 153, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 20% 0%, rgba(232, 210, 153, 0.12), transparent 38%),
    rgba(12, 15, 20, 0.78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 650;
}

.contact-section {
  padding-bottom: 64px;
}

.contact-section .kicker {
  margin-bottom: 20px;
}

.contact-section h2 {
  max-width: 980px;
  margin-bottom: 0;
}

.contact-lead {
  max-width: 720px;
  margin: 28px 0 30px;
  color: var(--muted);
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.32;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-details strong {
  color: #fff;
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 720;
  line-height: 1.1;
}

.contact-details span {
  color: #f0d997;
  font-size: clamp(17px, 1.2vw, 20px);
  font-weight: 700;
}

.email-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.email-contact {
  margin: 0 0 24px;
}

.email-contact a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}

.email-contact a:hover {
  color: #f0d997;
}

.copy-email-button {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(232, 210, 153, 0.32);
  border-radius: 999px;
  color: #f0d997;
  background: rgba(12, 15, 20, 0.72);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.copy-email-button:hover {
  border-color: rgba(232, 210, 153, 0.58);
  color: #fff;
  transform: translateY(-1px);
}

.copy-email-status {
  min-height: 18px;
  color: #f0d997;
  font-size: 12px;
  font-weight: 750;
}

.contact-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-icon {
  display: inline-grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(232, 210, 153, 0.28);
  border-radius: 999px;
  color: #f0d997;
  background:
    radial-gradient(circle at 28% 18%, rgba(232, 210, 153, 0.14), transparent 42%),
    rgba(12, 15, 20, 0.78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease;
}

.contact-icon:hover {
  border-color: rgba(232, 210, 153, 0.58);
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24), 0 0 26px rgba(232, 210, 153, 0.18);
  transform: translateY(-3px) scale(1.04);
}

.contact-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-form-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  max-width: 1180px;
  margin-top: clamp(42px, 5vw, 76px);
  padding: clamp(24px, 3.5vw, 44px);
  border: 1px solid rgba(232, 210, 153, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(232, 210, 153, 0.08), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(83, 103, 255, 0.1), transparent 30%),
    rgba(10, 13, 18, 0.76);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
}

.contact-form-copy .kicker {
  margin-bottom: 14px;
}

.contact-form-copy p:not(.kicker) {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.34;
}

.contact-form-copy .form-note {
  margin-top: 16px;
  color: #f0d997;
  font-size: 14px;
  font-weight: 800;
}

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

.contact-form label {
  display: grid;
  gap: 9px;
  color: #f0d997;
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(232, 210, 153, 0.18);
  border-radius: 10px;
  color: #fff;
  background: rgba(5, 7, 9, 0.54);
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 52px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 150px;
  max-height: 300px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(232, 210, 153, 0.56);
  background: rgba(7, 9, 12, 0.78);
  box-shadow: 0 0 0 3px rgba(232, 210, 153, 0.08);
}

.message-field,
.form-meta,
.form-submit {
  grid-column: 1 / -1;
}

.form-meta {
  display: flex;
  min-height: 22px;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 700;
}

.form-status {
  text-align: right;
}

.form-status.is-success {
  color: #f0d997;
}

.form-status.is-error {
  color: #ffb8a8;
}

.form-submit {
  min-height: 54px;
  border: 1px solid rgba(232, 210, 153, 0.74);
  border-radius: 6px;
  color: #0b0c0f;
  background: linear-gradient(135deg, #f0d997, #d7b85f);
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.form-submit:hover {
  box-shadow: 0 16px 34px rgba(232, 210, 153, 0.18);
  transform: translateY(-2px);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.site-footer {
  display: block;
  padding: 36px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.back-to-top {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  place-items: center;
  border: 1px solid rgba(232, 210, 153, 0.28);
  border-radius: 999px;
  color: #f0d997;
  background:
    radial-gradient(circle at 28% 18%, rgba(232, 210, 153, 0.14), transparent 42%),
    rgba(12, 15, 20, 0.78);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease;
}

.back-to-top:hover {
  border-color: rgba(232, 210, 153, 0.58);
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24), 0 0 22px rgba(232, 210, 153, 0.16);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.footer-copy {
  display: block;
  width: 100%;
  padding-top: 8px;
  border-top: 1px solid rgba(232, 210, 153, 0.12);
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .stage {
    width: min(100% - 28px, 1120px);
    padding: 28px;
  }

  .hero-layout {
    min-height: 0;
    padding: clamp(22px, 4vw, 42px) clamp(24px, 5vw, 64px) clamp(26px, 4vw, 44px);
  }

  .hero-copy {
    max-width: 560px;
    margin-left: 0;
  }

  .trust-row {
    margin-top: 38px;
  }

  .visual-wall {
    grid-template-columns: repeat(2, 1fr);
    max-height: none;
    padding-top: 0;
  }

  .portfolio-grid,
  .websites-grid,
  .services-grid,
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-card-wide {
    grid-column: span 2;
  }

  .portfolio-video-card,
  .portfolio-image-card,
  .portfolio-break,
  .portfolio-note {
    grid-column: span 1;
  }

  .portfolio-video-card-main {
    grid-column: 1 / -1;
  }

  .portfolio-note,
  .portfolio-break {
    min-height: 360px;
  }

  .websites-title {
    grid-template-columns: 1fr;
  }

  .websites-build {
    grid-template-columns: 1fr;
  }

  .hero-photo-panel {
    min-height: 100%;
  }

  .hero-photo-panel::after,
  .portfolio-image-frame::after,
  .portfolio-video-frame::after,
  .art-card::after,
  .portfolio-art::after {
    display: none;
  }

  .hero-shell::before {
    background:
      linear-gradient(180deg, rgba(7, 8, 10, 0.5) 0%, transparent 24%, transparent 62%, rgba(7, 8, 10, 0.68) 100%),
      radial-gradient(circle at 44% 46%, rgba(64, 126, 255, 0.22), transparent 24%);
  }
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  .stage {
    width: 100%;
    margin: 0;
    padding: 12px;
    border-radius: 0;
  }

  .hero-shell {
    aspect-ratio: auto;
    min-height: auto;
    border-radius: 28px;
  }

  .site-header {
    flex-wrap: wrap;
    padding: 20px;
    gap: 14px;
  }

  .brand {
    font-size: 19px;
  }

  .language-switcher {
    gap: 2px;
    padding: 3px;
  }

  .lang-button {
    min-width: 32px;
    height: 30px;
    font-size: 12px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .nav,
  .header-button {
    display: none;
  }

  .nav {
    flex-basis: 100%;
    order: 3;
    padding: 12px;
    border: 1px solid rgba(232, 210, 153, 0.22);
    border-radius: 14px;
    background: rgba(5, 7, 9, 0.74);
    backdrop-filter: blur(18px);
  }

  .nav.is-open {
    display: grid;
    gap: 4px;
  }

  .nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 8px;
  }

  .nav a:hover {
    background: rgba(232, 210, 153, 0.08);
  }

  .header-tools {
    margin-left: auto;
    gap: 8px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .hero-layout {
    padding: 18px 20px 28px;
  }

  .hero-copy {
    max-width: 100%;
    margin-left: 0;
    padding: 0;
  }

  .hero-photo-panel {
    min-height: 100%;
  }

  .hero-shell::before {
    background:
      linear-gradient(180deg, rgba(7, 8, 10, 0.5) 0%, transparent 24%, transparent 58%, rgba(7, 8, 10, 0.74) 100%),
      radial-gradient(circle at 42% 42%, rgba(64, 126, 255, 0.2), transparent 25%);
  }

  .pill {
    font-size: 14px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 0.98;
  }

  .lead {
    font-size: 17px;
    line-height: 1.42;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .trust-row,
  .section-title,
  .text-grid,
  .portfolio-grid,
  .websites-grid,
  .services-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .workflow-card-wide {
    grid-column: auto;
  }

  .portfolio-video-card {
    grid-column: auto;
  }

  .portfolio-video-card-main {
    grid-column: auto;
  }

  .portfolio-image-card,
  .portfolio-break,
  .portfolio-note {
    grid-column: auto;
  }

  .portfolio-note,
  .portfolio-break {
    min-height: auto;
  }

  .portfolio-video-frame {
    height: min(360px, 96vw);
  }

  .portfolio-video-card-main .portfolio-video-frame {
    height: min(360px, 96vw);
  }

  .portfolio-video-frame-contain {
    height: min(430px, 118vw);
  }

  .portfolio-image-frame {
    height: min(420px, 112vw);
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .portfolio-grid article,
  .portfolio-video-frame,
  .portfolio-image-frame {
    visibility: visible;
  }

  .portfolio-video-frame video {
    opacity: 1;
  }

  .service-card,
  .workflow-card {
    min-height: auto;
    padding: 24px;
  }

  .trust-row {
    display: grid;
    gap: 16px;
  }

  .trust-row div + div {
    padding-left: 0;
    border-left: 0;
  }

  .visual-wall {
    grid-auto-rows: 170px;
    gap: 12px;
  }

  .content-section,
  .portfolio-section,
  .websites-section,
  .services-section,
  .workflow-section,
  .audience-section,
  .contact-section {
    padding-top: 64px;
  }

  .section-title {
    gap: 20px;
    padding-top: 42px;
  }

  .portfolio-intro {
    font-size: 19px;
  }

  .websites-lead {
    font-size: 19px;
  }

  .website-card {
    min-height: auto;
    padding: 22px;
  }

  .website-mockup {
    min-height: 150px;
  }

  .websites-build {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .websites-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-icons {
    gap: 12px;
  }

  .contact-icon {
    width: 56px;
    height: 56px;
  }

  .contact-form-panel,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    margin-top: 34px;
    padding: 22px;
    border-radius: 18px;
  }

  .contact-form input,
  .contact-form select {
    height: 50px;
  }

  .contact-form textarea {
    min-height: 150px;
  }

  .form-meta {
    display: grid;
    gap: 8px;
  }

  .form-status {
    text-align: left;
  }

  .form-submit {
    min-height: 56px;
  }

  .site-footer {
    padding-top: 28px;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }

  .footer-copy {
    text-align: left;
    white-space: normal;
  }

  .back-to-top {
    margin-left: 0;
    margin-right: 0;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 520px) {
  .brand > span:last-child {
    display: none;
  }

  .pill {
    white-space: normal;
    line-height: 1.15;
  }

  h1 {
    font-size: 36px;
  }

  .visual-wall {
    grid-template-columns: 1fr;
  }

  .tall,
  .wide {
    grid-row: span 1;
  }
}
