:root {
  --bg: #0d0d0d;
  --bg-soft: #151515;
  --surface: rgba(18, 18, 18, 0.78);
  --surface-strong: rgba(28, 28, 28, 0.94);
  --surface-alt: rgba(255, 255, 255, 0.06);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.1);
  --accent: #c8001c;
  --accent-strong: #ff4d63;
  --accent-warm: #c8001c;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --container: min(1240px, calc(100vw - 32px));
}

body.light {
  --bg: #ffffff;
  --bg-soft: #f4f4f4;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: rgba(255, 255, 255, 0.98);
  --surface-alt: rgba(13, 13, 13, 0.05);
  --text: #0d0d0d;
  --muted: rgba(13, 13, 13, 0.68);
  --line: rgba(13, 13, 13, 0.1);
  --shadow: 0 25px 70px rgba(13, 13, 13, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(200, 0, 28, 0.2), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.06), transparent 20%),
    linear-gradient(180deg, var(--bg) 0%, #141414 35%, var(--bg) 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body.light {
  background:
    radial-gradient(circle at top left, rgba(200, 0, 28, 0.12), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(13, 13, 13, 0.06), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f6f6f6 38%, #ffffff 100%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.ambient,
.ambient-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.ambient-one {
  background: radial-gradient(circle at 10% 20%, rgba(200, 0, 28, 0.16), transparent 22%);
}

.ambient-two {
  background: radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.06), transparent 26%);
}

.ambient-grid {
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding-top: 0;
}

.surface {
  background: linear-gradient(180deg, var(--surface), var(--surface-strong));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  border-radius: var(--radius-lg);
}

.eyebrow,
.mini-label,
.card-tag,
.bundle-rank,
.product-type,
.portfolio-card span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid rgba(200, 0, 28, 0.35);
  background: rgba(200, 0, 28, 0.12);
  color: var(--accent-strong);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(22px);
  background: rgba(13, 13, 13, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

body.light .site-header {
  background: rgba(255, 255, 255, 0.9);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-scrolled {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.topbar,
.nav-shell,
.topbar-copy,
.topbar-actions,
.main-nav,
.nav-actions,
.hero-actions,
.hero-points,
.trust-links,
.filter-row,
.product-actions,
.step-actions,
.upload-actions,
.topbar-copy,
.topbar-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.topbar {
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  font-size: 13px;
  color: var(--muted);
}

.topbar-copy,
.topbar-actions {
  gap: 16px;
}

.nav-shell {
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(200, 0, 28, 0.12));
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  opacity: 0.14;
  filter: blur(10px);
  animation: printsync-brand-shell 8s ease-in-out infinite;
}

.brand-mark img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  animation: printsync-brand-logo 8s ease-in-out infinite;
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--muted);
}

.main-nav,
.nav-actions {
  gap: 14px;
}

.main-nav a,
.topbar a,
.footer-grid a,
.contact-stack a,
.product-actions a,
.service-category a,
.portfolio-card a,
.hero-card a,
.trust-links a {
  color: var(--muted);
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.topbar a:hover,
.footer-grid a:hover,
.contact-stack a:hover,
.product-actions a:hover,
.service-category a:hover,
.portfolio-card a:hover,
.hero-card a:hover,
.trust-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.button,
.filter-chip,
.testimonial-nav,
.theme-toggle,
.menu-toggle {
  cursor: pointer;
  border: 0;
}

.button,
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button {
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(200, 0, 28, 0.28);
}

.button:hover,
.theme-toggle:hover,
.filter-chip:hover,
.testimonial-nav:hover {
  transform: translateY(-2px);
}

.button-ghost,
.theme-toggle,
.filter-chip,
.testimonial-nav {
  background: var(--surface-alt);
  color: var(--text);
  border: 1px solid var(--line);
}

.filter-row {
  justify-content: center;
  gap: 14px;
  padding: 14px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(14, 14, 14, 0.74);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.filter-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.filter-chip::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  opacity: 0.45;
  pointer-events: none;
}

.filter-chip:hover,
.filter-chip:focus-visible {
  border-color: rgba(255, 77, 99, 0.22);
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 77, 99, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.16);
  outline: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  border-radius: 14px;
  background: var(--surface-alt);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
}

.hero-grid,
.split-section,
.quote-layout,
.upload-layout,
.cta-panel,
.footer-grid,
.product-detail-layout {
  display: grid;
  gap: 28px;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.82) 38%, rgba(10, 10, 10, 0.68) 100%),
    url("assets/images/shop/vehicle-branding-side.jpg") center/cover no-repeat;
  opacity: 0.34;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% 48%;
  height: 420px;
  background:
    radial-gradient(circle at center, rgba(200, 0, 28, 0.24), rgba(200, 0, 28, 0) 68%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  min-height: calc(100vh - 140px);
}

.hero-grid-solo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-copy h1,
.section-heading h2,
.hero-card h2,
.cta-panel h2 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin: 18px 0;
}

.page-title {
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-size: clamp(2.8rem, 7vw, 5rem);
  margin: 16px 0;
}

.page-hero {
  padding-bottom: 40px;
}

.portfolio-hero {
  padding-bottom: 32px;
}

.portfolio-hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.portfolio-hero-shell::before {
  content: "";
  position: absolute;
  inset: 4% -4% auto 48%;
  height: 72%;
  background: radial-gradient(circle at center, rgba(200, 0, 28, 0.18), rgba(200, 0, 28, 0) 72%);
  pointer-events: none;
  filter: blur(18px);
}

.portfolio-hero-copy {
  position: relative;
  z-index: 1;
}

.portfolio-hero-copy .page-title {
  max-width: 10ch;
}

.portfolio-hero-copy p {
  max-width: 54ch;
}

.portfolio-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.portfolio-hero-pills span {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.9rem;
}

.portfolio-hero-visual {
  position: relative;
  min-width: 0;
  padding: 28px 18px 22px;
}

.portfolio-hero-frame {
  position: relative;
  margin: 0;
  padding: 14px;
  border-radius: 34px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(15, 15, 15, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  transform: rotate(-1.5deg);
  overflow: hidden;
}

.portfolio-hero-frame::after {
  content: "";
  position: absolute;
  inset: auto 6% -10% 18%;
  height: 24%;
  background: radial-gradient(circle at center, rgba(200, 0, 28, 0.32), rgba(200, 0, 28, 0) 72%);
  filter: blur(18px);
  pointer-events: none;
}

.portfolio-hero-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 24px;
}

.portfolio-hero-note {
  position: absolute;
  z-index: 2;
  max-width: 220px;
  padding: 10px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 14, 14, 0.86);
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.portfolio-hero-note-top {
  top: 0;
  left: 0;
}

.portfolio-hero-note-bottom {
  right: 0;
  bottom: 0;
  color: var(--accent-strong);
}

.hero-copy h1 {
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
}

.hero-copy-centered {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.hero-grid-solo .hero-copy {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
}

.hero-copy-centered .hero-actions,
.hero-copy-centered .hero-points {
  justify-content: center;
}

.hero-copy-centered .smart-search {
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
}

.hero-morph {
  display: flex;
  justify-content: center;
  width: min(100%, var(--hero-morph-width, 14ch));
  max-width: 100%;
  min-height: 2.9ch;
  margin-inline: auto;
}

.hero-morph-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.22em;
  width: 100%;
  position: relative;
}

.hero-word {
  position: relative;
  display: inline-flex;
  justify-content: center;
  min-width: var(--hero-word-width, auto);
  white-space: nowrap;
}

.hero-word-measure {
  position: absolute;
  visibility: hidden;
  pointer-events: none;
  inset: auto;
}

.hero-morph-cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0.88em;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(180deg, #ff6b7d 0%, #c8001c 100%);
  box-shadow: 0 0 0 1px rgba(255, 77, 99, 0.18), 0 0 18px rgba(200, 0, 28, 0.45);
  transform: translate(0, 0);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), opacity 160ms ease, height 160ms ease;
}

.hero-morph-cursor.is-visible {
  opacity: 0.96;
}

.hero-morph-cursor.is-instant {
  transition: none;
}

.hero-word-center {
  color: var(--accent);
  text-shadow: 0 0 22px rgba(200, 0, 28, 0.18);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.hero-word-center.is-active {
  color: #ff6b7d;
  text-shadow: 0 0 28px rgba(255, 77, 99, 0.42);
}

.hero-copy .hero-subheadline {
  margin-top: 10px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.hero-copy p,
.section-heading p,
.service-category p,
.portfolio-card p,
.product-card p,
.bundle-card p,
.testimonial-card p,
.cta-panel p,
.story-grid p {
  color: var(--muted);
  line-height: 1.8;
}

.smart-search {
  margin-top: 28px;
  position: relative;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 100%),
    linear-gradient(180deg, var(--surface), var(--surface-strong));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  text-align: center;
  z-index: 8;
}

.search-head {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.search-label {
  display: block;
  margin-bottom: 0;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text);
}

.search-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 46ch;
}

.search-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 16px;
  align-items: center;
  width: min(100%, 560px);
  margin-inline: auto;
}

.search-box input,
select,
textarea,
.quote-form input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
}

body.light .search-box input,
body.light select,
body.light textarea,
body.light .quote-form input {
  background: rgba(255, 255, 255, 0.72);
}

.search-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  justify-content: center;
}

.search-shortcuts a {
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.88rem;
}

.search-shortcuts a:hover {
  color: var(--text);
  border-color: rgba(200, 0, 28, 0.35);
}

.search-suggestions {
  position: relative;
  margin: 14px auto 0;
  width: min(100%, 560px);
  max-height: 320px;
  overflow-y: auto;
  padding: 10px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(18, 18, 18, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  display: grid;
  gap: 8px;
  z-index: 20;
}

.search-suggestions::-webkit-scrollbar {
  width: 10px;
}

.search-suggestions::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.suggestion {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.suggestion:hover,
.suggestion:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 77, 99, 0.26);
  background: linear-gradient(180deg, rgba(255, 77, 99, 0.08), rgba(255, 255, 255, 0.045));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  outline: none;
}

.suggestion-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.suggestion-copy strong {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.suggestion-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-strong);
  font-size: 1rem;
}

.suggestion-copy small {
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.hero-points {
  gap: 12px;
  margin-top: 18px;
}

.hero-points span,
.step-indicator span {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--muted);
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 22px;
  align-items: stretch;
}

.hero-card,
.metrics-panel,
.service-category,
.bundle-card,
.portfolio-card,
.product-card,
.quote-form,
.upload-panel,
.testimonial-shell,
.cta-panel,
.trust-strip,
.story-grid .surface {
  padding: 28px;
}

.info-grid .surface {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
}

.info-grid .surface h3 {
  margin: 0;
  line-height: 1.1;
}

.product-card-media {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.portfolio-card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero-card {
  position: relative;
  transition: transform 220ms ease;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.hero-card-main {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  background:
    linear-gradient(160deg, rgba(200, 0, 28, 0.16), transparent 48%),
    linear-gradient(180deg, var(--surface), var(--surface-strong));
}

.hero-card-main h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.02;
  margin-top: 14px;
  margin-bottom: 0;
}

.hero-card-main p {
  margin: 0;
  max-width: 26rem;
}

.hero-side-stack {
  display: grid;
  gap: 22px;
}

.hero-card-visual {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.22)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 100%),
    linear-gradient(180deg, var(--surface), var(--surface-strong));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-card-visual-top {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.22)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 100%),
    url("assets/images/shop/vehicle-branding-side.jpg") center/cover no-repeat;
}

.hero-card-visual-bottom {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.12), rgba(8, 8, 8, 0.28)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 100%),
    url("assets/images/shop/large-format-banners.jpg") center/cover no-repeat;
}

.hero-card-actions {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.hero-card-note {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.metrics-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.metrics-panel article {
  padding: 24px 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--surface-strong));
  text-align: left;
}

.metrics-panel strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.trust-strip,
.cta-panel {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  align-items: center;
}

.platform-strip {
  padding: 28px;
  display: grid;
  gap: 22px;
}

.brand-strip {
  padding-block: 24px;
}

.brand-strip .platform-strip-copy {
  text-align: center;
}

.brand-strip .platform-strip-copy h2 {
  margin-top: 6px;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.platform-strip-copy h2 {
  margin: 10px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.platform-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.platform-marquee-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: platform-marquee-scroll 26s linear infinite;
}

.platform-logo-card {
  min-height: 88px;
  min-width: 168px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
  padding: 18px;
}

.platform-logo-card img {
  max-width: 100%;
  max-height: 38px;
  width: auto;
  height: auto;
  display: block;
  filter: grayscale(1) brightness(1.2);
  opacity: 0.92;
  animation: platform-logo-color-cycle 8s ease-in-out infinite;
}

.platform-marquee-track .platform-logo-card:nth-child(2n) img {
  animation-delay: 1.2s;
}

.platform-marquee-track .platform-logo-card:nth-child(3n) img {
  animation-delay: 2.4s;
}

.platform-marquee-track .platform-logo-card:nth-child(4n) img {
  animation-delay: 3.6s;
}

@keyframes platform-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 7px)); }
}

@keyframes platform-logo-color-cycle {
  0%, 18%, 100% {
    filter: grayscale(1) brightness(1.2);
    opacity: 0.92;
    transform: translateY(0) scale(1);
  }
  26%, 38% {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: translateY(-2px) scale(1.03);
  }
  52% {
    filter: grayscale(1) brightness(1.2);
    opacity: 0.94;
    transform: translateY(0) scale(1);
  }
}

.split-section {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
}

.story-grid,
.service-grid,
.bundle-grid,
.portfolio-grid,
.shop-grid,
.search-results-grid,
.info-grid {
  display: grid;
  gap: 20px;
}

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

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

.service-category.featured,
.bundle-card.featured {
  background:
    linear-gradient(160deg, rgba(200, 0, 28, 0.16), transparent 55%),
    linear-gradient(180deg, var(--surface), var(--surface-strong));
}

.category-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(200, 0, 28, 0.22), rgba(255, 255, 255, 0.08));
  margin-bottom: 18px;
}

.service-motion-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(200, 0, 28, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(200, 0, 28, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.service-motion-icon svg {
  width: 52px;
  height: 52px;
  overflow: visible;
}

.service-motion-icon .light-stroke,
.service-motion-icon .accent-stroke,
.service-motion-icon .icon-orbit {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-motion-icon .light-stroke {
  stroke: #ffffff;
  stroke-width: 2.2;
}

.service-motion-icon .accent-stroke {
  stroke: var(--accent);
  stroke-width: 2.6;
}

.service-motion-icon .accent-fill {
  fill: var(--accent);
}

.service-motion-icon .icon-orbit {
  stroke: rgba(200, 0, 28, 0.24);
  stroke-width: 1.6;
  stroke-dasharray: 6 6;
  animation: printsync-spin 10s linear infinite;
  transform-origin: 32px 32px;
}

.service-motion-icon .icon-paper {
  animation: printsync-paper 2.4s ease-in-out infinite;
}

.service-motion-icon .icon-window {
  animation: printsync-pulse 2.8s ease-in-out infinite;
}

.service-motion-icon .icon-wheel {
  animation: printsync-spin 1.8s linear infinite;
  transform-origin: center;
}

.service-motion-icon .icon-sign {
  animation: printsync-sway 3s ease-in-out infinite;
  transform-origin: 32px 18px;
}

.service-motion-icon .icon-banner {
  animation: printsync-wave 2.6s ease-in-out infinite;
  transform-origin: center;
}

.service-motion-icon .icon-shirt {
  animation: printsync-sway 3.2s ease-in-out infinite;
  transform-origin: 32px 18px;
}

.service-motion-icon .icon-lid {
  animation: printsync-bounce 2.4s ease-in-out infinite;
  transform-origin: 32px 22px;
}

.service-motion-icon .icon-flap-left {
  animation: printsync-flap-left 2.2s ease-in-out infinite;
  transform-origin: 22px 24px;
}

.service-motion-icon .icon-flap-right {
  animation: printsync-flap-right 2.2s ease-in-out infinite;
  transform-origin: 42px 24px;
}

.service-motion-icon .icon-sound {
  animation: printsync-sound 1.9s ease-in-out infinite;
}

.service-motion-icon .icon-hand {
  animation: printsync-tick 3s steps(12) infinite;
  transform-origin: 32px 32px;
}

@keyframes printsync-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes printsync-paper {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes printsync-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@keyframes printsync-sway {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

@keyframes printsync-wave {
  0%, 100% { transform: skewY(0deg) scaleY(1); }
  50% { transform: skewY(-4deg) scaleY(0.96); }
}

@keyframes printsync-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes printsync-flap-left {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-16deg); }
}

@keyframes printsync-flap-right {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(16deg); }
}

@keyframes printsync-sound {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

@keyframes printsync-tick {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes printsync-brand-shell {
  0%, 22%, 100% {
    opacity: 0.12;
    transform: scale(1) rotate(0deg);
  }
  38%, 54% {
    opacity: 0.24;
    transform: scale(1.08) rotate(10deg);
  }
}

@keyframes printsync-brand-logo {
  0%, 20%, 100% {
    filter: none;
    transform: scale(1);
  }
  40%, 62% {
    filter: grayscale(1) brightness(2.4) contrast(1.05);
    transform: scale(1.03);
  }
}

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

.portfolio-grid,
.shop-grid,
.search-results-grid,
.info-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shop-category-priority,
.category-columns {
  display: grid;
  gap: 20px;
}

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

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

.priority-card.featured {
  background:
    linear-gradient(160deg, rgba(200, 0, 28, 0.16), transparent 55%),
    linear-gradient(180deg, var(--surface), var(--surface-strong));
  padding: 28px;
}

.category-map {
  padding: 28px;
}

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

.filter-row,
.product-actions,
.step-actions,
.upload-actions {
  gap: 12px;
}

.filter-chip.active,
.step-indicator .active {
  background:
    linear-gradient(135deg, rgba(255, 77, 99, 0.28), rgba(200, 0, 28, 0.88)),
    rgba(200, 0, 28, 0.84);
  color: #ffffff;
  border-color: rgba(255, 107, 125, 0.56);
  box-shadow: 0 18px 32px rgba(200, 0, 28, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.product-actions a,
.service-category a,
.portfolio-card a {
  margin-top: 18px;
  display: inline-flex;
  font-weight: 700;
}

.product-meta {
  margin-top: 12px;
  color: var(--accent-strong);
  font-weight: 700;
}

.micro-heading {
  margin: 18px 0 8px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.mini-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-pill {
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 13px;
}

.help-cta {
  margin-top: 18px;
  display: inline-flex;
  color: var(--accent-strong);
  font-weight: 700;
}

.quote-layout,
.upload-layout {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.product-detail-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.pricing-summary {
  align-self: start;
}

.pricing-summary h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin: 16px 0;
}

.quote-form,
.upload-panel,
.testimonial-shell {
  overflow: hidden;
}

.product-detail-main,
.product-detail-side {
  padding: 28px;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.gallery-card {
  min-height: 180px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(200, 0, 28, 0.14), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.gallery-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 8px;
  border: 1px solid var(--line);
}

.gallery-card strong {
  font-family: "Space Grotesk", sans-serif;
}

.gallery-card span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.product-long-copy {
  color: var(--muted);
  line-height: 1.8;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.quote-form {
  display: grid;
  gap: 24px;
}

.step-indicator {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.quote-step {
  display: none;
  gap: 16px;
}

.quote-step.active {
  display: grid;
}

.quote-step label {
  display: grid;
  gap: 10px;
  font-weight: 600;
}

.upload-panel label:not(.dropzone) {
  display: grid;
  gap: 10px;
  font-weight: 600;
  margin-top: 16px;
}

textarea {
  resize: vertical;
}

.dropzone {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 240px;
  border: 1.5px dashed rgba(200, 0, 28, 0.4);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  padding: 24px;
}

.dropzone.dragover {
  background: rgba(200, 0, 28, 0.08);
}

.dropzone input {
  display: none;
}

.file-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
}

.file-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--muted);
}

.testimonial-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.testimonial-track {
  position: relative;
  min-height: 230px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
}

.stars {
  font-size: 18px;
  letter-spacing: 0.24em;
  color: var(--accent-warm);
}

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

.contact-hero {
  padding-bottom: 36px;
}

.contact-hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 34px;
  padding: 34px;
  overflow: hidden;
}

.contact-hero-shell::before {
  content: "";
  position: absolute;
  inset: -12% auto auto 48%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at center, rgba(200, 0, 28, 0.22), rgba(200, 0, 28, 0) 72%);
  filter: blur(18px);
  pointer-events: none;
}

.contact-hero-copy {
  position: relative;
  z-index: 1;
}

.contact-hero-copy .page-title {
  max-width: 11ch;
}

.contact-hero-copy p {
  max-width: 58ch;
}

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

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

.contact-channel-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  color: var(--text);
  min-width: 0;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-channel-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 77, 99, 0.24);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 77, 99, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
}

.contact-channel-card small {
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.contact-channel-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  line-height: 1.18;
}

.contact-channel-card span {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
}

.contact-portrait-panel {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 18px 12px 6px;
}

.contact-portrait-frame {
  position: relative;
  margin: 0;
  padding: 14px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(15, 15, 15, 0.9);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  transform: rotate(-2deg);
}

.contact-portrait-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 26px;
}

.contact-portrait-caption {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 14, 14, 0.84);
  backdrop-filter: blur(16px);
}

.contact-portrait-caption strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.contact-portrait-caption span {
  color: var(--muted);
  line-height: 1.65;
}

.contact-portrait-note {
  position: absolute;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 14, 14, 0.88);
  backdrop-filter: blur(16px);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.contact-portrait-note-top {
  top: 0;
  left: 0;
}

.contact-portrait-note-bottom {
  right: 0;
  bottom: 76px;
  color: var(--accent-strong);
}

.search-results-section {
  padding: 0 0 96px;
}

.search-result-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--surface), var(--surface-strong));
  border: 1px solid var(--line);
}

.search-result-card small {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-link-row {
  margin-top: 24px;
}

.detail-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.detail-list li {
  padding-left: 2px;
}

.detail-list li + li {
  margin-top: 8px;
}

.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border-color: rgba(200, 0, 28, 0.3);
  color: var(--text);
}

.form-status.is-error {
  border-color: rgba(255, 98, 98, 0.3);
  color: #ffc0c0;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(200, 0, 28, 0.12), transparent 46%),
    linear-gradient(180deg, var(--surface), var(--surface-strong));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.cookie-banner-copy {
  display: grid;
  gap: 8px;
}

.cookie-banner-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.cookie-banner-copy p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.7;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-grid,
.admin-summary {
  display: grid;
  gap: 20px;
}

.login-shell {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
}

.login-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.login-panel,
.login-form {
  padding: 32px;
}

.login-form {
  align-self: center;
}

.admin-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-table-wrap {
  overflow: auto;
  padding: 28px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-inline-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.main-nav a.is-active {
  color: var(--text);
}

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

.footer-grid {
  grid-template-columns: 1.5fr repeat(3, 1fr);
}

.footer-grid h3 {
  margin-top: 0;
  font-family: "Space Grotesk", sans-serif;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, #2de16d 0%, #1fb954 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  z-index: 30;
}

.floating-whatsapp-icon {
  width: 46px;
  height: 46px;
  pointer-events: none;
}

.floating-support {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 31;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.support-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 14, 0.45);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.floating-support.is-open .support-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.support-mode {
  overflow: hidden;
}

body.support-mode .site-header {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.support-launcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(200, 0, 28, 0.22);
  background: linear-gradient(135deg, #c8001c, #8f0014);
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(200, 0, 28, 0.28);
  font-weight: 700;
}

.support-launcher-bot {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.28));
}

.support-popup {
  width: min(1320px, calc(100vw - 32px));
  height: min(900px, calc(100vh - 28px));
  max-height: calc(100vh - 28px);
  padding: 26px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 12% 12%, rgba(200, 0, 28, 0.22), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(72, 208, 255, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(10, 12, 20, 0.985), rgba(6, 8, 14, 0.985));
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.52);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translate(-50%, 20px) scale(0.96);
  transition: opacity 220ms ease, transform 220ms ease;
  overflow: hidden;
  overscroll-behavior: contain;
}

.support-popup.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.support-popup-head {
  display: grid;
  gap: 8px;
  position: relative;
  z-index: 3;
  padding: 0;
}

.support-popup-headbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.support-close {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.support-close:hover {
  transform: translateY(-1px);
  background: rgba(200, 0, 28, 0.12);
  border-color: rgba(200, 0, 28, 0.28);
}

.support-close span {
  position: absolute;
  width: 16px;
  height: 1.6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.support-close span:first-child {
  transform: rotate(45deg);
}

.support-close span:last-child {
  transform: rotate(-45deg);
}

.support-popup-head strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.support-popup-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.support-interface-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
  min-height: 0;
  overflow: hidden;
}

.support-interface-main {
  display: grid;
  gap: 18px;
  min-width: 0;
  min-height: 0;
  order: 2;
  overflow: hidden;
}

.support-ai-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(8, 11, 19, 0.82);
}

.support-ai-hero-poster {
  height: 100%;
  align-content: start;
  gap: 22px;
  overflow-y: auto;
  padding-right: 4px;
}

.support-bot-visual-panel {
  min-width: 0;
  order: 1;
}

.support-bot-image-shell {
  position: relative;
  min-height: clamp(220px, 36vh, 420px);
  display: grid;
  place-items: center;
}

.support-bot-image {
  position: relative;
  z-index: 1;
  width: min(100%, 380px);
  height: auto;
  object-fit: contain;
}

.support-bot-image-glow {
  position: absolute;
  inset: 18px;
  border-radius: 32px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent 46%),
    radial-gradient(circle at 50% 20%, rgba(200, 0, 28, 0.35), transparent 36%),
    radial-gradient(circle at 50% 80%, rgba(72, 208, 255, 0.22), transparent 34%);
  filter: blur(16px);
}

.support-ai-core-poster {
  width: 100%;
  max-width: 260px;
  min-height: 260px;
}

.support-bot-visual-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.support-bot-visual-stats span {
  padding: 9px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.support-action-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.support-action-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  text-align: center;
}

.support-action-card:hover {
  transform: translateY(-1px);
  border-color: rgba(200, 0, 28, 0.24);
  background:
    linear-gradient(135deg, rgba(200, 0, 28, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
}

.support-action-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.84rem;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.support-capability-marquee {
  overflow: hidden;
  padding: 10px 0 2px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.support-capability-track {
  display: inline-flex;
  gap: 10px;
  min-width: max-content;
  animation: supportTicker 28s linear infinite;
}

.support-capability-track span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-chat-panel {
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(8, 11, 18, 0.82);
  overflow: hidden;
}

.support-chat-head p {
  margin: 6px 0 0;
  color: var(--muted);
}

.support-chat-controls {
  display: grid;
  grid-template-columns: minmax(0, 180px) minmax(0, 1fr);
  gap: 12px;
  align-items: end;
}

.support-chat-control {
  display: grid;
  gap: 6px;
}

.support-chat-control span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.support-chat-select,
.support-chat-input {
  min-width: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.support-chat-select {
  min-height: 46px;
  padding: 0 14px;
}

.support-chat-meta {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.86rem;
}

.support-prompt-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.support-prompt-chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
}

.support-chat-messages {
  min-height: 0;
  overflow-y: auto;
  display: grid;
  align-content: start;
  gap: 12px;
  padding-right: 4px;
}

.support-chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.support-chat-input {
  min-height: 54px;
  padding: 0 16px;
}

.support-chat-send {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(200, 0, 28, 0.22);
  background: linear-gradient(135deg, #c8001c, #8f0014);
  color: #fff;
  box-shadow: 0 18px 34px rgba(200, 0, 28, 0.24);
}

.support-chat-send svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.support-chat-message {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.support-chat-message.is-user {
  background: rgba(200, 0, 28, 0.12);
  border-color: rgba(200, 0, 28, 0.18);
}

.support-chat-message strong {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.support-chat-message p {
  margin: 0;
  line-height: 1.6;
}

.support-chat-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.support-chat-route {
  display: grid;
  gap: 2px;
  padding: 9px 11px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.support-chat-route:hover {
  transform: translateY(-1px);
  border-color: rgba(200, 0, 28, 0.24);
  background: rgba(200, 0, 28, 0.1);
}

.support-chat-route strong {
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.support-chat-route span {
  color: var(--muted);
  font-size: 0.72rem;
}

.support-chat-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.support-chat-status-dots {
  display: inline-flex;
  gap: 5px;
}

.support-chat-status-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ff6f80;
  animation: supportPulseDot 900ms ease-in-out infinite;
}

.support-chat-status-dots span:nth-child(2) {
  animation-delay: 120ms;
}

.support-chat-status-dots span:nth-child(3) {
  animation-delay: 240ms;
}

.support-ai-core {
  position: relative;
  min-height: 160px;
  display: grid;
  place-items: center;
}

.support-ai-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.support-ai-ring-a {
  inset: 16px;
  border-top-color: rgba(200, 0, 28, 0.9);
  animation: supportOrbit 12s linear infinite;
}

.support-ai-ring-b {
  inset: 32px;
  border-right-color: rgba(87, 215, 255, 0.9);
  animation: supportOrbitReverse 10s linear infinite;
}

.support-ai-ring-c {
  inset: 52px;
  border-bottom-color: rgba(255, 255, 255, 0.45);
  animation: supportPulse 2.8s ease-in-out infinite;
}

.support-ai-core-mark {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(200, 0, 28, 0.22), rgba(200, 0, 28, 0.04)),
    rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.03), 0 0 40px rgba(200, 0, 28, 0.18);
}

.support-ai-core-dot {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7dffb0;
  box-shadow: 0 0 0 6px rgba(125, 255, 176, 0.08);
}

.support-ai-core-mark strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
}

.support-ai-copy {
  display: grid;
  align-content: center;
  gap: 10px;
}

.support-ai-copy h3,
.support-ai-copy p {
  margin: 0;
}

.support-ai-copy h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  line-height: 1.2;
}

.support-ai-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.support-capability-marquee {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.support-capability-track {
  display: inline-flex;
  gap: 10px;
  padding: 10px 12px;
  white-space: nowrap;
  min-width: max-content;
  animation: supportTicker 28s linear infinite;
}

.support-capability-track span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.support-popup-list {
  display: grid;
  gap: 10px;
  overflow-y: auto;
  padding-right: 4px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-chat-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(7, 9, 15, 0.9);
}

.support-chat-head {
  display: grid;
  gap: 6px;
}

.support-chat-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.support-chat-controls {
  display: grid;
  gap: 10px;
}

.support-chat-control {
  display: grid;
  gap: 6px;
}

.support-chat-control span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.support-chat-select {
  min-width: 0;
  padding: 11px 13px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(9, 11, 18, 0.88);
  color: var(--text);
  font: inherit;
}

.support-chat-meta {
  min-height: 46px;
  font-size: 0.86rem;
  color: var(--muted);
}

.support-prompt-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.support-prompt-chip {
  padding: 10px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-size: 0.85rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.support-prompt-chip:hover,
.support-prompt-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(200, 0, 28, 0.45);
  background: rgba(200, 0, 28, 0.1);
}

.support-chat-messages {
  display: grid;
  gap: 12px;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
}

.support-chat-message {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.support-chat-message strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-chat-message p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

.support-chat-message.is-user {
  background: rgba(200, 0, 28, 0.12);
  border-color: rgba(200, 0, 28, 0.2);
}

.support-chat-message.is-user strong,
.support-chat-message.is-bot strong {
  color: var(--text);
}

.support-chat-message.is-status {
  background: rgba(87, 215, 255, 0.06);
  border-color: rgba(87, 215, 255, 0.18);
}

.support-chat-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.support-chat-status-label {
  color: #d9f5ff;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-chat-status-dots {
  display: inline-flex;
  gap: 5px;
}

.support-chat-status-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff6f80;
  animation: supportPulseDot 900ms ease-in-out infinite;
}

.support-chat-status-dots span:nth-child(2) {
  animation-delay: 0.16s;
}

.support-chat-status-dots span:nth-child(3) {
  animation-delay: 0.32s;
}

.support-chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.support-chat-input {
  min-width: 0;
  min-height: 54px;
  padding: 0 16px;
}

.support-chat-send {
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(200, 0, 28, 0.32);
  border-radius: 16px;
  background: linear-gradient(135deg, #c8001c, #8f0014);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 26px rgba(200, 0, 28, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.support-chat-send:hover,
.support-chat-send:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(200, 0, 28, 0.32);
  filter: saturate(1.08);
}

.support-chat-send svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-popup-item {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 0;
  padding: 12px 12px 11px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.022);
}

.support-popup-item strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  line-height: 1.15;
}

.support-popup-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.support-popup-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.support-popup-links a {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.support-popup-links a:hover,
.support-popup-links a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(200, 0, 28, 0.42);
  background: rgba(200, 0, 28, 0.1);
}

@keyframes supportOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes supportOrbitReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes supportPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes supportTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes supportStatusPulse {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(-2px); opacity: 1; }
}

.helpdesk-hero-shell,
.helpdesk-queue-shell,
.helpdesk-playbook,
.helpdesk-timeline-shell,
.helpdesk-intake-copy,
.helpdesk-form {
  position: relative;
  overflow: hidden;
}

.helpdesk-hero-shell {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 28px;
  padding: 34px;
  background:
    radial-gradient(circle at top left, rgba(200, 0, 28, 0.18), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(255, 166, 0, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(14, 19, 26, 0.96), rgba(8, 11, 16, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.helpdesk-hero-copy,
.helpdesk-command-panel,
.helpdesk-right-rail,
.helpdesk-form {
  display: grid;
  gap: 18px;
}

.helpdesk-hero-copy .page-title,
.helpdesk-intake-copy h2 {
  margin: 0;
  max-width: 14ch;
}

.helpdesk-hero-actions,
.helpdesk-form-actions,
.helpdesk-filter-row,
.helpdesk-queue-meta,
.helpdesk-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.helpdesk-signal-row {
  margin-top: 6px;
}

.helpdesk-stat-card,
.helpdesk-lane-card,
.helpdesk-priority-card,
.helpdesk-ticket-preview-card {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.helpdesk-stat-card {
  min-width: 170px;
  flex: 1 1 160px;
  backdrop-filter: blur(12px);
}

.helpdesk-stat-card small,
.helpdesk-lane-card small,
.helpdesk-priority-card small,
.helpdesk-ticket-preview-card small,
.helpdesk-ticket-id {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--muted);
}

.helpdesk-stat-card strong,
.helpdesk-lane-card strong,
.helpdesk-priority-card strong,
.helpdesk-ticket-preview-card strong,
.helpdesk-queue-card h3,
.helpdesk-panel-head h2,
.helpdesk-playbook h3,
.helpdesk-timeline-shell h3,
.helpdesk-form-head h3 {
  font-family: "Space Grotesk", sans-serif;
}

.helpdesk-stat-card strong {
  font-size: 1.6rem;
}

.helpdesk-stat-card span,
.helpdesk-lane-card span,
.helpdesk-priority-card span,
.helpdesk-ticket-preview-card span,
.helpdesk-command-top p,
.helpdesk-queue-card p,
.helpdesk-timeline-step p,
.helpdesk-form-head p {
  color: var(--muted);
  line-height: 1.65;
}

.helpdesk-command-panel {
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.helpdesk-command-top strong {
  font-size: 1.25rem;
  color: #fff4f5;
}

.helpdesk-lane-stack,
.helpdesk-priority-board,
.helpdesk-timeline,
.helpdesk-right-rail {
  display: grid;
  gap: 14px;
}

.helpdesk-app-grid,
.helpdesk-intake-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.helpdesk-queue-shell,
.helpdesk-playbook,
.helpdesk-timeline-shell,
.helpdesk-intake-copy,
.helpdesk-form {
  padding: 28px;
}

.helpdesk-panel-head {
  display: grid;
  gap: 16px;
}

.helpdesk-panel-head h2,
.helpdesk-playbook h3,
.helpdesk-timeline-shell h3,
.helpdesk-form-head h3 {
  margin: 0;
}

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

.helpdesk-queue-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  min-height: 220px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(7, 10, 14, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.helpdesk-queue-card.urgency-critical,
.helpdesk-ticket-preview-card.urgency-critical {
  border-color: rgba(255, 87, 87, 0.42);
  box-shadow: 0 20px 44px rgba(255, 87, 87, 0.14);
}

.helpdesk-queue-card.urgency-high,
.helpdesk-ticket-preview-card.urgency-high {
  border-color: rgba(255, 166, 0, 0.36);
}

.helpdesk-queue-card.urgency-priority,
.helpdesk-ticket-preview-card.urgency-priority {
  border-color: rgba(94, 163, 255, 0.34);
}

.helpdesk-queue-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.helpdesk-queue-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.helpdesk-queue-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.helpdesk-queue-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
}

.helpdesk-timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.helpdesk-timeline-index {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #c8001c, #7b0012);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.helpdesk-timeline-step strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Space Grotesk", sans-serif;
}

.helpdesk-form-head,
.helpdesk-intake-copy {
  display: grid;
  gap: 14px;
}

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

.helpdesk-form-grid .helpdesk-form-span {
  grid-column: 1 / -1;
}

.helpdesk-priority-board {
  margin-top: 8px;
}

.helpdesk-priority-card {
  background:
    linear-gradient(150deg, rgba(200, 0, 28, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
}

.helpdesk-ticket-preview {
  min-height: 96px;
}

.admin-grid-helpdesk {
  grid-template-columns: 1fr;
}

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

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

@media (max-width: 1100px) {
  .helpdesk-hero-shell,
  .helpdesk-app-grid,
  .helpdesk-intake-grid {
    grid-template-columns: 1fr;
  }

  .helpdesk-hero-copy .page-title,
  .helpdesk-intake-copy h2 {
    max-width: none;
  }

  .contact-hero-shell {
    grid-template-columns: 1fr;
  }

  .contact-hero-copy .page-title,
  .contact-hero-copy p {
    max-width: none;
  }

  .contact-portrait-panel {
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
  }

  .portfolio-hero-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .portfolio-hero-shell::before {
    inset: 26% -8% auto 18%;
    height: 54%;
  }

  .portfolio-hero-copy .page-title,
  .portfolio-hero-copy p {
    max-width: none;
  }

  .portfolio-hero-visual {
    padding-inline: 8px;
  }

  .portfolio-hero-note-top {
    left: 8px;
  }

  .portfolio-hero-note-bottom {
    right: 8px;
  }

  .main-nav,
  .nav-actions {
    display: none;
  }

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

  .nav-shell.menu-open .main-nav,
  .nav-shell.menu-open .nav-actions {
    display: flex;
    width: 100%;
  }

  .nav-shell.menu-open {
    align-items: flex-start;
  }

  .nav-shell.menu-open .main-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-shell.menu-open .nav-actions {
    justify-content: flex-start;
  }

  .hero-grid,
  .split-section,
  .quote-layout,
  .upload-layout,
  .trust-strip,
  .cta-panel,
  .footer-grid,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .bundle-grid,
  .portfolio-grid,
  .shop-grid,
  .search-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-logo-card {
    min-width: 150px;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .shop-category-priority,
  .category-columns {
    grid-template-columns: 1fr;
  }

  .helpdesk-queue-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .admin-summary {
    grid-template-columns: 1fr;
  }

  .support-interface-grid {
    grid-template-columns: 1fr;
  }

  .support-popup {
    width: min(980px, calc(100vw - 24px));
    height: calc(100vh - 24px);
    max-height: calc(100vh - 24px);
    padding: 20px;
  }

  .support-bot-visual-panel,
  .support-interface-main {
    order: initial;
  }

  .support-ai-hero-poster {
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
    align-items: center;
  }

  .support-action-rail {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .login-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cookie-banner-actions {
    justify-content: flex-start;
  }

  .hero-stage {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

@media (max-height: 860px) {
  .support-popup {
    height: calc(100vh - 20px);
    max-height: calc(100vh - 20px);
    padding: 18px;
    gap: 16px;
  }

  .support-interface-grid {
    gap: 16px;
  }

  .support-ai-hero {
    gap: 14px;
    padding: 14px;
  }

  .support-chat-panel {
    gap: 12px;
    padding: 14px;
  }

  .support-bot-image-shell {
    min-height: clamp(180px, 28vh, 280px);
  }

  .support-bot-image {
    width: min(100%, 300px);
  }

  .support-action-card {
    min-height: 42px;
    padding: 8px 10px;
  }
}

@media (max-width: 720px) {
  .helpdesk-hero-shell,
  .helpdesk-queue-shell,
  .helpdesk-playbook,
  .helpdesk-timeline-shell,
  .helpdesk-intake-copy,
  .helpdesk-form {
    padding: 22px;
  }

  .helpdesk-form-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .hero::before {
    opacity: 0.24;
    background-position: 68% center;
  }

  .hero::after {
    inset: auto -28% -20% 32%;
    height: 280px;
  }

  .topbar {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .contact-hero-shell {
    padding: 24px;
    gap: 24px;
  }

  .contact-channel-grid {
    grid-template-columns: 1fr;
  }

  .contact-portrait-frame {
    transform: none;
    padding: 10px;
    border-radius: 24px;
  }

  .contact-portrait-frame img {
    border-radius: 18px;
  }

  .contact-portrait-note {
    position: static;
  }

  .contact-portrait-note-bottom {
    margin-top: -6px;
  }

  .portfolio-hero-frame {
    padding: 10px;
    border-radius: 24px;
    transform: none;
  }

  .portfolio-hero-frame img {
    border-radius: 18px;
    aspect-ratio: 16 / 9;
  }

  .portfolio-hero-note {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .portfolio-hero-note-top {
    margin-bottom: 12px;
  }

  .portfolio-hero-pills {
    justify-content: center;
  }

  .search-box {
    grid-template-columns: 1fr;
  }

  .floating-support {
    right: 14px;
    bottom: 82px;
  }

  .support-launcher {
    padding-inline: 14px;
  }

  .support-launcher span {
    display: none;
  }

  .support-popup {
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    padding: 16px;
    border-radius: 0;
    top: 0;
  }

  .support-popup-headbar {
    align-items: start;
  }

  .support-interface-grid {
    gap: 16px;
  }

  .support-ai-hero-poster {
    grid-template-columns: 1fr;
  }

  .support-bot-image-shell {
    min-height: 220px;
  }

  .support-bot-image {
    width: min(100%, 250px);
  }

  .support-chat-controls,
  .support-chat-form {
    grid-template-columns: 1fr;
  }

  .support-action-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .support-action-card {
    min-height: 44px;
    padding: 9px 8px;
  }

  .support-action-card strong {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }

  .service-grid,
  .bundle-grid,
  .portfolio-grid,
  .shop-grid,
  .search-results-grid {
    grid-template-columns: 1fr;
  }

  .platform-logo-card {
    min-width: 132px;
  }

  .testimonial-shell {
    grid-template-columns: 1fr;
  }

.testimonial-track {
  min-height: 300px;
}

.footer-grid {
  gap: 18px;
}

  .hero-morph {
    min-height: 3.4ch;
    max-width: 11ch;
    width: auto;
  }

  .hero-morph-line {
    flex-wrap: wrap;
    gap: 0.18em;
  }

  .hero-copy .hero-subheadline {
    letter-spacing: 0.05em;
  }
}

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

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

@keyframes supportPulseDot {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

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

@keyframes hero-caret-blink {
  0%,
  45% {
    opacity: 0;
  }

  46%,
  100% {
    opacity: 1;
  }
}
