:root {
  --bg: #060606;
  --panel: #111111;
  --panel-soft: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --text: #f5f1eb;
  --muted: rgba(245, 241, 235, 0.75);
  --line: rgba(255, 255, 255, 0.18);
  --line-soft: rgba(255, 255, 255, 0.1);
  --accent-amber: #f4a31b;
  --accent-green: #0bb58d;
  --accent-cyan: #0d95b8;
  --accent-magenta: #be2c6c;
  --radius: 30px;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
  --max-width: 1920px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 14%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 56%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 72%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px),
    linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
  background-size: 260px 260px, 360px 360px, 320px 320px, 420px 420px, auto;
}

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

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "League Spartan", sans-serif;
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-wrap: balance;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding-inline: clamp(20px, 3vw, 60px);
  padding-bottom: 88px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 94px;
  padding: 22px 0;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.5));
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: clamp(158px, 15vw, 220px);
  height: auto;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  color: rgba(245, 241, 235, 0.88);
}

.site-nav a {
  font-size: 0.98rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: #f4f1eb;
  color: #090909;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

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

.button-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

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

.floating-cta {
  position: fixed;
  right: 18px;
  left: 18px;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 14px);
  z-index: 80;
  display: none;
  justify-content: center;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 920px), (hover: none) and (pointer: coarse) {
  .floating-cta {
    display: inline-flex;
  }
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 94px);
  padding: 40px 0 300px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero::before {
  z-index: 0;
  background: url("319.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 34%;
  filter: saturate(1.06) contrast(1.04) brightness(0.9);
  transform: scale(1.02);
}

.hero::after {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.78) 26%, rgba(5, 5, 5, 0.22) 58%, rgba(5, 5, 5, 0.62) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.12) 34%, rgba(5, 5, 5, 0.86) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding-top: clamp(40px, 8vh, 100px);
}

.hero-side {
  position: absolute;
  right: 0;
  bottom: 460px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
}

.hero-side-label {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: 0.04em;
  color: rgba(245, 241, 235, 0.94);
}

.hero-note {
  width: min(100%, 280px);
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-note span {
  display: block;
  margin-bottom: 8px;
  font-family: "League Spartan", sans-serif;
  font-size: 2.2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.84);
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: rgba(245, 241, 235, 0.36);
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(4rem, 6.6vw, 7.25rem);
}

.hero-text {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-footer {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  margin-top: 70px;
}

.hero-divider {
  height: 1px;
  background: var(--line);
}

.hero-clients {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, black 4%, black 96%, transparent 100%);
}

.hero-clients-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: logoMarquee 26s linear infinite;
}

.hero-client-card {
  display: flex;
  flex: 0 0 clamp(170px, 15vw, 210px);
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: 18px 20px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}

.hero-client-card img {
  display: block;
  max-width: 100%;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 0.96;
}

.hero-client-card-borinsura img {
  max-height: 30px;
}

.hero-client-card-empire-bachata img,
.hero-client-card-empire-mambo img {
  max-height: 38px;
}

.hero-client-card-esm {
  flex-basis: clamp(150px, 13vw, 180px);
}

.hero-client-card-esm img {
  max-height: 44px;
}

.hero-client-card-bachata-nation {
  flex-basis: clamp(210px, 18vw, 250px);
}

.hero-client-card-bachata-nation img {
  max-height: 40px;
}

.hero-client-card-sosa {
  flex-basis: clamp(220px, 19vw, 270px);
}

.hero-client-card-sosa img {
  max-height: 46px;
}

.hero-client-card-mambo-ya {
  flex-basis: clamp(170px, 14vw, 195px);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.045);
}

.hero-client-card-mambo-ya img {
  max-height: 56px;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.12));
}

.hero-wave {
  position: absolute;
  right: -4%;
  bottom: 10px;
  left: -4%;
  z-index: 1;
  height: 270px;
  opacity: 0.65;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.24) 0,
      rgba(255, 255, 255, 0.24) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.18) 0,
      rgba(255, 255, 255, 0.18) 1px,
      transparent 1px,
      transparent 40px
    );
  clip-path: polygon(0 74%, 9% 64%, 20% 78%, 30% 56%, 41% 73%, 51% 48%, 62% 70%, 74% 54%, 86% 67%, 100% 44%, 100% 100%, 0 100%);
  transform: perspective(780px) rotateX(74deg);
  transform-origin: bottom;
  pointer-events: none;
}

.section {
  padding: clamp(64px, 8vw, 118px) 0;
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 38px;
}

.section-heading h2 {
  max-width: 18ch;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
}

.section-heading p:last-child {
  max-width: 900px;
  font-size: 1.08rem;
}

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

.showcase-card,
.portfolio-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.showcase-card {
  display: grid;
  align-content: space-between;
  gap: 28px;
  min-height: 380px;
  padding: 28px;
  overflow: hidden;
}

.showcase-card::before,
.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 15%, rgba(0, 0, 0, 0.84) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 42%);
  z-index: 1;
}

.showcase-card::after,
.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) - 10px);
  z-index: 2;
}

.showcase-card::before {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0.16) 72%, rgba(0, 0, 0, 0.34) 100%);
}

.showcase-card::after {
  inset: 16px;
  border-color: rgba(255, 255, 255, 0.12);
}

.glow-amber {
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(160deg, rgba(244, 163, 27, 0.88), rgba(36, 14, 0, 0.4)),
    #5a2e00;
}

.glow-green {
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(160deg, rgba(11, 181, 141, 0.82), rgba(5, 42, 30, 0.4)),
    #053329;
}

.glow-cyan {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(160deg, rgba(13, 149, 184, 0.82), rgba(5, 30, 40, 0.4)),
    #032f3b;
}

.glow-magenta {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(160deg, rgba(190, 44, 108, 0.86), rgba(32, 8, 18, 0.38)),
    #310919;
}

.card-overlay,
.portfolio-content {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  z-index: 3;
}

.showcase-card .card-overlay {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.portfolio-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.04);
  transition:
    transform 780ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 780ms cubic-bezier(0.22, 1, 0.36, 1);
}

.card-label {
  margin-bottom: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.card-overlay h3,
.portfolio-content h3 {
  max-width: 12ch;
  margin-bottom: 10px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.showcase-icon {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 92px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.showcase-icon svg {
  width: 42px;
  height: 42px;
  color: rgba(255, 255, 255, 0.96);
}

.showcase-card .card-overlay p:last-child {
  max-width: 28ch;
}

.info-split {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

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

.info-panel,
.price-card,
.contact-card {
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.info-number {
  margin-bottom: 18px;
  font-family: "League Spartan", sans-serif;
  font-size: 3rem;
  color: rgba(245, 241, 235, 0.42);
}

.info-panel h3 {
  max-width: 12ch;
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}

.system-section {
  border-top: 1px solid var(--line-soft);
}

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

.system-card {
  display: grid;
  gap: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.system-card h3 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.system-card p:last-child {
  max-width: 30ch;
}

.system-mockup {
  position: relative;
  min-height: 420px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    #191919;
}

.system-mockup::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.mockup-bar,
.mockup-field,
.mockup-button,
.review-preview,
.tool-grid span,
.queue-thumb,
.queue-lines span,
.review-comments span,
.mockup-tiles span {
  position: relative;
  z-index: 1;
}

.mockup-bar {
  height: 24px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.mockup-field {
  height: 42px;
  margin-bottom: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.mockup-field.large {
  height: 88px;
}

.mockup-label {
  position: relative;
  z-index: 1;
  margin: 4px 0 10px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.54);
}

.mockup-tiles {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.mockup-tiles span {
  display: grid;
  place-items: center;
  min-height: 84px;
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
}

.plus-tile {
  font-family: "League Spartan", sans-serif;
  font-size: 2rem;
  color: rgba(245, 241, 235, 0.42);
}

.mockup-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 14px;
  background: #3040ff;
  color: #ffffff;
  font-weight: 700;
}

.queue-ui {
  display: grid;
  align-content: start;
}

.queue-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.queue-item:last-child {
  border-bottom: 0;
}

.queue-thumb {
  min-height: 72px;
  border-radius: 16px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.queue-lines {
  display: grid;
  gap: 10px;
}

.queue-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.queue-lines span:nth-child(1) {
  width: 80%;
}

.queue-lines span:nth-child(2) {
  width: 58%;
}

.queue-lines span:nth-child(3) {
  width: 34%;
}

.queue-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.queue-pill.orange {
  background: #f67b2c;
}

.queue-pill.blue {
  background: #3c5cff;
}

.queue-pill.green {
  background: #4caa2d;
}

.review-ui {
  display: grid;
  align-content: start;
}

.review-preview {
  min-height: 190px;
  margin-bottom: 16px;
  border-radius: 18px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(160deg, rgba(48, 64, 255, 0.34), rgba(246, 123, 44, 0.2));
}

.review-comments {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.review-comments span {
  display: block;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.system-wide {
  grid-column: span 2;
  align-content: end;
  min-height: 340px;
}

.system-copy-block {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.system-step {
  font-family: "League Spartan", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.76);
}

.system-copy-block h3 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 4vw, 4.6rem);
}

.tools-ui {
  display: grid;
  align-content: start;
}

.tool-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 12px 0 22px;
}

.tool-grid span {
  display: grid;
  place-items: center;
  min-height: 88px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  font-family: "League Spartan", sans-serif;
  font-size: 1.7rem;
  color: rgba(245, 241, 235, 0.9);
}

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

.portfolio-card {
  isolation: isolate;
  min-height: 360px;
  outline: none;
}

.portfolio-card::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 42%);
  transition:
    background 520ms ease,
    opacity 520ms ease;
}

.portfolio-card::after {
  transition:
    border-color 420ms ease,
    inset 420ms ease,
    transform 420ms ease;
}

.portfolio-content {
  display: grid;
  gap: 8px;
  transform-origin: left bottom;
}

.portfolio-content p {
  max-width: 34ch;
}

.portfolio-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
}

@media (hover: hover) and (pointer: fine) {
  .portfolio-content {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
    filter: blur(10px);
    transition:
      opacity 380ms ease,
      transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
      filter 380ms ease;
  }

  .portfolio-card:hover::before,
  .portfolio-card:focus-visible::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.28) 40%, rgba(0, 0, 0, 0.9) 100%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 44%);
  }

  .portfolio-card:hover::after,
  .portfolio-card:focus-visible::after {
    inset: 12px;
    border-color: rgba(255, 255, 255, 0.22);
    transform: scale(0.995);
  }

  .portfolio-card:hover .portfolio-media,
  .portfolio-card:focus-visible .portfolio-media {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.08) brightness(0.82);
  }

  .portfolio-card:hover .portfolio-content,
  .portfolio-card:focus-visible .portfolio-content {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.large-card {
  grid-row: span 2;
  min-height: 740px;
}

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

.card-1 {
  background-color: #160b06;
}

.card-2 {
  background-color: #091218;
}

.card-3 {
  background-color: #0f0d11;
}

.card-4 {
  background-color: #12080e;
}

.card-1 .portfolio-media {
  object-position: center 18%;
}

.card-2 .portfolio-media {
  object-position: center 14%;
}

.card-3 .portfolio-media {
  object-position: center;
}

.card-4 .portfolio-media {
  object-position: center 42%;
}

.art-reel-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-inline: 0;
  overflow: hidden;
}

.art-reel-wrap {
  display: grid;
  gap: 14px;
}

.js .reveal-on-scroll {
  opacity: 0;
  transform: translateY(46px) scale(0.985);
  filter: blur(12px);
  transition:
    opacity 720ms ease,
    transform 980ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 720ms ease;
}

.js .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.art-reel-top {
  display: block;
  padding-inline: clamp(20px, 4.4vw, 84px);
}

.art-reel-heading {
  margin-bottom: 0;
}

.art-reel-heading h2 {
  max-width: 12ch;
}

.art-reel-shell {
  position: relative;
  width: 100%;
  margin-top: -6px;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.art-reel-stage {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  isolation: isolate;
}

.art-reel-stage::before,
.art-reel-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.art-reel-stage::before {
  z-index: 0;
  background:
    radial-gradient(circle at 16% 22%, rgba(48, 64, 255, 0.34), transparent 18%),
    radial-gradient(circle at 38% 64%, rgba(255, 143, 70, 0.18), transparent 20%),
    radial-gradient(circle at 62% 24%, rgba(190, 44, 108, 0.24), transparent 18%),
    radial-gradient(circle at 84% 68%, rgba(12, 149, 184, 0.22), transparent 22%);
  filter: blur(24px);
}

.art-reel-stage::after {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.96) 0%, rgba(6, 6, 6, 0.18) 10%, rgba(6, 6, 6, 0.08) 22%, rgba(6, 6, 6, 0.08) 78%, rgba(6, 6, 6, 0.18) 90%, rgba(6, 6, 6, 0.96) 100%),
    linear-gradient(180deg, rgba(6, 6, 6, 0.72) 0%, rgba(6, 6, 6, 0.08) 18%, rgba(6, 6, 6, 0.08) 82%, rgba(6, 6, 6, 0.76) 100%);
}

.art-reel-viewport {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 42px 0 72px;
  perspective: 1240px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 4%, black 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, black 4%, black 96%, transparent 100%);
}

.art-reel-track {
  --art-gap: 26px;
  display: flex;
  align-items: flex-end;
  gap: var(--art-gap);
  width: max-content;
  padding-inline: 0;
  transform: rotateY(-5deg) rotateX(1deg) scale(1.06);
  transform-origin: center center;
  transform-style: preserve-3d;
  animation: artReelScroll 56s linear infinite;
  will-change: transform;
}

.art-slide {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  height: clamp(470px, 46vw, 700px);
  aspect-ratio: var(--art-ratio, 4 / 5);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: #131313;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: translateY(var(--art-offset, 0));
  animation: artFloat 8s ease-in-out infinite;
  animation-delay: var(--art-delay, 0s);
}

.art-slide::before,
.art-slide::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.art-slide::before {
  inset: -14px;
  z-index: 0;
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.24), transparent 28%),
    radial-gradient(circle at 18% 86%, rgba(48, 64, 255, 0.22), transparent 34%),
    radial-gradient(circle at 82% 82%, rgba(190, 44, 108, 0.18), transparent 32%);
  opacity: 0.9;
  filter: blur(30px);
  animation: artGlowPulse 7s ease-in-out infinite;
  animation-delay: var(--art-delay, 0s);
}

.art-slide::after {
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.04) 0%, rgba(3, 3, 3, 0.22) 54%, rgba(3, 3, 3, 0.88) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 42%);
}

.art-slide img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(1.06) contrast(1.02);
  transition:
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.art-slide.is-square {
  height: clamp(320px, 28vw, 440px);
}

.art-slide.is-story {
  height: clamp(440px, 46vw, 680px);
}

.art-slide-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  display: grid;
  gap: 6px;
  padding: 16px 16px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(9, 9, 9, 0.28);
  backdrop-filter: blur(14px);
}

.art-slide-caption p {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.7);
}

.art-slide-caption strong {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.art-slide:hover img,
.art-slide:focus-within img {
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.08) brightness(0.92);
}

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

.pricing-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 22px;
}

.pricing-trust-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(245, 241, 235, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 241, 235, 0.9);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.testimonials-section {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

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

.testimonial-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  margin-bottom: 18px;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  color: #ffffff;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: "League Spartan", sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(245, 241, 235, 0.08);
}

.featured-testimonial {
  grid-column: span 2;
  min-height: 360px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(13, 149, 184, 0.18), rgba(190, 44, 108, 0.1));
}

.testimonial-quote {
  max-width: 34ch;
  font-size: clamp(1.18rem, 1.8vw, 1.5rem);
  line-height: 1.5;
  color: rgba(245, 241, 235, 0.92);
}

.testimonial-meta {
  display: grid;
  gap: 6px;
}

.testimonial-name {
  font-family: "League Spartan", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.98);
}

.testimonial-role {
  color: rgba(245, 241, 235, 0.68);
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-tier,
.price-badge {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  color: rgba(245, 241, 235, 0.76);
}

.price-badge {
  background: rgba(244, 163, 27, 0.14);
  color: var(--text);
}

.price-card h3 {
  font-size: clamp(3.2rem, 6vw, 4.8rem);
}

.price-copy {
  min-height: 72px;
}

.price-card ul {
  display: grid;
  gap: 12px;
}

.featured {
  transform: translateY(-10px);
  border-color: rgba(244, 163, 27, 0.34);
  background:
    linear-gradient(180deg, rgba(244, 163, 27, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
}

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

.faq-list details {
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 26px 54px 26px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.04;
  text-transform: none;
  letter-spacing: -0.03em;
  font-family: "Manrope", sans-serif;
  color: rgba(245, 241, 235, 0.96);
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  font-family: "League Spartan", sans-serif;
  font-size: 2rem;
  color: rgba(245, 241, 235, 0.8);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  max-width: 920px;
  padding: 0 0 24px;
  font-size: 1rem;
}

.faq-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-weight: 700;
  color: rgba(245, 241, 235, 0.96);
}

.faq-more::after {
  content: "->";
  font-family: "League Spartan", sans-serif;
  letter-spacing: 0.04em;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.contact-cta-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  align-items: stretch;
}

.contact-cta-card {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.contact-cta-card h3 {
  max-width: 13ch;
  font-size: clamp(2.6rem, 4.2vw, 4.5rem);
}

.contact-benefit-list {
  display: grid;
  gap: 12px;
  max-width: 48ch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-benefit-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(245, 241, 235, 0.82);
}

.contact-benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(245, 241, 235, 0.96);
}

.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.contact-cta-link {
  display: inline-flex;
  align-items: center;
  color: rgba(245, 241, 235, 0.92);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: opacity 180ms ease, transform 180ms ease;
}

.contact-cta-link:hover {
  opacity: 0.74;
  transform: translateX(2px);
}

.contact-cta-note {
  max-width: 48ch;
  color: rgba(245, 241, 235, 0.68);
}

.contact-stack {
  display: grid;
  gap: 24px;
}

.contact-card {
  display: grid;
  place-items: center;
  min-height: 280px;
  text-align: center;
}

.contact-link {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  text-wrap: balance;
}

.contact-meta {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  color: rgba(245, 241, 235, 0.92);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form span {
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.72);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(245, 241, 235, 0.42);
}

.contact-form button {
  margin-top: 6px;
}

.contact-form-status {
  margin-top: 2px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.96rem;
}

.contact-form-status.is-success {
  border-color: rgba(67, 187, 122, 0.38);
  background: rgba(67, 187, 122, 0.1);
  color: rgba(219, 255, 232, 0.96);
}

.contact-form-status.is-error {
  border-color: rgba(233, 102, 102, 0.34);
  background: rgba(233, 102, 102, 0.1);
  color: rgba(255, 221, 221, 0.96);
}

.site-footer {
  margin-top: 48px;
  padding: 32px 0 0;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: start;
  padding-bottom: 30px;
}

.footer-brand {
  display: grid;
  gap: 18px;
  max-width: 640px;
}

.footer-logo {
  display: block;
  flex: 0 0 auto;
  width: min(280px, 100%);
  height: auto;
}

.footer-heading {
  font-family: "League Spartan", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(245, 241, 235, 0.96);
}

.footer-tag {
  max-width: 28ch;
  font-size: 1.1rem;
  color: rgba(245, 241, 235, 0.78);
}

.footer-copy {
  max-width: 58ch;
  font-size: 1.02rem;
}

.footer-mail {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(245, 241, 235, 0.94);
}

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

.footer-links div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-heading {
  margin-bottom: 6px;
  font-size: 0.82rem;
}

.footer-links a {
  color: rgba(245, 241, 235, 0.74);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line-soft);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }

  .floating-cta {
    transition: none;
  }

  .hero-clients-track,
  .art-reel-track,
  .art-slide,
  .art-slide::before {
    animation: none;
  }

  .js .reveal-on-scroll {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes artReelScroll {
  from {
    transform: rotateY(-5deg) rotateX(1deg) scale(1.06) translateX(0);
  }

  to {
    transform: rotateY(-5deg) rotateX(1deg) scale(1.06) translateX(calc(-50% - (var(--art-gap) / 2)));
  }
}

@keyframes artReelScrollFlat {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (var(--art-gap) / 2)));
  }
}

@keyframes artFloat {
  0%,
  100% {
    transform: translateY(var(--art-offset, 0));
  }

  50% {
    transform: translateY(calc(var(--art-offset, 0) - 12px));
  }
}

@keyframes artGlowPulse {
  0%,
  100% {
    opacity: 0.78;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@media (max-width: 1150px) {
  .hero {
    min-height: auto;
    padding-bottom: 220px;
  }

  .hero::before {
    background-position: 62% 32%;
  }

  .hero-side {
    position: static;
    align-items: flex-start;
    margin-top: 26px;
  }

  .hero-client-card {
    flex-basis: clamp(160px, 24vw, 196px);
  }

  .showcase-grid,
  .system-grid,
  .testimonial-grid,
  .pricing-grid,
  .info-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .art-reel-top {
    padding-inline: clamp(20px, 4vw, 56px);
  }

  .art-reel-stage {
    min-height: 720px;
  }

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

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

@media (max-width: 920px) {
  .site-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 180px;
  }

  .hero::before {
    background-position: 68% 30%;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.44) 0%, rgba(5, 5, 5, 0.24) 22%, rgba(5, 5, 5, 0.92) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.34) 52%, rgba(5, 5, 5, 0.84) 100%);
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(3.9rem, 12vw, 6.1rem);
  }

  .hero-clients {
    mask-image: none;
  }

  .hero-clients-track {
    gap: 14px;
    animation-duration: 20s;
  }

  .hero-client-card {
    flex-basis: 172px;
    min-height: 74px;
    padding: 16px 18px;
  }

  .hero-client-card img {
    max-height: 32px;
  }

  .hero-clients,
  .showcase-grid,
  .info-grid,
  .system-grid,
  .testimonial-grid,
  .pricing-grid,
  .contact-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .wide-card,
  .large-card,
  .featured-testimonial,
  .system-wide {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 420px;
  }

  .featured {
    transform: none;
  }

  .pricing-trust {
    gap: 10px;
    margin-bottom: 18px;
  }

  .pricing-trust-pill {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .hero-wave {
    height: 180px;
    bottom: 70px;
  }

  .art-reel-top {
    padding-inline: 22px;
  }

  .art-reel-stage {
    min-height: 650px;
  }

  .art-reel-viewport {
    padding: 26px 0 42px;
  }

  .art-reel-track {
    --art-gap: 16px;
    animation-name: artReelScrollFlat;
    animation-duration: 40s;
  }

  .art-slide {
    height: clamp(360px, 64vw, 520px);
    border-radius: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding-inline: 18px;
  }

  .site-header {
    min-height: 84px;
    padding: 18px 0;
  }

  .brand-logo {
    width: 154px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    min-height: calc(100svh - 84px);
    min-height: calc(100dvh - 84px);
    padding: 12px 0 26px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .eyebrow {
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
  }

  .eyebrow::before {
    width: 28px;
  }

  .hero h1,
  .section-heading h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .hero h1 {
    max-width: 10ch;
    line-height: 0.9;
  }

  .hero-text,
  .section-heading p:last-child {
    font-size: 0.94rem;
  }

  .hero-text {
    max-width: 34ch;
    margin-top: 16px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .hero-actions .button {
    min-height: 52px;
    padding-inline: 18px;
  }

  .hero-side {
    gap: 12px;
    margin-top: 0;
  }

  .hero-side-label {
    font-size: clamp(0.96rem, 4.8vw, 1.18rem);
  }

  .hero-note {
    width: min(100%, 228px);
    padding: 14px 16px;
    border-radius: 18px;
  }

  .hero-note span {
    margin-bottom: 4px;
    font-size: 1.72rem;
  }

  .hero-note p {
    font-size: 0.88rem;
  }

  .hero-footer {
    gap: 12px;
    margin-top: 0;
  }

  .hero-clients {
    margin-inline: -18px;
    padding-inline: 18px;
  }

  .hero-clients-track {
    gap: 10px;
    animation-duration: 18s;
  }

  .hero-client-card {
    flex-basis: 136px;
    min-height: 58px;
    padding: 12px 14px;
  }

  .hero-client-card img {
    max-height: 24px;
  }

  .hero-client-card-esm {
    flex-basis: 126px;
  }

  .hero-client-card-esm img {
    max-height: 30px;
  }

  .hero-client-card-bachata-nation {
    flex-basis: 158px;
  }

  .hero-client-card-bachata-nation img {
    max-height: 28px;
  }

  .hero-client-card-sosa {
    flex-basis: 162px;
  }

  .hero-client-card-sosa img {
    max-height: 30px;
  }

  .hero-client-card-mambo-ya {
    flex-basis: 140px;
  }

  .hero-client-card-mambo-ya img {
    max-height: 34px;
  }

  .hero-wave {
    height: 110px;
    right: -2%;
    left: -2%;
    bottom: 0;
    opacity: 0.42;
  }

  .showcase-card,
  .portfolio-card {
    min-height: 380px;
  }

  .showcase-card {
    gap: 22px;
    min-height: 340px;
    padding: 22px;
  }

  .showcase-icon {
    width: 74px;
    border-radius: 22px;
  }

  .showcase-icon svg {
    width: 34px;
    height: 34px;
  }

  .art-reel-top {
    padding-inline: 18px;
  }

  .art-reel-stage {
    min-height: 540px;
  }

  .art-reel-viewport {
    padding: 20px 0 28px;
  }

  .art-reel-track {
    --art-gap: 14px;
    padding-inline: 0;
    animation-name: artReelScrollFlat;
    animation-duration: 34s;
  }

  .art-slide {
    height: clamp(320px, 86vw, 420px);
    border-radius: 24px;
  }

  .art-slide-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 12px 12px 11px;
    border-radius: 16px;
  }

  .art-slide-caption strong {
    font-size: 1.15rem;
  }

  .system-mockup {
    min-height: 330px;
  }

  .system-section {
    overflow: clip;
  }

  .system-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    margin-inline: -18px;
    padding: 4px 18px 14px;
    scroll-padding-inline: 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .system-grid::-webkit-scrollbar {
    display: none;
  }

  .system-grid > .system-card {
    flex: 0 0 min(86vw, 340px);
    min-width: 0;
    min-height: auto;
    padding: 18px;
    gap: 18px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background:
      linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(9, 9, 9, 0.92)),
      rgba(255, 255, 255, 0.02);
  }

  .system-card h3,
  .system-copy-block h3 {
    max-width: 100%;
    font-size: clamp(1.8rem, 8.5vw, 2.6rem);
    line-height: 0.98;
  }

  .system-card p:last-child {
    max-width: none;
    font-size: 0.95rem;
  }

  .system-wide {
    flex-basis: min(86vw, 340px);
    align-content: start;
    min-height: auto;
  }

  .system-copy-block {
    gap: 12px;
    max-width: none;
  }

  .system-step {
    font-size: 0.92rem;
  }

  .system-mockup {
    min-height: 245px;
    padding: 14px;
    border-radius: 20px;
  }

  .system-mockup::before {
    inset: 10px;
    border-radius: 16px;
  }

  .mockup-bar {
    height: 20px;
    margin-bottom: 14px;
  }

  .mockup-field {
    height: 34px;
    margin-bottom: 10px;
    border-radius: 12px;
  }

  .mockup-field.large {
    height: 68px;
  }

  .mockup-label {
    margin: 2px 0 8px;
    font-size: 0.74rem;
  }

  .mockup-tiles {
    gap: 8px;
    margin-bottom: 14px;
  }

  .mockup-tiles span {
    min-height: 60px;
    border-radius: 14px;
  }

  .mockup-button {
    min-height: 42px;
    padding: 0 15px;
    border-radius: 12px;
    font-size: 0.94rem;
  }

  .queue-item {
    grid-template-columns: 54px 1fr auto;
    gap: 10px;
    padding: 10px 0;
  }

  .queue-thumb {
    min-height: 54px;
    border-radius: 12px;
  }

  .queue-lines {
    gap: 8px;
  }

  .queue-lines span {
    height: 8px;
  }

  .queue-pill {
    min-height: 26px;
    padding: 0 10px;
    font-size: 0.66rem;
  }

  .review-preview {
    min-height: 128px;
    margin-bottom: 12px;
    border-radius: 14px;
  }

  .review-comments {
    gap: 10px;
    margin-bottom: 14px;
  }

  .review-comments span {
    height: 42px;
    border-radius: 12px;
  }

  .tool-grid {
    gap: 10px;
    margin: 10px 0 16px;
  }

  .tool-grid span {
    min-height: 56px;
    border-radius: 14px;
    font-size: 1.1rem;
  }

  .mockup-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tool-grid span {
    min-height: 70px;
    font-size: 1.35rem;
  }

  .info-panel,
  .price-card,
  .contact-card {
    padding: 24px;
  }

  .faq-list summary {
    padding-right: 38px;
    font-size: 1.4rem;
  }

  .contact-card {
    min-height: 220px;
  }

  .contact-link {
    font-size: 1.8rem;
  }

  .contact-cta-card {
    padding: 24px;
    border-radius: 24px;
  }

  .contact-cta-actions {
    display: grid;
  }

  .contact-cta-actions .button {
    width: 100%;
  }

.contact-cta-link {
  justify-self: start;
}
}

@media (hover: none), (pointer: coarse), (max-width: 760px) {
  .art-reel-stage {
    min-height: auto;
    overflow: visible;
  }

  .art-reel-stage::before,
  .art-reel-stage::after {
    display: none;
  }

  .art-reel-viewport {
    padding: 18px 18px 28px;
    overflow-x: auto;
    overflow-y: visible;
    perspective: none;
    -webkit-mask-image: none;
    mask-image: none;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .art-reel-viewport::-webkit-scrollbar {
    display: none;
  }

  .art-reel-track {
    --art-gap: 14px;
    width: max-content;
    padding-inline: 0;
    transform: none;
    transform-style: flat;
    animation: none;
    will-change: auto;
    align-items: stretch;
  }

  .art-slide {
    width: min(74vw, 300px);
    height: clamp(300px, 80vw, 390px);
    border-radius: 22px;
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(255, 255, 255, 0.04);
    transform: none;
    animation: none;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .art-slide.is-square {
    width: min(74vw, 300px);
    height: min(74vw, 300px);
  }

  .art-slide.is-story {
    width: min(62vw, 272px);
    height: clamp(360px, 92vw, 460px);
  }

  .art-slide::before {
    display: none;
  }

  .art-slide::after {
    background: linear-gradient(180deg, rgba(3, 3, 3, 0.04) 0%, rgba(3, 3, 3, 0.2) 56%, rgba(3, 3, 3, 0.86) 100%);
  }

  .art-slide img {
    transform: none;
    filter: saturate(1.04) contrast(1.01);
  }

  .art-slide-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 12px 12px 11px;
    border-radius: 16px;
  }
}
