/* Lumina Precision — mockup-aligned */

:root {
  --blue: #2b6cff;
  --blue-deep: #1e4fc4;
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-50: #f6f6f8;
  --gray-100: #ececf0;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gold: #c9a227;
  --gold-ring: #d4af37;
  --script-gold: #fde68a;
  --font-sans: "DM Sans", system-ui, sans-serif;
  /* Nav: séria e legível, com um toque mais “viva” */
  --font-nav: "Plus Jakarta Sans", "DM Sans", system-ui, sans-serif;
  --font-script: "Dancing Script", cursive;
  --container: min(1280px, 100% - 48px);
  --radius-card: 14px;
  --radius-pill: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

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

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

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

/* Barra full-bleed: logo a ~3.5 cm da borda esquerda do ecrã (safe area em mobile) */
.site-header .container.header-inner {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline-start: max(3.5cm, env(safe-area-inset-left, 0px));
  padding-inline-end: max(3.5cm, env(safe-area-inset-right, 0px));
}

@media (max-width: 1200px) {
  .site-header .container.header-inner {
    padding-inline-start: max(clamp(0.9rem, 2.8vw, 1.8rem), env(safe-area-inset-left, 0px));
    padding-inline-end: max(clamp(0.9rem, 2.8vw, 1.8rem), env(safe-area-inset-right, 0px));
  }
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  min-height: 102px;
  padding-block: 0.65rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-self: start;
  flex-shrink: 0;
  min-width: 0;
}

.logo-img {
  display: block;
  height: clamp(60px, 6.6vw, 78px);
  width: auto;
  max-width: min(560px, 76vw);
  object-fit: contain;
  object-position: left center;
}

.logo-footer .logo-img {
  height: clamp(48px, 5.5vw, 62px);
  max-width: min(440px, 87vw);
}

.nav-main {
  display: flex;
  justify-content: center;
  justify-self: center;
  width: max-content;
  max-width: 100%;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 1.55rem);
}

.nav-link {
  font-family: var(--font-nav);
  font-size: clamp(0.72rem, 0.95vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0;
  border: none;
  background: none;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--blue);
}

.header-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 0.35rem;
  min-width: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-pill);
  transition: transform 0.15s, background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-pill {
  border-radius: var(--radius-pill);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: #222;
}

.btn-outline {
  background: var(--white);
  color: var(--black);
  border: 1px solid #d1d5db;
}

.btn-outline:hover {
  border-color: var(--black);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}

.btn-white:hover {
  background: #f3f4f6;
}

.arrow {
  font-size: 1em;
}

.icon-btn {
  padding: 0.45rem;
  color: var(--black);
  border-radius: 8px;
}

.icon-btn:hover {
  background: var(--gray-50);
}

.cart-btn {
  position: relative;
  overflow: visible;
}

.cart-btn svg {
  display: block;
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  transform: translate(25%, -25%);
  pointer-events: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  position: relative;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--black);
  transition: transform 0.2s;
}

.menu-toggle::before {
  top: 14px;
  box-shadow: 0 7px 0 var(--black);
}

.menu-toggle::after {
  bottom: 14px;
}

body.nav-open .menu-toggle::before {
  top: 21px;
  box-shadow: none;
  transform: rotate(45deg);
}

body.nav-open .menu-toggle::after {
  bottom: 21px;
  transform: rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

/* —— Hero: foto de fundo nítida (sem véu) + texto deslocado para a direita —— */
.hero {
  --hero-bg: url("img/home-pic-2.PNG");
  position: relative;
  isolation: isolate;
  min-height: min(78vh, 700px);
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3.25rem, 8vw, 5.5rem);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #1a1a1a;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  padding-left: clamp(0.5rem, 2vw, 1.5rem);
  box-sizing: border-box;
}

.hero-copy {
  max-width: min(38rem, 100%);
  margin-inline: 0;
  margin-left: clamp(2rem, 8vw, 6.5rem);
  margin-right: auto;
  text-align: left;
}

/* Legibilidade sobre a foto, sem véu em cima da imagem */
.hero-copy .eyebrow,
.hero-copy .hero-title,
.hero-copy .hero-sub {
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.8), 0 1px 2px rgba(255, 255, 255, 0.55);
}

.eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 1.1rem;
}

.hero-title {
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.script {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 600;
}

.script-blue {
  color: var(--blue);
}

.script-gold {
  color: var(--script-gold);
}

.hero-sub {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-500);
  max-width: 48ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  justify-content: flex-start;
}

.play-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--black);
  margin-right: 0.35rem;
}

.play-wrap svg {
  margin-left: 2px;
}

/* —— Feature ribbon (barra cinza — efeito “flutuante” + espaço em baixo) —— */
.feature-ribbon {
  background: #f4f4f6;
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  /* Padding estável: o “enchimento” vem dos gaps da grelha, não da caixa maior */
  padding: clamp(1.35rem, 3.2vw, 2.1rem) clamp(0.95rem, 2.2vw, 1.75rem);
  margin-inline: clamp(0.75rem, 3vw, 2rem);
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  margin-top: 0.35rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  max-width: none;
  margin-inline: 0;
  box-sizing: border-box;
  /* Grelha de ponta a ponta dentro da faixa cinza (sem “X” vazios laterais) */
  gap: clamp(1.1rem, 2.5vw, 1.85rem) clamp(0.5rem, 1.2vw, 1rem);
  align-items: center;
}

.feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.55rem, 1.1vw, 0.85rem);
  min-width: 0;
  text-align: left;
  padding: 0.35rem 0.1rem;
}

.feature-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.feature-icon svg {
  width: clamp(30px, 3.8vw, 42px);
  height: clamp(30px, 3.8vw, 42px);
  stroke-width: 1.35;
}

.feature-text {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.feature h3 {
  font-size: clamp(0.65rem, 0.95vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--black);
  text-align: left;
}

.feature p {
  font-size: clamp(0.6rem, 0.85vw, 0.72rem);
  color: var(--gray-500);
  line-height: 1.52;
  text-align: left;
}

/* —— Dark sections —— */
.section-dark {
  background: var(--black);
  color: var(--white);
  padding: 4rem 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.section-title {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.text-blue {
  color: var(--blue);
}

.link-arrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.link-arrow:hover {
  text-decoration: underline;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.cat-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #111;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.cat-card-img {
  flex: 1;
  min-height: 0;
}

.cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}

.cat-card-body {
  position: relative;
  padding: 1.35rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, transparent 0%, #0a0a0a 20%);
  margin-top: -3rem;
}

.cat-card-body h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 0.4rem;
}

.cat-card-body p {
  font-size: 0.78rem;
  color: var(--gray-400);
  max-width: 28ch;
  line-height: 1.45;
}

.cat-card-go {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.cat-card:hover .cat-card-go {
  background: var(--blue);
}

/* “A wide range of creations” — 6 cartões retrato (imagem ~70% / texto ~30%) */
.section-dark.creations {
  padding: 2.75rem 0 3rem;
}

.creations > .container {
  width: min(1340px, 100% - 40px);
}

.creations .section-head {
  margin-bottom: 1.5rem;
}

.creations .section-title {
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
}

.creations .card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.35rem, 0.85vw, 0.52rem);
  align-items: start;
}

/* Retrato mais alto (~3:5): cartões maiores na vertical */
.creations .cat-card {
  display: grid;
  grid-template-rows: 8fr 3fr;
  width: 100%;
  aspect-ratio: 3 / 5;
  min-height: 0;
  align-self: start;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #111;
}

.creations .cat-card-img {
  min-height: 0;
  overflow: hidden;
}

.creations .cat-card-img img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.creations .cat-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto minmax(0, 1fr);
  column-gap: 0.45rem;
  row-gap: 0.2rem;
  align-items: start;
  margin-top: 0;
  padding: 0.75rem 0.6rem 0.75rem;
  min-height: 0;
  background: #0c0c0c;
}

.creations .cat-card-body h3 {
  grid-column: 1;
  grid-row: 1;
  font-size: clamp(0.56rem, 0.82vw, 0.74rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  margin-bottom: 0;
  color: var(--white);
  min-width: 0;
}

.creations .cat-card-body p {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  font-size: clamp(0.62rem, 0.88vw, 0.78rem);
  line-height: 1.42;
  color: var(--gray-400);
  max-width: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-width: 0;
}

.creations .cat-card-go {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  justify-self: end;
  position: static;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.creations .cat-card-go svg {
  width: 14px;
  height: 14px;
}

/* —— No limits —— */
.no-limits {
  padding-top: 0;
  border-top: 1px solid #1f1f1f;
}

/* Mesma largura útil que “A wide range of creations” (6 caixas) */
.no-limits .container.no-limits-inner {
  width: min(1340px, 100% - 40px);
  margin-inline: auto;
  padding-inline: 0;
  box-sizing: border-box;
}

.no-limits-inner {
  display: grid;
  grid-template-columns: minmax(0, 252px) minmax(0, 1fr);
  gap: 1rem 1rem;
  align-items: center;
}

.no-limits-copy {
  align-self: center;
}

.no-limits-photo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  background: var(--black);
  border-radius: 0;
  overflow: visible;
}

/* Largura = coluna direita (alinha à direita com o 6.º cartão); sem max-height apertado */
.no-limits-photo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: right center;
}

.no-limits-title {
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.no-limits-sub {
  font-size: 0.88rem;
  color: var(--gray-400);
  margin-bottom: 1.25rem;
  max-width: 32ch;
}

/* —— Process —— (layout 3 colunas: rótulo+título | passos | imagem) */
.process {
  background: var(--white);
  padding-block: 0;
}

.process .container.process-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: max(clamp(1.75rem, 6vw, 4.75rem), env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

.process-inner {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr) minmax(175px, 290px);
  gap: 1.2rem 0.75rem;
  align-items: center;
}

.process-intro {
  min-width: 0;
  text-align: left;
  padding-left: 2cm;
  box-sizing: border-box;
}

.process-eyebrow {
  margin: 0 0 0.55rem;
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  text-align: left;
}

.process-title {
  margin: 0;
  font-size: clamp(1.6rem, 3.5vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: left;
  line-height: 1.12;
  color: var(--black);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.4em;
  row-gap: 0.2em;
}

.process-title .script {
  font-size: 1.05em;
}

.process-title-line {
  display: inline;
  text-align: left;
  width: auto;
}

.process-title-line:first-of-type {
  white-space: nowrap;
}

.process-title-nowrap {
  white-space: nowrap;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0;
  min-width: 0;
  width: max-content;
  max-width: 100%;
  margin: 0;
  margin-left: auto;
  padding: 0;
  box-sizing: border-box;
}

.step {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 8.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  padding: 0 0.14rem;
  position: relative;
}

.step-stack {
  position: relative;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  margin: 0 auto 0.42rem;
}

.step-num {
  position: absolute;
  top: -6px;
  left: -6px;
  z-index: 2;
  width: 23px;
  height: 23px;
  margin: 0;
  border-radius: 50%;
  border: none;
  background: var(--blue);
  color: var(--white);
  font-size: 0.64rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.process-steps .step:last-of-type .step-num {
  background: #22c55e;
}

.step-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #dfe3e8;
  background: #f1f2f5;
  color: var(--black);
  margin: 0;
}

.step-icon svg {
  width: 25px;
  height: 25px;
}

.step h3 {
  width: 100%;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.32rem;
  line-height: 1.28;
}

.step p {
  width: 100%;
  font-size: 0.72rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.step-line {
  flex: 0 0 26px;
  height: 2px;
  margin-top: 31px;
  background: repeating-linear-gradient(
    90deg,
    #d8dce3 0,
    #d8dce3 4px,
    transparent 4px,
    transparent 7px
  );
  align-self: flex-start;
}

.process-visual {
  width: 100%;
  max-width: 290px;
  margin: 0;
  padding: 0;
  justify-self: end;
  border-radius: 0;
  overflow: visible;
  border: none;
  box-shadow: none;
  background: var(--white);
}

.process-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* —— Gallery —— */
.inspired {
  background: var(--gray-50);
  padding: 3.5rem 0 4rem;
}

.section-head-light {
  align-items: center;
}

.section-title-light {
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: none;
  white-space: nowrap;
}

.link-arrow-dark {
  color: var(--blue);
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.65rem;
}

.g-item {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.g-item:hover img {
  transform: scale(1.06);
}

/* —— CTA banner —— */
.cta-banner {
  position: relative;
  padding: 3.5rem 0 3rem;
  background: linear-gradient(
    105deg,
    #1e3a8a 0%,
    #5b21b6 45%,
    #ea580c 100%
  );
  overflow: hidden;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-copy {
  flex: 1;
  min-width: min(100%, 420px);
}

.cta-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
  max-width: 36ch;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.cta-link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-products {
  position: relative;
  width: min(100%, 380px);
  height: 260px;
  flex-shrink: 0;
}

.cta-img {
  position: absolute;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}

.cta-img-1 {
  width: 42%;
  left: 0;
  bottom: 0;
  z-index: 1;
  transform: rotate(-6deg);
}

.cta-img-2 {
  width: 44%;
  left: 28%;
  bottom: 12%;
  z-index: 2;
  transform: rotate(4deg);
}

.cta-img-3 {
  width: 40%;
  right: 0;
  bottom: 0;
  z-index: 3;
  transform: rotate(8deg);
}

/* —— Footer —— */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) 1.35fr;
  gap: 2rem 1.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #222;
}

.footer-brand .logo-footer {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--gray-400);
  max-width: 22ch;
}

.footer-col h4 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gray-400);
  margin-bottom: 1.1rem;
}

.footer-col ul li {
  margin-bottom: 0.55rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: #e5e7eb;
}

.footer-col a:hover {
  color: var(--blue);
}

.newsletter {
  display: flex;
  margin-bottom: 1.25rem;
  border: 1px solid #333;
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: #111;
}

.newsletter input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--white);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  outline: none;
}

.newsletter input::placeholder {
  color: #6b7280;
}

.newsletter button {
  padding: 0 1rem;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
}

.socials {
  display: flex;
  gap: 0.85rem;
}

.socials a {
  color: var(--gray-400);
}

.socials a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--gray-500);
  text-align: center;
}

.legal-links {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}

.legal-links a:hover {
  color: var(--white);
}

/* —— About page —— */
.nav-link-active {
  color: var(--blue);
}

.about-hero {
  --hero-bg: url("img/about-us2.PNG");
  min-height: min(70vh, 620px);
}

.about-company {
  background: var(--white);
  padding: 3rem 0;
}

.about-company-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1rem, 2.2vw, 2.25rem);
  align-items: center;
}

.about-company-copy p {
  color: var(--gray-500);
  max-width: 62ch;
}

.about-company-copy p + p {
  margin-top: 0.8rem;
}

.about-company-media img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.about-pillars {
  background: var(--white);
  padding: 0 0 3rem;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-pillar-card {
  background: #f6f8fc;
  border: 1px solid #e6ebf3;
  border-radius: 14px;
  padding: 1.2rem;
}

.about-pillar-card h3 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.about-pillar-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.55;
}

.about-story {
  padding: 3.25rem 0 3rem;
}

.about-story-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(1rem, 2.6vw, 2.4rem);
  align-items: start;
}

.about-title {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.about-story-copy p {
  color: var(--gray-500);
  max-width: 58ch;
}

.about-story-copy-dark p {
  color: #c7ccd6;
}

.about-story-copy p + p {
  margin-top: 0.85rem;
}

.about-story-panel {
  background: #f5f6fa;
  border: 1px solid #e6e9f0;
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
}

.about-story-panel h3 {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.about-story-panel ul {
  list-style: disc;
  padding-left: 1.1rem;
  color: var(--gray-500);
}

.about-story-panel li + li {
  margin-top: 0.5rem;
}

.about-values {
  background: var(--white);
  padding: 3rem 0 3.25rem;
}

.about-points-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-point-card {
  border: 1px solid #e5e9f0;
  background: #f8f9fc;
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
}

.about-point-card h3 {
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
}

.about-point-card p {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--gray-500);
}

/* —— Dedicated Gallery page —— */
.gallery-hero {
  position: relative;
  padding: clamp(3.1rem, 7vw, 5rem) 0;
  background: linear-gradient(112deg, rgba(10, 10, 10, 0.78), rgba(10, 10, 10, 0.45)), url("img/gallery-pic.PNG") center / cover no-repeat;
}

.gallery-hero-inner {
  max-width: 720px;
  color: var(--white);
}

.gallery-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.gallery-hero p {
  margin-top: 0.95rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 46ch;
}

.gallery-filters {
  background: var(--white);
  border-bottom: 1px solid #eceff5;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0.95rem 0;
}

.filter-chip {
  border: 1px solid #d7dce7;
  background: #f7f8fb;
  color: #40485b;
  border-radius: 999px;
  padding: 0.42rem 0.82rem;
  font-size: 0.74rem;
  font-weight: 600;
}

.filter-chip.active {
  background: #0f1520;
  border-color: #0f1520;
  color: var(--white);
}

.gallery-featured {
  background: var(--white);
  padding: 1.6rem 0 1rem;
}

.featured-card {
  background: #f6f8fc;
  border: 1px solid #e5e9f2;
  border-radius: 16px;
  overflow: hidden;
}

.featured-card img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.featured-copy {
  padding: 1.2rem 1.25rem 1.4rem;
}

.featured-copy h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  line-height: 1.18;
}

.featured-copy p {
  margin-top: 0.65rem;
  color: var(--gray-500);
  max-width: 58ch;
}

.gallery-showcase {
  background: var(--white);
  padding: 1rem 0 3rem;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 170px;
  gap: 0.75rem;
}

.mosaic-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(10, 20, 40, 0.08);
  position: relative;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

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

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mosaic-item:hover img {
  transform: scale(1.05);
}

.mosaic-item.is-hidden {
  display: none;
}

.mosaic-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0.8rem 0.78rem;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 11, 19, 0.75) 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mosaic-meta strong {
  font-size: 0.78rem;
  line-height: 1.2;
}

.mosaic-meta em {
  font-size: 0.66rem;
  font-style: normal;
  opacity: 0.8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mosaic-item:hover .mosaic-meta {
  opacity: 1;
  transform: translateY(0);
}

.mosaic-item.wide {
  grid-column: span 2;
}

.mosaic-item.tall {
  grid-row: span 2;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 18, 0.84);
  backdrop-filter: blur(2px);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 120;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  width: min(92vw, 1080px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-caption {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1;
}

/* —— Dedicated Services page —— */
.js-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .services-bento .js-reveal:nth-child(1) {
    transition-delay: 0.04s;
  }

  .services-bento .js-reveal:nth-child(2) {
    transition-delay: 0.1s;
  }

  .services-bento .js-reveal:nth-child(3) {
    transition-delay: 0.16s;
  }

  .services-bento .js-reveal:nth-child(4) {
    transition-delay: 0.08s;
  }

  .services-bento .js-reveal:nth-child(5) {
    transition-delay: 0.14s;
  }

  .services-bento .js-reveal:nth-child(6) {
    transition-delay: 0.2s;
  }
}

.services-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.1rem, 7vw, 5.4rem) 0;
  background: linear-gradient(118deg, rgba(6, 10, 20, 0.92), rgba(18, 32, 62, 0.72)), url("img/Services.PNG") center / cover no-repeat;
  color: var(--white);
}

.services-hero-glow {
  pointer-events: none;
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background: radial-gradient(ellipse 55% 45% at 75% 30%, rgba(43, 108, 255, 0.35), transparent 72%);
  opacity: 0.85;
}

.services-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, min(36vw, 400px));
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}

.services-hero-inner {
  max-width: 38rem;
}

.services-hero-eyebrow {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1rem;
}

.services-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--white);
}

.services-hero .script-blue {
  color: #9ec5ff;
}

.services-hero-lead {
  margin-top: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 48ch;
  font-size: clamp(0.94rem, 1.65vw, 1.06rem);
  line-height: 1.62;
}

.services-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.65rem;
}

.services-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.services-hero-tags li {
  font-family: var(--font-nav);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.38rem 0.65rem;
  background: rgba(255, 255, 255, 0.06);
}

.services-hero-visual {
  justify-self: end;
  width: 100%;
  max-width: 400px;
}

.services-hero-stack {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 220px;
}

.services-hero-photo {
  position: absolute;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.services-hero-photo--back {
  width: 78%;
  height: 72%;
  left: 0;
  top: 8%;
  z-index: 1;
  transform: rotate(-4deg);
}

.services-hero-photo--front {
  width: 62%;
  height: 58%;
  right: 0;
  bottom: 0;
  z-index: 2;
  transform: rotate(5deg);
}

.services-stats {
  background: #070b12;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.services-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: clamp(1.35rem, 3vw, 1.85rem) 0;
}

.services-stat {
  padding: 0.5rem clamp(0.75rem, 2vw, 1.25rem);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.services-stat:last-child {
  border-right: none;
}

.services-stat-value {
  display: block;
  font-family: var(--font-nav);
  font-size: clamp(1.35rem, 2.8vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #e8eefc;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .services-stat-value {
    background: linear-gradient(135deg, #fff 28%, #9dbaf9 92%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.services-stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  max-width: 16ch;
  margin-inline: auto;
}

.services-trust {
  padding: clamp(2.25rem, 5vw, 3.25rem) 0;
  background: linear-gradient(180deg, var(--white) 0%, #f4f7fc 100%);
  border-bottom: 1px solid #e8ecf4;
}

.services-trust-kicker {
  font-family: var(--font-nav);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 0.5rem;
}

.services-trust-intro {
  margin: 0 0 clamp(1.35rem, 3vw, 2rem);
  max-width: 52ch;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111827;
}

.services-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.services-trust-card {
  margin: 0;
  padding: clamp(1.1rem, 2.2vw, 1.35rem);
  border-radius: 16px;
  border: 1px solid #e5e9f2;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(15, 35, 80, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.services-trust-card:hover {
  border-color: rgba(43, 108, 255, 0.35);
  box-shadow: 0 16px 40px rgba(15, 35, 80, 0.1);
}

.services-trust-card blockquote {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.58;
  color: #374151;
  font-style: italic;
}

.services-trust-card figcaption {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid #eef2f8;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.services-trust-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--black);
}

.services-trust-card figcaption span {
  font-size: 0.72rem;
  color: var(--gray-500);
}

.services-overview {
  padding: clamp(2.75rem, 6vw, 4rem) 0 clamp(2rem, 5vw, 3rem);
  background: var(--white);
}

.services-section-head {
  max-width: 640px;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.services-section-head--compact {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.services-section-title {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 0.35rem;
}

.services-section-sub {
  margin-top: 0.75rem;
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 52ch;
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 1101px) {
  .services-bento {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .services-bento .service-tile--accent {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
    min-height: 0;
  }

  .services-bento #three-d {
    grid-column: 6 / 13;
    grid-row: 1;
  }

  .services-bento #laser {
    grid-column: 6 / 10;
    grid-row: 2;
  }

  .services-bento #kits {
    grid-column: 10 / 13;
    grid-row: 2;
  }

  .services-bento #dfm {
    grid-column: 1 / 6;
    grid-row: 3;
  }

  .services-bento #rush {
    grid-column: 6 / 13;
    grid-row: 3;
  }
}

.service-tile {
  border: 1px solid #e5e9f2;
  border-radius: 16px;
  padding: clamp(1.15rem, 2.5vw, 1.45rem);
  background: #fafbfd;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-tile:hover {
  border-color: rgba(43, 108, 255, 0.35);
  box-shadow: 0 14px 36px rgba(15, 35, 80, 0.08);
  transform: translateY(-2px);
}

.service-tile--accent {
  background: linear-gradient(145deg, rgba(43, 108, 255, 0.09), rgba(43, 108, 255, 0.02));
  border-color: rgba(43, 108, 255, 0.28);
}

.service-tile-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid #e8ecf4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 1rem;
}

.service-tile--accent .service-tile-icon {
  background: rgba(255, 255, 255, 0.92);
}

.service-tile h3 {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.45rem;
}

.service-tile > p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--gray-500);
  flex: 1;
}

.service-tile-list {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.service-tile-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.78rem;
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 0.35rem;
}

.service-tile-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.75;
}

.service-tile-link {
  margin-top: 1rem;
  font-family: var(--font-nav);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  align-self: flex-start;
}

.service-tile-link:hover {
  color: var(--blue-deep);
}

.service-spot-back {
  display: inline-flex;
  margin-top: 1.1rem;
  font-family: var(--font-nav);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.service-spot-back:hover {
  color: var(--blue-deep);
}

.services-spotlights {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  background: linear-gradient(180deg, #f8fafc 0%, var(--white) 32%);
}

.service-spot {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  border-top: 1px solid #e8ecf4;
}

.service-spot:first-of-type {
  border-top: none;
  padding-top: 0;
}

.service-spot--reverse .service-spot-visual {
  order: 2;
}

.service-spot--reverse .service-spot-copy {
  order: 1;
}

.service-spot-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(15, 25, 45, 0.12);
  border: 1px solid #e5e9f2;
}

.service-spot-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(15, 23, 42, 0.18) 100%);
  pointer-events: none;
  opacity: 0.85;
}

.service-spot-visual img {
  width: 100%;
  height: min(420px, 52vw);
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-spot:hover .service-spot-visual img {
  transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .service-spot-visual img {
    transition: none;
  }

  .service-spot:hover .service-spot-visual img {
    transform: none;
  }
}

.service-spot-copy .eyebrow {
  margin-bottom: 0.65rem;
}

.service-spot-copy h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.service-spot-copy > p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--gray-500);
}

.service-spot-bullets {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.service-spot-bullets li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #374151;
  margin-bottom: 0.4rem;
}

.service-spot-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--blue);
}

.services-deliver {
  position: relative;
  background-color: #0f1520;
  background-image: radial-gradient(ellipse 70% 55% at 78% 12%, rgba(43, 108, 255, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 42%);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}

.services-deliver-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.services-deliver-intro .eyebrow {
  color: #93c5fd;
}

.services-deliver-intro h2 {
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  font-weight: 700;
  line-height: 1.15;
  margin-top: 0.35rem;
}

.services-deliver-lead {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 40ch;
}

.services-deliver-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-deliver-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.services-deliver-check {
  flex-shrink: 0;
  color: #86efac;
  font-size: 0.85rem;
  line-height: 1.4;
}

.services-process {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
  background: var(--white);
}

.services-process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.services-process-step {
  position: relative;
  border: 1px solid #e8ecf4;
  border-radius: 14px;
  padding: 1.15rem 1.1rem 1.2rem;
  background: #fafbfd;
}

.services-process-num {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--blue);
}

.services-process-step h3 {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.services-process-step p {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--gray-500);
}

@media (min-width: 961px) {
  .services-process-track {
    position: relative;
    padding-top: 0.35rem;
  }

  .services-process-track::before {
    content: "";
    position: absolute;
    top: 2.55rem;
    left: 6%;
    right: 6%;
    height: 2px;
    background: linear-gradient(90deg, rgba(43, 108, 255, 0.15), var(--blue), rgba(43, 108, 255, 0.15));
    border-radius: 2px;
    z-index: 0;
    pointer-events: none;
  }

  .services-process-step {
    position: relative;
    z-index: 1;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
  }
}

.services-faq {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

.services-faq-inner {
  max-width: 760px;
  margin-inline: auto;
}

.services-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.services-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: var(--white);
  padding: 0;
  overflow: hidden;
}

.services-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.services-faq-item summary:focus {
  outline: none;
}

.services-faq-item summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}

.services-faq-item[open] {
  border-color: rgba(43, 108, 255, 0.35);
  box-shadow: 0 8px 28px rgba(43, 108, 255, 0.08);
}

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

.services-faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--blue);
  font-size: 1.1rem;
  line-height: 1;
}

.services-faq-item[open] summary::after {
  content: "–";
}

.services-faq-item p {
  padding: 0 1.15rem 1.05rem;
  margin: -0.25rem 0 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--gray-500);
}

/* —— Responsive —— */
@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem 1.35rem;
  }

  .gallery-row {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .creations .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
  }

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

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

  .gallery-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 160px;
  }

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

  .services-bento .service-tile--accent,
  .services-bento #three-d,
  .services-bento #laser,
  .services-bento #kits,
  .services-bento #dfm,
  .services-bento #rush {
    grid-column: auto;
    grid-row: auto;
  }

  .services-hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .services-hero-inner {
    margin-inline: auto;
  }

  .services-hero-actions {
    justify-content: center;
  }

  .services-hero-tags {
    justify-content: center;
  }

  .services-hero-visual {
    justify-self: center;
    max-width: 360px;
  }

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

  .service-spot,
  .service-spot.service-spot--reverse {
    grid-template-columns: 1fr;
  }

  .service-spot--reverse .service-spot-visual,
  .service-spot--reverse .service-spot-copy {
    order: unset;
  }

  .services-deliver-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 960px) {
  .site-header .container.header-inner {
    padding-inline-start: max(clamp(0.75rem, 3.6vw, 1.05rem), env(safe-area-inset-left, 0px));
    padding-inline-end: max(clamp(0.75rem, 3.6vw, 1.05rem), env(safe-area-inset-right, 0px));
  }

  .header-inner {
    min-height: 74px;
    padding-block: 0.4rem;
    gap: 0.45rem;
  }

  .logo-img {
    height: clamp(34px, 9vw, 44px);
    max-width: min(190px, 46vw);
  }

  .nav-main {
    display: none;
  }

  .header-actions {
    gap: 0.2rem;
  }

  .header-actions .btn-dark {
    display: none;
  }

  .icon-btn {
    padding: 0.34rem;
  }

  .menu-toggle {
    display: block;
    width: 40px;
    height: 40px;
  }

  body.nav-open .nav-main {
    display: block;
    position: fixed;
    inset: 74px 0 0;
    width: 100%;
    max-width: 100%;
    height: calc(100dvh - 74px);
    background: var(--white);
    padding: 1.1rem 1.2rem 1.4rem;
    overflow-y: auto;
    border-top: none;
    z-index: 99;
  }

  body.nav-open .nav-main .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  body.nav-open .nav-main .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.86rem;
    letter-spacing: 0.12em;
  }

  .hero {
    min-height: min(72vh, 620px);
    background-image: var(--hero-bg);
  }

  .hero-copy {
    max-width: 100%;
    margin-left: clamp(1rem, 5vw, 3rem);
  }

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

  .creations .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .about-company-inner {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: min(68vh, 560px);
    background-position: center top;
  }

  .about-hero .hero-inner {
    justify-content: center;
    padding-left: 0;
  }

  .about-hero .hero-copy {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    max-width: min(92%, 34rem);
  }

  .about-pillars-grid {
    grid-template-columns: 1fr;
  }

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

  .about-story-panel {
    max-width: 640px;
  }

  .no-limits-inner {
    grid-template-columns: 1fr;
  }

  .process {
    padding-block: 0;
  }

  .process .container.process-inner {
    padding: 0;
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: max(clamp(1.1rem, 4vw, 2.5rem), env(safe-area-inset-right, 0px));
  }

  .process-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-steps {
    justify-content: center;
    width: 100%;
    margin-left: 0;
  }

  .process-title-nowrap {
    white-space: normal;
  }

  .process-title-line:first-of-type {
    white-space: normal;
  }

  .process-visual {
    justify-self: center;
    max-width: min(100%, 300px);
    margin: 0;
    padding: 0;
  }

  .process-visual img {
    height: auto;
    object-fit: cover;
  }

  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .step-line {
    display: none;
  }

  .step {
    flex: 0 0 45%;
    margin-bottom: 1.5rem;
  }

  .about-points-grid {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
  }

  .mosaic-item.wide {
    grid-column: span 2;
  }

  .cta-products {
    margin-inline: auto;
  }

  .services-stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0;
  }

  .services-stat {
    border: none;
    background: #070b12;
    padding: 1rem 0.85rem;
  }

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

@media (max-width: 640px) {
  :root {
    --container: min(100% - 32px, 1100px);
  }

  .hero {
    --hero-bg: url("img/home-celular2.PNG");
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem 1.15rem;
  }

  .about-hero {
    --hero-bg: url("img/about-us-celular.PNG");
    min-height: min(64vh, 520px);
  }

  .about-hero .hero-copy {
    max-width: 100%;
  }

  .services-hero {
    background: linear-gradient(118deg, rgba(6, 10, 20, 0.92), rgba(18, 32, 62, 0.72)), url("img/about-us-services.PNG") center / cover no-repeat;
  }

  .feature-ribbon {
    padding: clamp(1.2rem, 3.5vw, 1.65rem) 0.85rem;
    margin-inline: clamp(0.5rem, 2vw, 1rem);
    margin-bottom: clamp(1.25rem, 3.5vw, 2.25rem);
  }

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

  .creations .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

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

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .mosaic-item.wide,
  .mosaic-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .services-bento {
    grid-template-columns: 1fr;
  }

  .services-stats-inner {
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
  }

  .services-stat {
    border: none;
    background: #070b12;
    padding: 1rem 0.75rem;
  }

  .services-deliver-grid {
    grid-template-columns: 1fr;
  }

  .services-process-track {
    grid-template-columns: 1fr;
  }

  .service-spot-visual img {
    height: min(280px, 62vw);
  }

  .services-trust-grid {
    grid-template-columns: 1fr;
  }

  .products-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .products-toolbar-end {
    flex-direction: column;
    align-items: stretch;
  }

  .products-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
  }

  .footer-col.footer-newsletter {
    text-align: center;
    justify-self: center;
    width: min(100%, 320px);
  }

  .footer-col.footer-newsletter h4 {
    text-align: center;
  }

  .footer-col.footer-newsletter .newsletter {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 280px;
  }

  .footer-col.footer-newsletter .socials {
    justify-content: center;
  }
}

/* —— Cart drawer (all pages) —— */
body.cart-drawer-open {
  overflow: hidden;
}

.cart-badge--empty {
  opacity: 0;
  transform: translate(25%, -25%) scale(0.01);
  pointer-events: none;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

.cart-drawer.is-open {
  pointer-events: auto;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 16, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cart-drawer.is-open .cart-drawer-backdrop {
  opacity: 1;
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 420px);
  background: var(--white);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-drawer.is-open .cart-drawer-panel {
  transform: translateX(0);
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.15rem;
  border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
}

.cart-drawer-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cart-drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--gray-100);
  background: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--black);
  cursor: pointer;
}

.cart-drawer-close:hover {
  background: var(--gray-50);
}

.cart-drawer-lines {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 1rem 1rem;
}

.cart-drawer-empty {
  padding: 1.25rem 1.15rem;
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.cart-line {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: start;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eef1f6;
}

.cart-line-media img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--gray-100);
}

.cart-line-title {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
}

.cart-line-meta {
  margin: 0.25rem 0 0;
  font-size: 0.74rem;
  color: var(--gray-500);
}

.cart-line-sum {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: right;
}

.cart-line-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.cart-line-qty {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: var(--white);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.cart-line-qty:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.cart-line-qty-val {
  font-size: 0.78rem;
  font-weight: 600;
  min-width: 1.25rem;
  text-align: center;
}

.cart-line-remove {
  border: none;
  background: none;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 0.25rem;
}

.cart-line-remove:hover {
  color: #b91c1c;
}

.cart-drawer-foot {
  padding: 1rem 1.15rem 1.25rem;
  border-top: 1px solid var(--gray-100);
  flex-shrink: 0;
  background: #fafbfd;
}

.cart-drawer-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

.cart-drawer-subtotal {
  font-size: 1.05rem;
}

.cart-drawer-note {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--gray-500);
}

.cart-drawer-share {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}

.cart-share-btn {
  justify-content: center;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  padding: 0.56rem 0.4rem;
}

.cart-share-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.cart-drawer-checkout {
  width: 100%;
  justify-content: center;
}

.cart-drawer-checkout:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* —— Products shop page —— */
.products-hero {
  position: relative;
  padding: clamp(3rem, 7vw, 4.75rem) 0;
  background: linear-gradient(112deg, rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.5)), url("img/products.jpg") center / cover no-repeat;
  color: var(--white);
}

.products-hero-inner {
  max-width: 720px;
}

.products-hero-eyebrow {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1rem;
}

.products-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.products-hero .script-blue {
  color: #9ec5ff;
}

.products-hero-lead {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 50ch;
  font-size: clamp(0.94rem, 1.6vw, 1.04rem);
  line-height: 1.62;
}

.products-trust-bar {
  background: var(--white);
  border-bottom: 1px solid #e8ecf4;
}

.products-trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: 0.95rem 0;
}

.products-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #374151;
}

.products-trust-icon {
  color: var(--blue);
  display: flex;
}

.products-shop {
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(2.5rem, 6vw, 4rem);
  background: #f8fafc;
}

.products-shop-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.products-catalog-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-results-count {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.04em;
}

.products-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.products-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-filter-chip {
  border: 1px solid #d7dce7;
  background: var(--white);
  color: #40485b;
  border-radius: 999px;
  padding: 0.42rem 0.88rem;
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.product-filter-chip:hover {
  border-color: #9ca3af;
}

.product-filter-chip.active {
  background: #0f1520;
  border-color: #0f1520;
  color: var(--white);
}

.products-toolbar-end {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.products-search-input {
  width: min(100%, 220px);
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 0.82rem;
  font-family: var(--font-sans);
  background: var(--white);
}

.products-search-input:focus {
  outline: 2px solid rgba(43, 108, 255, 0.35);
  outline-offset: 0;
  border-color: var(--blue);
}

.products-sort-select {
  padding: 0.5rem 0.65rem;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-nav);
  background: var(--white);
  cursor: pointer;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--white);
  border: 1px solid #e5e9f2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(15, 35, 80, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  height: 100%;
}

.product-card:hover {
  border-color: rgba(43, 108, 255, 0.28);
  box-shadow: 0 14px 40px rgba(15, 35, 80, 0.1);
  transform: translateY(-2px);
}

.product-card.is-hidden {
  display: none !important;
}

.product-card-media {
  position: relative;
  aspect-ratio: 1;
  background: #eef2f8;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  font-family: var(--font-nav);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(15, 21, 32, 0.88);
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
}

.product-card-body {
  display: grid;
  grid-template-rows: 2.5em 3.2em auto auto auto;
  align-content: start;
  padding: 1rem 1.05rem 1.15rem;
}

.product-card-title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-desc {
  margin: 0.45rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--gray-500);
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-price {
  margin: 0.75rem 0 0;
}

.product-card-price-val {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-card-note {
  margin: 0.35rem 0 0.85rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.product-card .product-add-btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.3rem;
}

.product-add-btn.product-add--done {
  background: #15803d !important;
  border-color: #15803d !important;
}

.products-help {
  padding: clamp(2rem, 4vw, 2.75rem) 0;
  background: var(--white);
  border-top: 1px solid #e8ecf4;
}

.products-help-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.products-help-title {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.products-help-text {
  margin: 0.5rem 0 0;
  max-width: 46ch;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.55;
}

@media (min-width: 961px) {
  .nav-main {
    display: flex !important;
  }
}

/* —— Start Project page —— */
.start-project-hero {
  padding: clamp(2.8rem, 6vw, 4.4rem) 0;
  background: linear-gradient(112deg, rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.55)), url("img/ideas-lumina.jpg") center / cover no-repeat;
  color: var(--white);
}

.start-project-hero-inner {
  max-width: 760px;
}

.start-project-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.start-project-hero p {
  margin-top: 0.95rem;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.88);
}

.start-project-content {
  background: #f8fafc;
  padding: clamp(2rem, 5vw, 3.2rem) 0;
}

.start-project-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 980px;
  margin-inline: auto;
  gap: clamp(0.85rem, 2.5vw, 1.5rem);
  align-items: start;
}

.start-project-form {
  background: var(--white);
  border: 1px solid #e5e9f2;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 35, 80, 0.06);
}

.start-project-form {
  padding: 1.2rem 1.15rem;
  position: relative;
}

.start-project-form h2 {
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.start-project-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.start-project-fields label {
  display: grid;
  gap: 0.35rem;
}

.start-project-fields span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4b5563;
}

.start-project-fields input,
.start-project-fields select,
.start-project-fields textarea {
  width: 100%;
  padding: 0.62rem 0.7rem;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font: inherit;
  font-size: 0.84rem;
  background: var(--white);
}

.start-project-fields textarea {
  resize: vertical;
  min-height: 120px;
}

.start-project-fields input:focus,
.start-project-fields select:focus,
.start-project-fields textarea:focus {
  outline: 2px solid rgba(43, 108, 255, 0.32);
  border-color: var(--blue);
}

.start-project-fields .field-full {
  grid-column: 1 / -1;
}

.start-project-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.start-project-actions p {
  margin: 0;
  font-size: 0.72rem;
  color: var(--gray-500);
}

@media (max-width: 960px) {
  .start-project-fields {
    grid-template-columns: 1fr;
  }
}

/* —— FAQ page —— */
.faq-hero {
  padding: clamp(2.7rem, 6vw, 4.2rem) 0;
  background: linear-gradient(112deg, rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.55)), url("img/portfolio.PNG") center / cover no-repeat;
  color: var(--white);
}

.faq-hero-inner {
  max-width: 760px;
}

.faq-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.faq-hero p {
  margin-top: 0.9rem;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.88);
}

.faq-content {
  background: #f8fafc;
  padding: clamp(2rem, 5vw, 3.2rem) 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 1.8rem);
  align-items: start;
}

.faq-sidebar,
.faq-group {
  background: var(--white);
  border: 1px solid #e5e9f2;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15, 35, 80, 0.05);
}

.faq-sidebar {
  position: sticky;
  top: 118px;
  padding: 1rem;
}

.faq-sidebar h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.faq-sidebar ul {
  margin: 0;
  padding: 0;
}

.faq-sidebar li + li {
  margin-top: 0.4rem;
}

.faq-sidebar a {
  display: inline-block;
  color: #374151;
  font-size: 0.84rem;
}

.faq-sidebar a:hover {
  color: var(--blue);
}

.faq-side-btn {
  margin-top: 0.95rem;
}

.faq-groups {
  display: grid;
  gap: 0.85rem;
}

.faq-group {
  padding: 1rem;
}

.faq-group h2 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.faq-item {
  border: 1px solid #e6ebf4;
  border-radius: 10px;
  background: #fbfcff;
  overflow: hidden;
}

.faq-item + .faq-item {
  margin-top: 0.6rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.85rem 0.9rem;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--blue);
  font-size: 1.1rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: -0.2rem 0 0;
  padding: 0 0.9rem 0.9rem;
  color: var(--gray-500);
  font-size: 0.84rem;
  line-height: 1.56;
}

.faq-item p a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 960px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
  }
}

.faq-contact-cta {
  background: linear-gradient(140deg, #0f172a 0%, #1e3a8a 100%);
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  color: var(--white);
}

.faq-contact-cta h2 {
  margin: 0;
  font-size: 1.15rem;
}

.faq-contact-cta p {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
}

.faq-contact-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.faq-contact-actions .btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.faq-contact-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

/* —— Contact page —— */
.contact-hero {
  padding: clamp(2.8rem, 6vw, 4.4rem) 0;
  background: linear-gradient(112deg, rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.55)), url("img/store-lumina.jpg") center / cover no-repeat;
  color: var(--white);
}

.contact-hero-inner {
  max-width: 760px;
}

.contact-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.contact-hero p {
  margin-top: 0.9rem;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.88);
}

.contact-content {
  background: #f8fafc;
  padding: clamp(2rem, 5vw, 3.2rem) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 1.8rem);
  align-items: start;
}

.contact-side,
.contact-form {
  background: var(--white);
  border: 1px solid #e5e9f2;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15, 35, 80, 0.06);
}

.contact-side {
  padding: 1rem;
}

.contact-side h2 {
  margin: 0 0 0.7rem;
  font-size: 1.02rem;
}

.contact-side p {
  margin: 0.45rem 0 0;
  font-size: 0.84rem;
  color: var(--gray-500);
}

.contact-side strong {
  color: var(--black);
}

.contact-side-btn {
  margin-top: 0.95rem;
}

.contact-form {
  padding: 1.1rem;
  position: relative;
}

.contact-form h2 {
  margin: 0 0 0.8rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.contact-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.contact-fields label {
  display: grid;
  gap: 0.35rem;
}

.contact-fields span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4b5563;
}

.contact-fields input,
.contact-fields select,
.contact-fields textarea {
  width: 100%;
  padding: 0.62rem 0.7rem;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font: inherit;
  font-size: 0.84rem;
  background: var(--white);
}

.contact-fields textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-fields input:focus,
.contact-fields select:focus,
.contact-fields textarea:focus {
  outline: 2px solid rgba(43, 108, 255, 0.32);
  border-color: var(--blue);
}

.contact-fields .field-full {
  grid-column: 1 / -1;
}

.contact-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.contact-actions p {
  margin: 0;
  font-size: 0.74rem;
  color: var(--gray-500);
}

.contact-actions .form-status {
  flex-basis: 100%;
  font-size: 0.78rem;
  color: var(--gray-500);
}

.quote-success {
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding: 1rem 1.1rem;
  border-radius: 0.75rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.quote-success p {
  margin: 0;
  font-size: 0.85rem;
  color: #047857;
}

.field-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 0;
  min-height: 1.15em;
}

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

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

.form-status--compact {
  font-size: 0.72rem;
  margin-top: 0.45rem;
}

.footer-newsletter .form-status--compact {
  max-width: 100%;
}

.start-project-actions .form-status {
  flex-basis: 100%;
  font-size: 0.78rem;
  color: var(--gray-500);
}

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

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

  .cart-drawer-share {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
  }

  .product-card {
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
  }

  .product-card-media {
    aspect-ratio: 4 / 3;
  }

  .product-card-body {
    padding: 0.7rem 0.68rem 0.72rem;
    display: grid;
    grid-template-rows: 2.2em 2.9em auto auto auto;
    align-content: start;
  }

  .product-card-title {
    font-size: 0.88rem;
    line-height: 1.22;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-card-desc {
    margin-top: 0.34rem;
    font-size: 0.72rem;
    line-height: 1.35;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-card-price {
    margin-top: 0.5rem;
  }

  .product-card-price-val {
    font-size: 0.95rem;
  }

  .product-card-note {
    margin: 0.18rem 0 0.52rem;
    font-size: 0.58rem;
  }

  .product-card .product-add-btn {
    padding: 0.54rem 0.5rem;
    font-size: 0.58rem;
    letter-spacing: 0.06em;
    margin-top: 0.18rem;
  }
}

/* —— Products page · Coming Soon —— */
.coming-soon-page {
  background: #0a0f1c;
}

.coming-soon {
  position: relative;
  min-height: calc(100vh - 96px);
  display: grid;
  place-items: center;
  padding: clamp(3rem, 9vw, 6rem) 0;
  overflow: hidden;
  background-color: #050912;
  background-image:
    radial-gradient(circle at 20% 18%, rgba(43, 108, 255, 0.42), transparent 55%),
    radial-gradient(circle at 82% 82%, rgba(125, 80, 255, 0.3), transparent 60%),
    linear-gradient(160deg, #050912 0%, #0a1a3a 45%, #050912 100%);
  background-size: 200% 200%, 200% 200%, auto;
  background-position: 0% 50%, 100% 50%, center;
  background-repeat: no-repeat;
  color: var(--white);
  isolation: isolate;
  animation: cs-bg-shift 18s ease-in-out infinite;
}

@keyframes cs-bg-shift {
  0%, 100% {
    background-position: 0% 50%, 100% 50%, center;
  }
  50% {
    background-position: 100% 50%, 0% 50%, center;
  }
}

.coming-soon-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.coming-soon-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.coming-soon-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  will-change: transform;
}

.coming-soon-orbs .orb-1 {
  width: 360px;
  height: 360px;
  top: -80px;
  left: -60px;
  background: radial-gradient(circle, rgba(43, 108, 255, 0.95), transparent 65%);
  animation: cs-orb-1 16s ease-in-out infinite;
}

.coming-soon-orbs .orb-2 {
  width: 420px;
  height: 420px;
  bottom: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(125, 80, 255, 0.85), transparent 60%);
  animation: cs-orb-2 22s ease-in-out infinite;
}

.coming-soon-orbs .orb-3 {
  width: 280px;
  height: 280px;
  top: 38%;
  right: 20%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.75), transparent 65%);
  animation: cs-orb-3 14s ease-in-out infinite;
}

@keyframes cs-orb-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(120px, 80px) scale(1.15); }
}

@keyframes cs-orb-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-110px, -70px) scale(1.1); }
}

@keyframes cs-orb-3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.45; }
  50% { transform: translate(-70px, 50px) scale(0.9); opacity: 0.7; }
}

.coming-soon-laser {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.coming-soon-laser::before,
.coming-soon-laser::after {
  content: "";
  position: absolute;
  left: -10%;
  width: 120%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(96, 165, 250, 0) 8%,
    rgba(96, 165, 250, 0.85) 50%,
    rgba(96, 165, 250, 0) 92%,
    transparent 100%
  );
  box-shadow:
    0 0 8px rgba(96, 165, 250, 0.6),
    0 0 24px rgba(43, 108, 255, 0.45);
  opacity: 0;
}

.coming-soon-laser::before {
  top: 28%;
  animation: cs-laser-sweep 7s ease-in-out infinite;
}

.coming-soon-laser::after {
  top: 72%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(196, 181, 253, 0) 8%,
    rgba(196, 181, 253, 0.7) 50%,
    rgba(196, 181, 253, 0) 92%,
    transparent 100%
  );
  box-shadow:
    0 0 8px rgba(196, 181, 253, 0.55),
    0 0 24px rgba(125, 80, 255, 0.4);
  animation: cs-laser-sweep 9s ease-in-out 2.4s infinite reverse;
}

@keyframes cs-laser-sweep {
  0% {
    transform: translateX(-110%) scaleY(1);
    opacity: 0;
  }
  10% {
    opacity: 0.95;
    transform: translateX(-50%) scaleY(1);
  }
  45% {
    opacity: 1;
    transform: translateX(0%) scaleY(1.4);
  }
  85% {
    opacity: 0.9;
    transform: translateX(45%) scaleY(1);
  }
  100% {
    transform: translateX(110%) scaleY(1);
    opacity: 0;
  }
}

.coming-soon-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.coming-soon-particles .particle {
  position: absolute;
  bottom: -10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(160, 200, 255, 0.85);
  box-shadow: 0 0 10px rgba(96, 165, 250, 0.7);
  opacity: 0;
  animation: cs-particle-float linear infinite;
}

.coming-soon-particles .p1  { left: 6%;  width: 3px; height: 3px; animation-duration: 14s; animation-delay: 0s;   background: rgba(160, 200, 255, 0.8); }
.coming-soon-particles .p2  { left: 14%; width: 5px; height: 5px; animation-duration: 18s; animation-delay: 1.4s; background: rgba(196, 181, 253, 0.75); box-shadow: 0 0 12px rgba(125, 80, 255, 0.7); }
.coming-soon-particles .p3  { left: 22%; width: 2px; height: 2px; animation-duration: 11s; animation-delay: 3s; }
.coming-soon-particles .p4  { left: 30%; width: 6px; height: 6px; animation-duration: 22s; animation-delay: 0.7s; background: rgba(126, 167, 255, 0.85); }
.coming-soon-particles .p5  { left: 38%; width: 3px; height: 3px; animation-duration: 16s; animation-delay: 2.6s; }
.coming-soon-particles .p6  { left: 46%; width: 4px; height: 4px; animation-duration: 19s; animation-delay: 5s;   background: rgba(196, 181, 253, 0.7); }
.coming-soon-particles .p7  { left: 55%; width: 5px; height: 5px; animation-duration: 13s; animation-delay: 1s; }
.coming-soon-particles .p8  { left: 63%; width: 2px; height: 2px; animation-duration: 24s; animation-delay: 4.2s; }
.coming-soon-particles .p9  { left: 72%; width: 4px; height: 4px; animation-duration: 17s; animation-delay: 2s;   background: rgba(96, 165, 250, 0.9); }
.coming-soon-particles .p10 { left: 80%; width: 3px; height: 3px; animation-duration: 12s; animation-delay: 6s; }
.coming-soon-particles .p11 { left: 88%; width: 5px; height: 5px; animation-duration: 20s; animation-delay: 3.5s; background: rgba(196, 181, 253, 0.8); }
.coming-soon-particles .p12 { left: 95%; width: 2px; height: 2px; animation-duration: 15s; animation-delay: 4.8s; }

@keyframes cs-particle-float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.95;
  }
  50% {
    transform: translateY(-50vh) translateX(18px);
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-105vh) translateX(-12px);
    opacity: 0;
  }
}

.coming-soon-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  display: grid;
  gap: 1.1rem;
  justify-items: center;
  padding-inline: 1rem;
}

.coming-soon-eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.4em;
}

.coming-soon-title {
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.25em;
  transform-style: preserve-3d;
  transition: transform 240ms ease-out;
  will-change: transform;
}

.coming-soon-title .cs-line {
  display: inline-flex;
  gap: 0.02em;
}

.coming-soon-title .cs-line-script {
  display: inline-flex;
}

.coming-soon-title .cs-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
  animation: cs-char-in 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.coming-soon-title .cs-char:nth-child(1) { animation-delay: 0.05s; }
.coming-soon-title .cs-char:nth-child(2) { animation-delay: 0.12s; }
.coming-soon-title .cs-char:nth-child(3) { animation-delay: 0.19s; }
.coming-soon-title .cs-char:nth-child(4) { animation-delay: 0.26s; }
.coming-soon-title .cs-char:nth-child(5) { animation-delay: 0.33s; }
.coming-soon-title .cs-char:nth-child(6) { animation-delay: 0.4s; }

.coming-soon-title .cs-line-script {
  opacity: 0;
  transform: translateY(0.25em);
  animation: cs-char-in 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.55s forwards;
}

@keyframes cs-char-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.coming-soon-title .script {
  font-size: 1.15em;
  color: #9ec5ff;
  background: linear-gradient(120deg, #9ec5ff, #d6b6ff 60%, #9ec5ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: cs-script-shimmer 6s ease-in-out infinite;
}

@keyframes cs-script-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.coming-soon-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 46ch;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.6;
}

.coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.75rem;
}

@media (max-width: 640px) {
  .coming-soon {
    min-height: calc(100vh - 72px);
  }

  .coming-soon-orbs .orb {
    filter: blur(48px);
    opacity: 0.45;
  }

  .coming-soon-actions {
    width: 100%;
  }

  .coming-soon-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon,
  .coming-soon-orbs .orb,
  .coming-soon-laser::before,
  .coming-soon-laser::after,
  .coming-soon-particles .particle,
  .coming-soon-title .cs-char,
  .coming-soon-title .cs-line-script,
  .coming-soon-title .script {
    animation: none !important;
  }

  .coming-soon-laser::before,
  .coming-soon-laser::after,
  .coming-soon-particles .particle {
    opacity: 0;
  }

  .coming-soon-title .cs-char,
  .coming-soon-title .cs-line-script {
    opacity: 1;
    transform: none;
  }
}
