/* ============================================
   Cloudora Studio
   ============================================ */

/* Single dark theme (no color picker) */
:root {
  --bg: #07080f;
  --bg-mid: #0d1018;
  --bg-elevated: #12161f;
  --bg-card: #151a26;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8eaf0;
  --text-muted: #8b92a6;
  --accent: #72d9ff;
  --accent-glow: rgba(114, 217, 255, 0.45);
  --accent-dim: rgba(114, 217, 255, 0.12);
  --accent-hover: #a8ecff;
  --secondary: #a756ff;
  --secondary-dim: rgba(167, 86, 255, 0.14);
  --brand-cyan: #72d9ff;
  --brand-purple: #a756ff;
  --brand-white: #ffffff;
  --brand-ring-width: 2px;
  --portfolio-ring-width: 1px;
  --menu-ring-width: 1px;
  --lightning: rgba(200, 220, 255, 0.55);
  --grid-line: rgba(255, 255, 255, 0.022);
  --html-bg: #020308;
  --header-bg: rgba(7, 8, 15, 0.88);
  --radius: 12px;
  --radius-sm: 8px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Bricolage Grotesque", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-brand: "Bricolage Grotesque", "Plus Jakarta Sans", system-ui, sans-serif;
  --max: 1100px;
  --header-h: 64px;
}

@property --brand-ring-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes brand-ring-spin {
  to {
    --brand-ring-angle: 360deg;
  }
}

@keyframes brand-text-edge {
  0%,
  100% {
    text-shadow:
      0 0 18px rgba(114, 217, 255, 0.22),
      -1px 0 0 rgba(114, 217, 255, 0.55),
      1px 0 0 rgba(167, 86, 255, 0.5),
      0 1px 0 rgba(255, 255, 255, 0.28);
  }
  33% {
    text-shadow:
      0 0 20px rgba(167, 86, 255, 0.24),
      1px 0 0 rgba(167, 86, 255, 0.55),
      0 1px 0 rgba(255, 255, 255, 0.32),
      -1px 0 0 rgba(114, 217, 255, 0.48);
  }
  66% {
    text-shadow:
      0 0 20px rgba(255, 255, 255, 0.12),
      0 -1px 0 rgba(255, 255, 255, 0.38),
      -1px 0 0 rgba(114, 217, 255, 0.52),
      1px 0 0 rgba(167, 86, 255, 0.52);
  }
}

@keyframes brand-label-glow {
  0%,
  100% {
    color: var(--brand-cyan);
    text-shadow: 0 0 14px rgba(114, 217, 255, 0.35);
  }
  50% {
    color: var(--brand-purple);
    text-shadow: 0 0 16px rgba(167, 86, 255, 0.4);
  }
}

/* Rotating cyan → purple → white border (ring only, no center fill) */
.hero__title--studio,
.service-card,
.portfolio-item,
.design-cta--studio,
.section__header--center {
  position: relative;
  isolation: isolate;
  z-index: 0;
}

.hero__title--studio::before,
.service-card::before,
.design-cta--studio::before,
.section__header--center::before {
  content: "";
  position: absolute;
  inset: calc(-1 * var(--brand-ring-width));
  padding: var(--brand-ring-width);
  border-radius: inherit;
  background: conic-gradient(
    from var(--brand-ring-angle),
    var(--brand-cyan) 0deg,
    var(--brand-purple) 120deg,
    var(--brand-white) 240deg,
    var(--brand-cyan) 360deg
  );
  animation: brand-ring-spin 5s linear infinite;
  pointer-events: none;
  z-index: -1;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.portfolio-item::before {
  content: "";
  position: absolute;
  inset: calc(-1 * var(--portfolio-ring-width));
  padding: var(--portfolio-ring-width);
  border-radius: inherit;
  background: conic-gradient(
    from var(--brand-ring-angle),
    var(--brand-cyan) 0deg,
    var(--brand-purple) 120deg,
    var(--brand-white) 240deg,
    var(--brand-cyan) 360deg
  );
  animation: brand-ring-spin 5s linear infinite;
  pointer-events: none;
  z-index: -1;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.hero__title--studio {
  display: inline-block;
  padding: 0.4rem 0.85rem 0.55rem;
  border-radius: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.16;
  max-width: 22rem;
  margin: 0 0 1.25rem;
  text-align: left;
  color: var(--text);
  font-variation-settings: "opsz" 48;
  background: rgba(7, 8, 15, 0.88);
  animation: brand-text-edge 7s ease-in-out infinite;
}

.hero__content {
  max-width: 40rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-inline: 0.15rem 0;
}

.hero-showcase--visual > * {
  position: relative;
  z-index: 1;
}

.service-card {
  background: linear-gradient(165deg, rgba(22, 27, 39, 0.96), rgba(15, 18, 30, 0.96));
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.portfolio-item {
  background: #07080f;
}

.portfolio-item--image img {
  position: relative;
  z-index: 1;
}

.design-cta--studio {
  border-color: transparent;
  background: linear-gradient(155deg, rgba(18, 22, 31, 0.96), rgba(12, 16, 26, 0.96));
}

.design-cta--studio > * {
  position: relative;
  z-index: 1;
}

.section__header--center {
  padding: 1.35rem 1.5rem 1.5rem;
  border-radius: 1rem;
  max-width: 42rem;
  margin-inline: auto;
  background: rgba(7, 8, 15, 0.78);
}

.section__header--center .section__label {
  animation: brand-label-glow 4s ease-in-out infinite;
}

.section__header--center .section__title {
  background: linear-gradient(
    95deg,
    var(--brand-white) 0%,
    var(--brand-cyan) 38%,
    var(--brand-purple) 72%,
    var(--brand-white) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: aurora-pan 8s ease-in-out infinite;
}

.section__header--center > * {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero__title--studio::before,
  .service-card::before,
  .menu-card::before,
  .menu-category::before,
  .portfolio-item::before,
  .design-cta--studio::before,
  .section__header--center::before {
    animation: none;
    background: linear-gradient(
      135deg,
      var(--brand-cyan),
      var(--brand-purple),
      var(--brand-white)
    );
  }

  .hero__title--studio,
  .section__header--center .section__title,
  .section__header--center .section__label {
    animation: none;
  }

  .menu-category.is-animating .menu-card {
    animation: none;
  }

  .menu-category__panel,
  .menu-category__panel-inner,
  .menu-category__chevron,
  .hero-showcase__frame,
  .hero-showcase__frame::before,
  .hero-showcase__halo {
    transition: none;
  }

  .brand-pattern__scroll--a {
    animation: none;
  }
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

@keyframes cloud-showcase-glow {
  0%,
  100% {
    opacity: 0.42;
  }
  50% {
    opacity: 0.68;
  }
}

@keyframes cloud-showcase-glow-alt {
  0%,
  100% {
    opacity: 0.26;
  }
  50% {
    opacity: 0.48;
  }
}

@keyframes storm-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-1.2%, 0.6%) scale(1.01);
    opacity: 0.94;
  }
}

/* Seamless horizontal loop: two chunks side by side, move track by half its width */
@keyframes geo-drift-loop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes header-border-glow {
  0%,
  100% {
    border-bottom-color: rgba(255, 255, 255, 0.05);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.03) inset,
      0 8px 32px rgba(0, 0, 0, 0.28);
  }
  50% {
    border-bottom-color: rgba(114, 217, 255, 0.08);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.04) inset,
      0 8px 36px rgba(0, 0, 0, 0.32),
      0 1px 0 rgba(114, 217, 255, 0.06);
  }
}

@keyframes brand-pattern-drift-a {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-480px, 0, 0);
  }
}

@keyframes btn-secondary-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes lightning-flash {
  0%,
  88%,
  100% {
    opacity: 0;
  }
  89% {
    opacity: 0.12;
  }
  90% {
    opacity: 0;
  }
  91% {
    opacity: 0.22;
  }
  92% {
    opacity: 0;
  }
}

@keyframes title-glow {
  0%,
  100% {
    text-shadow: 0 0 40px rgba(125, 211, 252, 0.15);
  }
  50% {
    text-shadow: 0 0 56px rgba(125, 211, 252, 0.35), 0 0 80px rgba(167, 139, 250, 0.12);
  }
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes aurora-pan {
  0%,
  100% {
    background-position: 0% 40%, 100% 60%, 50% 100%;
    opacity: 0.75;
  }
  50% {
    background-position: 100% 60%, 0% 35%, 50% 100%;
    opacity: 1;
  }
}

@keyframes halo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes chip-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes card-glint {
  0%,
  100% {
    transform: translateX(-140%) skewX(-22deg);
    opacity: 0;
  }
  40% {
    opacity: 0.25;
  }
  60% {
    opacity: 0.12;
  }
  100% {
    transform: translateX(220%) skewX(-22deg);
    opacity: 0;
  }
}

@keyframes vapor-slide {
  0% {
    transform: translateX(-18%);
    opacity: 0.22;
  }
  50% {
    opacity: 0.38;
  }
  100% {
    transform: translateX(18%);
    opacity: 0.2;
  }
}

@keyframes cloud-glow-pulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.03);
  }
}

@keyframes cloud-sheen-sweep {
  0% {
    transform: translateX(-130%) rotate(8deg);
    opacity: 0;
  }
  35% {
    opacity: 0.15;
  }
  100% {
    transform: translateX(210%) rotate(8deg);
    opacity: 0;
  }
}

@keyframes bank-sway-high {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -3px, 0);
  }
}

@keyframes bank-sway-mid {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -5px, 0);
  }
}

@keyframes bank-sway-low {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -7px, 0);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--html-bg);
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: transparent;
  min-height: 100vh;
  position: relative;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  background: var(--accent);
  color: #050810;
  border-radius: var(--radius-sm);
  transition: left 0.15s ease;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  outline: 2px solid var(--accent-hover);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav__cart:focus-visible,
.link-btn:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

button:focus:not(:focus-visible),
.btn:focus:not(:focus-visible) {
  outline: none;
}

.legal-block {
  max-width: 52ch;
  margin-bottom: 2.5rem;
}

.legal-block__title {
  font-size: 1.35rem;
  margin: 0 0 1rem;
  color: var(--text);
}

.legal-block p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.page-404 {
  text-align: center;
  padding-block: clamp(3rem, 12vw, 5rem);
}

.page-404 .page-hero__lead {
  margin-inline: auto;
}

.page-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.form-panel__title--rule {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.form-panel--mt {
  margin-top: 1.5rem;
}

.note--contact {
  margin-top: 1rem;
  margin-bottom: 0;
}

.note--flush {
  margin-top: 0;
}

/*
  Base sky: grid + soft lights. Clouds live in .sky-strip under the header (see #sky-layers-root).
*/
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-color: #04050c;
  background-image:
    radial-gradient(ellipse 110% 55% at 50% -15%, rgba(45, 55, 90, 0.45), transparent 58%),
    radial-gradient(ellipse 90% 45% at 12% 18%, rgba(50, 60, 95, 0.22), transparent 52%),
    radial-gradient(ellipse 85% 40% at 88% 12%, rgba(42, 52, 82, 0.2), transparent 48%),
    radial-gradient(ellipse 120% 50% at 50% 100%, rgba(14, 18, 32, 0.42), transparent 62%),
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: auto, auto, auto, auto, 52px 52px, 52px 52px;
  background-position: center, center, center, center bottom, 0 0, 0 0;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat, repeat;
  animation: storm-drift 48s ease-in-out infinite;
}

/* Light brand-colored rain — canvas droplets behind page content */
.rain-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.25) 5%,
    rgba(0, 0, 0, 0.75) 16%,
    rgba(0, 0, 0, 0.75) 90%,
    rgba(0, 0, 0, 0.2) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.25) 5%,
    rgba(0, 0, 0, 0.75) 16%,
    rgba(0, 0, 0, 0.75) 90%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.rain-layer__canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/*
  Cloud strip (subpages): clouds only — fade via mask, no overlay bars.
*/
.sky-strip {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  overflow: hidden;
  line-height: 0;
  height: clamp(140px, 20vh, 220px);
}

.sky-strip--short {
  height: clamp(100px, 14vh, 150px);
}

/* Brand pattern — sticky header bar only */
.brand-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.brand-pattern__scroll {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 1280px);
  height: 100%;
  background-image: url("../images/brand-pattern-tile.png");
  background-size: 480px auto;
  background-repeat: repeat-x;
  background-position: center center;
  will-change: transform;
}

.brand-pattern__scroll--a {
  animation: brand-pattern-drift-a 110s linear infinite;
}

.site-header .brand-pattern {
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 10%,
    rgba(0, 0, 0, 0.9) 28%,
    rgba(0, 0, 0, 0.9) 72%,
    rgba(0, 0, 0, 0.35) 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 10%,
    rgba(0, 0, 0, 0.9) 28%,
    rgba(0, 0, 0, 0.9) 72%,
    rgba(0, 0, 0, 0.35) 90%,
    transparent 100%
  );
}

.site-header .brand-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(7, 8, 15, 0.42) 0%,
    rgba(7, 8, 15, 0.68) 55%,
    rgba(7, 8, 15, 0.86) 100%
  );
}

.site-header .brand-pattern__scroll--a {
  opacity: 0.3;
  filter: brightness(0.58) saturate(0.82) contrast(1.06);
}

.site-header .site-header__inner {
  position: relative;
  z-index: 2;
}

.sky-layers {
  --sky-pan-x: 0px;
  --sky-pan-y: 0px;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 6px 12px 9px;
  box-sizing: border-box;
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 52%,
    rgba(0, 0, 0, 0.88) 68%,
    rgba(0, 0, 0, 0.55) 82%,
    rgba(0, 0, 0, 0.18) 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 52%,
    rgba(0, 0, 0, 0.88) 68%,
    rgba(0, 0, 0, 0.55) 82%,
    rgba(0, 0, 0, 0.18) 94%,
    transparent 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.sky-layers::before {
  content: "";
  position: absolute;
  left: -6%;
  width: 112%;
  pointer-events: none;
  top: 3%;
  height: 58%;
  z-index: 0;
  background:
    radial-gradient(120% 80% at 22% 58%, rgba(125, 211, 252, 0.12), transparent 56%),
    radial-gradient(130% 85% at 78% 42%, rgba(167, 139, 250, 0.1), transparent 58%);
  filter: blur(12px);
  animation: vapor-slide 30s ease-in-out infinite alternate;
}

/* Each band is its own row — clouds on different speeds stay in separate horizontal strips */
.geo-layer {
  flex: 1 1 0;
  min-height: 0;
  position: relative;
  overflow: visible;
  isolation: isolate;
  will-change: transform;
  transition: transform 0.45s ease-out;
}

.geo-layer + .geo-layer {
  margin-top: -10px;
}

.geo-layer--high {
  z-index: 1;
  filter: blur(0.7px);
  opacity: 0.92;
  transform: translate3d(
    calc(var(--sky-pan-x) * 0.24),
    calc(var(--sky-pan-y) * 0.22),
    0
  );
}

.geo-layer--mid {
  z-index: 2;
  opacity: 0.97;
  transform: translate3d(
    calc(var(--sky-pan-x) * 0.52),
    calc(var(--sky-pan-y) * 0.34),
    0
  );
}

.geo-layer--low {
  z-index: 3;
  opacity: 1;
  transform: translate3d(
    calc(var(--sky-pan-x) * 0.8),
    calc(var(--sky-pan-y) * 0.52),
    0
  );
}

.geo-drift {
  position: absolute;
  inset: -8px -6px;
  width: calc(100% + 12px);
  height: calc(100% + 16px);
  overflow: visible;
  pointer-events: none;
}

.geo-layer--high .geo-drift {
  animation: bank-sway-high 22s ease-in-out infinite;
}

.geo-layer--mid .geo-drift {
  animation: bank-sway-mid 16s ease-in-out infinite;
}

.geo-layer--low .geo-drift {
  animation: bank-sway-low 12s ease-in-out infinite;
}

/*
  Seamless loop per band: track = 200% width, chunks = 50% each, translateX(-50%).
*/
.geo-drift__track {
  display: flex;
  flex-direction: row;
  width: 200%;
  height: 100%;
  box-sizing: border-box;
  will-change: transform;
  animation: geo-drift-loop linear infinite;
}

/* High band: distant, smaller, slowest */
.geo-layer--high .geo-drift__track {
  padding-top: 1px;
  animation-duration: 118s;
  animation-delay: -14s;
}

/* Mid band: medium size, medium speed (no reverse — keeps loop seamless) */
.geo-layer--mid .geo-drift__track {
  animation-duration: 76s;
  animation-delay: -41s;
}

/* Low band: largest, fastest */
.geo-layer--low .geo-drift__track {
  padding-bottom: 1px;
  animation-duration: 49s;
  animation-delay: -9s;
}

.sky-strip--short .geo-layer--high .geo-drift__track {
  animation-duration: 98s;
}

.sky-strip--short .geo-layer--mid .geo-drift__track {
  animation-duration: 64s;
  animation-delay: -28s;
}

.sky-strip--short .geo-layer--low .geo-drift__track {
  animation-duration: 42s;
}

.geo-drift__chunk {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex: 0 0 50%;
  width: 50%;
  min-width: 50%;
  max-width: 50%;
  height: 100%;
  padding: 0 clamp(0.35rem, 1.2vw, 0.75rem);
  padding-bottom: 0;
  box-sizing: border-box;
  gap: 0;
  column-gap: 0;
}

.geo-layer--high .geo-drift__chunk {
  align-items: flex-start;
}

.geo-layer--mid .geo-drift__chunk {
  align-items: center;
}

.geo-layer--low .geo-drift__chunk {
  align-items: flex-end;
}

.cloud-mass {
  position: relative;
  flex-shrink: 0;
  width: clamp(102px, 14.5vw, 248px);
  height: clamp(54px, 8.5vh, 124px);
  margin: 0;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.22));
  /* --cm-s silhouette scale; --cm-box hero vs wisp; --cm-tx/ty/r/op poses */
  transform: translateX(var(--cm-tx, 0px)) translateY(var(--cm-ty, 0px))
    scale(
      calc(var(--cm-s, 1) * var(--cm-strip, 1) * var(--cm-box, 1) * var(--cm-layer-scale, 1))
    )
    rotate(var(--cm-r, 0deg));
  transform-origin: var(--cm-origin, center center);
  opacity: var(--cm-op, 0.92);
  isolation: isolate;
}

.cloud-mass::before,
.cloud-mass::after {
  content: "";
  position: absolute;
  inset: 5% 3%;
  border-radius: 999px;
  pointer-events: none;
}

.cloud-mass::before {
  z-index: 0;
  background:
    radial-gradient(70% 58% at 30% 36%, rgba(214, 226, 255, 0.24), transparent 68%),
    radial-gradient(65% 50% at 72% 62%, rgba(128, 150, 212, 0.18), transparent 74%);
  filter: blur(11px);
  opacity: 0.24;
  animation: cloud-glow-pulse var(--cm-breathe, 11s) ease-in-out infinite;
}

.cloud-mass::after {
  z-index: 2;
  inset: 4% 0%;
  background: linear-gradient(
    112deg,
    rgba(255, 255, 255, 0) 32%,
    rgba(226, 236, 255, 0.22) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  filter: blur(7px);
  opacity: 0;
  animation: cloud-sheen-sweep calc(var(--cm-breathe, 11s) * 1.35) ease-in-out infinite;
}

.sky-strip--short .cloud-mass {
  --cm-strip: 0.92;
}

/*
  Curated poses — same every loop. Wider --cm-s spread + --cm-box for hero vs wisp.
*/
.geo-layer--high .cloud-mass--1 {
  --cm-s: 0.58;
  --cm-box: 1.14;
  --cm-tx: -3px;
  --cm-ty: 4px;
  --cm-r: -2.2deg;
  --cm-op: 0.74;
}
.geo-layer--high .cloud-mass--2 {
  --cm-s: 0.64;
  --cm-box: 1.02;
  --cm-tx: 5px;
  --cm-ty: -2px;
  --cm-r: 1.4deg;
  --cm-op: 0.8;
}
.geo-layer--high .cloud-mass--3 {
  --cm-s: 0.52;
  --cm-box: 1.18;
  --cm-tx: -6px;
  --cm-ty: 3px;
  --cm-r: 2deg;
  --cm-op: 0.71;
}
.geo-layer--high .cloud-mass--4 {
  --cm-s: 0.56;
  --cm-box: 0.94;
  --cm-tx: 2px;
  --cm-ty: 1px;
  --cm-r: -1.2deg;
  --cm-op: 0.77;
}
.geo-layer--high .cloud-mass--5 {
  --cm-s: 0.7;
  --cm-box: 1.1;
  --cm-tx: -4px;
  --cm-ty: -3px;
  --cm-r: 0.6deg;
  --cm-op: 0.82;
}
.geo-layer--high .cloud-mass--6 {
  --cm-s: 0.46;
  --cm-box: 0.86;
  --cm-tx: 6px;
  --cm-ty: 2px;
  --cm-r: -2deg;
  --cm-op: 0.68;
}

.geo-layer--mid .cloud-mass--1 {
  --cm-s: 0.8;
  --cm-box: 1.2;
  --cm-tx: -5px;
  --cm-ty: 2px;
  --cm-r: -1.5deg;
  --cm-op: 0.88;
}
.geo-layer--mid .cloud-mass--2 {
  --cm-s: 0.88;
  --cm-box: 1.26;
  --cm-tx: 4px;
  --cm-ty: -4px;
  --cm-r: 2deg;
  --cm-op: 0.93;
}
.geo-layer--mid .cloud-mass--3 {
  --cm-s: 0.74;
  --cm-box: 1.14;
  --cm-tx: -3px;
  --cm-ty: 5px;
  --cm-r: 1deg;
  --cm-op: 0.89;
}
.geo-layer--mid .cloud-mass--4 {
  --cm-s: 0.76;
  --cm-box: 0.96;
  --cm-tx: 6px;
  --cm-ty: 0px;
  --cm-r: -2deg;
  --cm-op: 0.9;
}
.geo-layer--mid .cloud-mass--5 {
  --cm-s: 0.94;
  --cm-box: 1.18;
  --cm-tx: -6px;
  --cm-ty: -3px;
  --cm-r: 0.8deg;
  --cm-op: 0.95;
}
.geo-layer--mid .cloud-mass--6 {
  --cm-s: 0.62;
  --cm-box: 0.88;
  --cm-tx: 3px;
  --cm-ty: 3px;
  --cm-r: -1deg;
  --cm-op: 0.84;
}

.geo-layer--low .cloud-mass--1 {
  --cm-s: 0.96;
  --cm-box: 1.14;
  --cm-tx: -4px;
  --cm-ty: 3px;
  --cm-r: -1deg;
  --cm-op: 0.95;
}
.geo-layer--low .cloud-mass--2 {
  --cm-s: 1.06;
  --cm-box: 1.32;
  --cm-tx: 5px;
  --cm-ty: -5px;
  --cm-r: 1.6deg;
  --cm-op: 0.99;
}
.geo-layer--low .cloud-mass--3 {
  --cm-s: 1.02;
  --cm-box: 1.24;
  --cm-tx: -5px;
  --cm-ty: 4px;
  --cm-r: 1.2deg;
  --cm-op: 0.96;
}
.geo-layer--low .cloud-mass--4 {
  --cm-s: 0.98;
  --cm-box: 1.06;
  --cm-tx: 7px;
  --cm-ty: -1px;
  --cm-r: -1.8deg;
  --cm-op: 0.97;
}
.geo-layer--low .cloud-mass--5 {
  --cm-s: 1.1;
  --cm-box: 1.28;
  --cm-tx: -7px;
  --cm-ty: -4px;
  --cm-r: 0.5deg;
  --cm-op: 1;
}
.geo-layer--low .cloud-mass--6 {
  --cm-s: 0.84;
  --cm-box: 0.92;
  --cm-tx: 4px;
  --cm-ty: 2px;
  --cm-r: -1.2deg;
  --cm-op: 0.92;
}

/* Overlap pairs so reads as one bank, not a dotted line of puffs */
.geo-layer--high .cloud-mass--2 {
  margin-right: -0.35rem;
}
.geo-layer--high .cloud-mass--3 {
  margin-left: -0.28rem;
}
.geo-layer--high .cloud-mass--4 {
  margin-right: -0.3rem;
}
.geo-layer--high .cloud-mass--5 {
  margin-left: -0.32rem;
}

.geo-layer--mid .cloud-mass--1 {
  margin-right: -0.42rem;
}
.geo-layer--mid .cloud-mass--2 {
  margin-left: -0.38rem;
}
.geo-layer--mid .cloud-mass--3 {
  margin-right: -0.48rem;
}
.geo-layer--mid .cloud-mass--4 {
  margin-left: -0.4rem;
  margin-right: -0.35rem;
}
.geo-layer--mid .cloud-mass--5 {
  margin-left: -0.36rem;
}

.geo-layer--low .cloud-mass--2 {
  margin-right: -0.55rem;
}
.geo-layer--low .cloud-mass--3 {
  margin-left: -0.45rem;
}
.geo-layer--low .cloud-mass--4 {
  margin-right: -0.5rem;
}
.geo-layer--low .cloud-mass--5 {
  margin-left: -0.42rem;
  margin-right: -0.45rem;
}
.geo-layer--low .cloud-mass--6 {
  margin-left: -0.48rem;
}

@media (prefers-reduced-motion: reduce) {
  .cloud-mass {
    --cm-strip: 1 !important;
    transform: scale(
      calc(var(--cm-s, 1) * var(--cm-strip, 1) * var(--cm-box, 1) * var(--cm-layer-scale, 1))
    );
  }

  .rain-layer {
    display: none;
  }

  .cloud-mass::before,
  .cloud-mass::after,
  .sky-layers::before,
  .geo-layer--high .geo-drift,
  .geo-layer--mid .geo-drift,
  .geo-layer--low .geo-drift {
    animation: none !important;
  }

  .geo-layer--high,
  .geo-layer--mid,
  .geo-layer--low {
    transform: none !important;
  }
}

.geo-layer--high .cloud-mass {
  --cm-layer-scale: 1;
  --cm-origin: top center;
  --cm-breathe: 15s;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.18)) brightness(0.97);
}

.geo-layer--high .cloud-mass--3,
.geo-layer--high .cloud-mass--5 {
  filter: drop-shadow(0 5px 16px rgba(0, 0, 0, 0.2)) brightness(0.99)
    saturate(1.06);
}

.geo-layer--mid .cloud-mass {
  --cm-layer-scale: 0.94;
  --cm-origin: center center;
  --cm-breathe: 11.8s;
}

.geo-layer--mid .cloud-mass--2,
.geo-layer--mid .cloud-mass--5 {
  filter: drop-shadow(0 7px 20px rgba(0, 0, 0, 0.24)) saturate(1.05)
    hue-rotate(-6deg);
}

.geo-layer--mid .cloud-mass--4,
.geo-layer--mid .cloud-mass--6 {
  filter: drop-shadow(0 5px 16px rgba(0, 0, 0, 0.2)) brightness(1.03);
}

.geo-layer--low .cloud-mass {
  --cm-layer-scale: 0.84;
  --cm-origin: bottom center;
  --cm-breathe: 9.6s;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.26));
}

.geo-layer--low .cloud-mass--2,
.geo-layer--low .cloud-mass--3,
.geo-layer--low .cloud-mass--5 {
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.28)) saturate(1.08)
    hue-rotate(5deg);
}

.geo-layer--low .cloud-mass--1,
.geo-layer--low .cloud-mass--6 {
  filter: drop-shadow(0 7px 20px rgba(0, 0, 0, 0.24)) brightness(1.02);
}

.cloud-mass .cloud-bubble {
  position: absolute;
  display: block;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 32% 28%,
    rgba(205, 220, 255, 0.45) 0%,
    rgba(138, 156, 214, 0.31) 40%,
    rgba(80, 95, 145, 0.17) 72%,
    rgba(28, 34, 58, 0.03) 100%
  );
  box-shadow:
    inset 7px 8px 22px rgba(255, 255, 255, 0.06),
    inset -12px -14px 26px rgba(0, 0, 0, 0.1);
  mix-blend-mode: screen;
  opacity: 0.9;
  filter: blur(0.62px);
  z-index: 1;
}

.cloud-mass .cloud-bubble::after {
  content: "";
  position: absolute;
  inset: 16% 20% auto 12%;
  height: 36%;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(238, 244, 255, 0.28),
    rgba(238, 244, 255, 0)
  );
  filter: blur(4px);
  opacity: 0.45;
}

/* Cloud A — big bank + trailing wisp (6 bubbles) */
.cloud-mass--1 .cloud-bubble:nth-child(1) {
  width: 46%;
  height: 82%;
  left: 0;
  bottom: 0;
}
.cloud-mass--1 .cloud-bubble:nth-child(2) {
  width: 52%;
  height: 96%;
  left: 18%;
  bottom: 0;
}
.cloud-mass--1 .cloud-bubble:nth-child(3) {
  width: 42%;
  height: 74%;
  left: 44%;
  bottom: 2%;
}
.cloud-mass--1 .cloud-bubble:nth-child(4) {
  width: 36%;
  height: 62%;
  right: 8%;
  bottom: 6%;
}
.cloud-mass--1 .cloud-bubble:nth-child(5) {
  width: 30%;
  height: 50%;
  right: 0;
  bottom: 10%;
}
.cloud-mass--1 .cloud-bubble:nth-child(6) {
  width: 22%;
  height: 36%;
  left: 52%;
  top: 0;
}

/* Cloud B — tall stack with leaning cap */
.cloud-mass--2 .cloud-bubble:nth-child(1) {
  width: 40%;
  height: 68%;
  left: 2%;
  bottom: 0;
}
.cloud-mass--2 .cloud-bubble:nth-child(2) {
  width: 46%;
  height: 90%;
  left: 24%;
  bottom: 0;
}
.cloud-mass--2 .cloud-bubble:nth-child(3) {
  width: 42%;
  height: 78%;
  left: 46%;
  bottom: 0;
}
.cloud-mass--2 .cloud-bubble:nth-child(4) {
  width: 34%;
  height: 64%;
  right: 4%;
  bottom: 5%;
}
.cloud-mass--2 .cloud-bubble:nth-child(5) {
  width: 30%;
  height: 48%;
  left: 32%;
  top: 2%;
}

/* Cloud C — wide connected shelf (6 bubbles) */
.cloud-mass--3 .cloud-bubble:nth-child(1) {
  width: 38%;
  height: 64%;
  left: 0;
  bottom: 0;
}
.cloud-mass--3 .cloud-bubble:nth-child(2) {
  width: 44%;
  height: 78%;
  left: 16%;
  bottom: 0;
}
.cloud-mass--3 .cloud-bubble:nth-child(3) {
  width: 48%;
  height: 88%;
  left: 36%;
  bottom: 0;
}
.cloud-mass--3 .cloud-bubble:nth-child(4) {
  width: 38%;
  height: 70%;
  right: 12%;
  bottom: 4%;
}
.cloud-mass--3 .cloud-bubble:nth-child(5) {
  width: 32%;
  height: 56%;
  right: 0;
  bottom: 8%;
}
.cloud-mass--3 .cloud-bubble:nth-child(6) {
  width: 26%;
  height: 42%;
  left: 28%;
  top: 0;
}

/* Cloud D — tight puff cluster */
.cloud-mass--4 .cloud-bubble:nth-child(1) {
  width: 42%;
  height: 70%;
  left: 0;
  bottom: 0;
}
.cloud-mass--4 .cloud-bubble:nth-child(2) {
  width: 48%;
  height: 84%;
  left: 22%;
  bottom: 0;
}
.cloud-mass--4 .cloud-bubble:nth-child(3) {
  width: 38%;
  height: 66%;
  right: 18%;
  bottom: 4%;
}
.cloud-mass--4 .cloud-bubble:nth-child(4) {
  width: 32%;
  height: 54%;
  right: 0;
  bottom: 9%;
}
.cloud-mass--4 .cloud-bubble:nth-child(5) {
  width: 28%;
  height: 44%;
  left: 34%;
  top: 0;
}

/* Cloud E — long stratiform + bump (6 bubbles) */
.cloud-mass--5 .cloud-bubble:nth-child(1) {
  width: 40%;
  height: 68%;
  left: 0;
  bottom: 0;
}
.cloud-mass--5 .cloud-bubble:nth-child(2) {
  width: 46%;
  height: 80%;
  left: 14%;
  bottom: 0;
}
.cloud-mass--5 .cloud-bubble:nth-child(3) {
  width: 50%;
  height: 92%;
  left: 34%;
  bottom: 0;
}
.cloud-mass--5 .cloud-bubble:nth-child(4) {
  width: 40%;
  height: 72%;
  right: 10%;
  bottom: 3%;
}
.cloud-mass--5 .cloud-bubble:nth-child(5) {
  width: 34%;
  height: 58%;
  right: 0;
  bottom: 7%;
}
.cloud-mass--5 .cloud-bubble:nth-child(6) {
  width: 24%;
  height: 40%;
  right: 22%;
  top: 4%;
}

/* Cloud F — small broken wisp */
.cloud-mass--6 .cloud-bubble:nth-child(1) {
  width: 40%;
  height: 60%;
  left: 0;
  bottom: 0;
}
.cloud-mass--6 .cloud-bubble:nth-child(2) {
  width: 44%;
  height: 74%;
  left: 26%;
  bottom: 0;
}
.cloud-mass--6 .cloud-bubble:nth-child(3) {
  width: 36%;
  height: 60%;
  right: 22%;
  bottom: 6%;
}
.cloud-mass--6 .cloud-bubble:nth-child(4) {
  width: 30%;
  height: 50%;
  right: 0;
  bottom: 10%;
}
.cloud-mass--6 .cloud-bubble:nth-child(5) {
  width: 26%;
  height: 40%;
  left: 38%;
  top: 4%;
}

/* Occasional lightning wash */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 35%, rgba(125, 211, 252, 0.12), transparent 42%),
    radial-gradient(circle at 82% 22%, rgba(167, 139, 250, 0.16), transparent 46%),
    linear-gradient(180deg, rgba(180, 200, 255, 0), rgba(200, 215, 255, 0.045) 42%, rgba(255, 255, 255, 0));
  background-size: 160% 160%, 170% 170%, 100% 100%;
  background-repeat: no-repeat;
  animation: aurora-pan 20s ease-in-out infinite, lightning-flash 14s ease-in-out infinite;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Layout ---------- */
.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding-block: clamp(3rem, 8vw, 5rem);
}

.section--tight-top {
  padding-top: clamp(2rem, 5vw, 3rem);
}

.section--compact {
  padding-block: clamp(2rem, 5vw, 3rem);
}

/* Homepage order menu — three clear lanes */
.order-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.order-menu__lane {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(20, 24, 34, 0.96), rgba(12, 15, 24, 0.92));
}

.order-menu__lane--featured {
  border-color: rgba(114, 217, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(114, 217, 255, 0.06), 0 20px 50px rgba(0, 0, 0, 0.35);
}

.order-menu__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.order-menu__hint {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-cyan);
}

.order-menu__note {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.order-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  flex: 1;
}

.order-menu__list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.order-menu__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.order-menu__list li strong {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--brand-cyan);
  white-space: nowrap;
}

.order-menu__list--compact li {
  font-size: 0.8125rem;
}

.order-menu__actions {
  display: grid;
  gap: 0.5rem;
}

.steps--compact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.step--compact {
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}

.step--compact .step__num {
  font-size: 0.75rem;
  margin-bottom: 0.35rem;
}

.step--compact .step__title {
  font-size: 0.9375rem;
  margin-bottom: 0.35rem;
}

.step--compact .step__text {
  font-size: 0.8125rem;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .order-menu {
    grid-template-columns: 1fr;
  }

  .steps--compact {
    grid-template-columns: 1fr;
  }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(
    180deg,
    rgba(7, 8, 15, 0.88) 0%,
    rgba(7, 8, 15, 0.76) 100%
  );
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.03) inset,
    0 8px 32px rgba(0, 0, 0, 0.28);
  animation: header-border-glow 12s ease-in-out infinite;
  overflow: hidden;
  isolation: isolate;
}

.site-header__inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  box-sizing: border-box;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding-block: 0.35rem;
  padding-left: max(0px, env(safe-area-inset-left, 0px));
  padding-right: max(0px, env(safe-area-inset-right, 0px));
  overflow: visible;
}

.nav__toggle {
  display: none;
}

.nav__toggle-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 14px;
}

.nav__toggle-bar {
  position: absolute;
  left: 0;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: var(--text);
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.nav__toggle-bar:nth-child(1) {
  top: 0;
}

.nav__toggle-bar:nth-child(2) {
  top: 6px;
}

.nav__toggle-bar:nth-child(3) {
  top: 12px;
}

@media (max-width: 768px) {
  .site-header {
    min-height: 52px;
    overflow: visible;
  }

  .site-header__inner {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.5rem;
    padding-block: 0.35rem;
  }

  .site-header .logo {
    font-size: 1rem;
    gap: 0.4rem;
    min-width: 0;
    flex: 0 1 auto;
    max-width: calc(100% - 10.5rem);
  }

  .logo__mark {
    width: 1.85rem;
  }

  .logo__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav {
    position: static;
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
  }

  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .nav__toggle:hover,
  .nav__toggle:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(114, 217, 255, 0.35);
    outline: none;
  }

  .nav--open .nav__toggle-bar:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
  }

  .nav--open .nav__toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav--open .nav__toggle-bar:nth-child(3) {
    top: 6px;
    transform: rotate(-45deg);
  }

  .site-header .nav .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 101;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 0.35rem 0;
    list-style: none;
    background: rgba(7, 8, 15, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .site-header .nav.nav--open .nav__links {
    display: flex;
  }

  .site-header .nav .nav__links li {
    margin: 0;
  }

  .nav__links a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
  }

  .nav__links a::after {
    display: none;
  }

  .nav__end {
    margin-left: 0;
    flex-shrink: 0;
  }

  .nav__actions {
    gap: 0.35rem;
  }

  .site-header .nav__cart {
    min-height: 38px;
    padding: 0.35rem 0.55rem;
    font-size: 0.8125rem;
  }

  .site-header .btn {
    min-height: 38px;
    padding: 0.45rem 0.8rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .site-header__inner {
    gap: 0.35rem;
    width: min(100% - 1rem, var(--max));
  }

  .site-header .logo {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 10rem;
  }
}

@media (max-width: 380px) {
  .site-header .logo__text {
    display: none;
  }

  .site-header .logo {
    max-width: none;
    flex: 0 0 auto;
  }

  .site-header .nav {
    gap: 0.25rem;
  }

  .site-header .nav__toggle {
    width: 34px;
    height: 34px;
  }

  .site-header .nav__cart {
    min-height: 34px;
    padding: 0.3rem 0.45rem;
    font-size: 0.75rem;
  }

  .site-header .btn {
    min-height: 34px;
    padding: 0.35rem 0.55rem;
    font-size: 0.75rem;
  }
}

.logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  overflow: visible;
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: clamp(1.15rem, 2.4vw, 1.38rem);
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--text);
  font-variation-settings: "opsz" 24;
  text-decoration: none;
}

.logo__mark {
  display: block;
  width: clamp(2.1rem, 4.8vw, 2.5rem);
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  overflow: visible;
}

.hero__logo-mark {
  width: clamp(3.15rem, 7.5vw, 4.25rem);
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  overflow: visible;
  filter: drop-shadow(0 0 18px rgba(114, 217, 255, 0.22));
}

.logo__mark-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.15rem;
  overflow: visible;
}

.logo__text span {
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(125deg, var(--brand-white) 0%, var(--brand-cyan) 42%, var(--brand-purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo:hover .logo__text span {
  background: linear-gradient(125deg, var(--brand-cyan) 0%, var(--brand-white) 40%, var(--brand-purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem clamp(1.25rem, 4vw, 2.25rem);
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.nav__actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.4rem 0.65rem;
  min-width: 0;
}

.nav__end {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 0;
  margin-left: auto;
  min-width: 0;
}

.nav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 480px) {
  .nav__links {
    gap: 0.5rem 1rem;
  }

  .nav__links a {
    font-size: 0.8125rem;
  }
}

.nav__links a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  position: relative;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.24rem;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(145deg, var(--brand-cyan) 0%, #38bdf8 50%, var(--brand-purple) 100%);
  color: #050810;
  border-color: transparent;
  box-shadow: 0 0 24px rgba(114, 217, 255, 0.25);
}

.btn--primary:hover {
  background: linear-gradient(145deg, var(--brand-white) 0%, var(--brand-cyan) 45%, var(--brand-purple) 100%);
  color: #050810;
  box-shadow: 0 0 32px rgba(167, 86, 255, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: rgba(125, 211, 252, 0.35);
  background: var(--accent-dim);
  color: var(--accent-hover);
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.btn--whatsapp:hover {
  color: #fff;
  filter: brightness(1.06);
}

.btn--large {
  padding: 0.85rem 1.5rem;
  min-height: 3rem;
}

.btn:disabled,
button.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.artwork-feedback {
  font-size: 0.875rem;
  margin: 0.75rem 0 0;
  line-height: 1.45;
}

.artwork-feedback--error {
  color: #fca5a5;
}

.artwork-feedback--ok {
  color: #86efac;
}

.cart-line-design--ok {
  color: #86efac;
}

.cart-line-design--bad {
  color: #fca5a5;
}

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(2.35rem, 7.5vw, 4.25rem);
  padding-bottom: clamp(3.15rem, 10.5vw, 5.5rem);
  text-align: center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  max-width: min(100%, 38ch);
  margin-inline: auto;
  animation: title-glow 6s ease-in-out infinite;
  font-variation-settings: "opsz" 48;
}

.hero__lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 42ch;
  margin: 0 auto 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__actions .btn--primary {
  animation: float-soft 5s ease-in-out infinite;
}

.hero__actions .btn--ghost {
  animation: btn-secondary-float 6.5s ease-in-out infinite 0.35s;
}

/* ---------- Section titles ---------- */
.section__label {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  font-variation-settings: "opsz" 12;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin: 0 0 0.5rem;
  font-variation-settings: "opsz" 36;
}

.section__desc {
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 0 2.5rem;
}

.section__header {
  margin-bottom: 2.5rem;
}

.section__header--center {
  text-align: center;
}

.section__header--center .section__desc {
  margin-inline: auto;
}

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

.product-card {
  display: block;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.product-card:hover {
  border-color: rgba(125, 211, 252, 0.28);
  box-shadow: 0 0 0 1px rgba(125, 211, 252, 0.08), 0 20px 50px rgba(0, 0, 0, 0.45);
  transform: translateY(-4px) scale(1.01);
  transition: border-color 0.35s ease, box-shadow 0.45s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card__icon {
  transform: rotate(12deg) scale(1.05);
  background: rgba(125, 211, 252, 0.14);
}

.product-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease;
}

.product-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.product-card__text {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0 0 1.25rem;
}

.product-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.product-card:hover .product-card__link {
  color: var(--accent-hover);
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.step {
  position: relative;
  padding: 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.28s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.step:hover {
  border-color: rgba(167, 139, 250, 0.28);
  transform: translateY(-2px);
}

.step__num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 0.5rem;
}

.step__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* ---------- Design CTA block ---------- */
.design-cta {
  padding: clamp(2rem, 5vw, 2.75rem);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.design-cta__title {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.design-cta__text {
  color: var(--text-muted);
  max-width: 48ch;
  margin: 0 auto 1.75rem;
  font-size: 1rem;
}

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 480px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature:hover {
  border-color: rgba(45, 212, 191, 0.18);
}

.feature__title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.feature__text {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: 3rem 2rem;
  margin-top: 2rem;
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.site-footer__brand {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-variation-settings: "opsz" 20;
}

.site-footer__accent {
  background: linear-gradient(125deg, #bae6fd 0%, #7dd3fc 45%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.site-footer__tagline {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
  max-width: 28ch;
}

.site-footer h4 {
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
  font-variation-settings: "opsz" 12;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.site-footer a:hover {
  color: var(--text);
}

.site-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

/* ---------- Scroll reveal (replays when scrolling back into view) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  filter: blur(5px);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
  transition-delay: calc(0.055s * min(var(--reveal-i, 0), 12));
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Hero is above the fold — minimal delay so first paint feels instant */
.hero.reveal {
  transition-delay: 0.04s;
}

/* ---------- Utilities ---------- */
.hidden {
  display: none !important;
}

/* Opened as file:// — cart/checkout need http://localhost */
.file-protocol-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  padding: 0.65rem 1rem;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e3a5f 100%);
  border-bottom: 1px solid rgba(125, 211, 252, 0.35);
  color: #e0e7ff;
  font-size: 0.8125rem;
  line-height: 1.45;
  text-align: center;
}

.file-protocol-banner strong {
  color: #fff;
}

.file-protocol-banner code {
  font-family: ui-monospace, monospace;
  font-size: 0.8em;
  padding: 0.1em 0.35em;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}

body.has-file-protocol-banner {
  padding-top: 3.25rem;
}

.nav__cart {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
}

.nav__cart:hover {
  color: var(--text);
}

.cart-badge:empty {
  display: none;
}

.cart-badge:not(:empty)::before {
  content: "(";
}

.cart-badge:not(:empty)::after {
  content: ")";
}

.nav__meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Alerts */
.alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
}

.alert--ok {
  background: rgba(45, 212, 191, 0.08);
  border-color: rgba(45, 212, 191, 0.25);
  color: var(--text);
}

.alert--error {
  background: rgba(248, 113, 113, 0.08);
  border-color: rgba(248, 113, 113, 0.25);
  color: #fecaca;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.data-table th,
.data-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table th {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.code-inline {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cart-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
  background: rgba(125, 211, 252, 0.06);
  border: 1px solid rgba(125, 211, 252, 0.12);
  border-radius: var(--radius-sm);
  max-width: 52ch;
}

.cart-hint__icon {
  color: var(--accent);
  font-size: 0.6rem;
  line-height: 1.8;
  flex-shrink: 0;
}

.cart-empty {
  padding: 2rem 0;
  color: var(--text-muted);
}

.cart-total {
  font-weight: 600;
  margin: 1rem 0;
}

.cart-shipping {
  margin: 1rem 0 0.5rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  max-width: 28rem;
}

.cart-shipping__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.cart-shipping__select {
  width: 100%;
  max-width: 24rem;
  padding: 0.45rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.cart-shipping__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
}

.cart-terms {
  margin: 1.25rem 0 1rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  max-width: 36rem;
}

.cart-terms__label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}

.cart-terms__input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.2rem 0 0;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.cart-terms__text {
  flex: 1;
  min-width: 0;
}

.cart-terms__text a {
  font-weight: 600;
}

.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.qty-input {
  width: 4rem;
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
}

.link-btn {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  text-decoration: underline;
  padding: 0;
}

.link-btn:hover {
  color: var(--accent-hover);
}

/* Auth */
.page-auth {
  min-height: 100vh;
}

.auth-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: clamp(2rem, 8vw, 4rem);
}

.auth-card {
  width: min(100%, 400px);
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.auth-card__title {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.auth-card__lead {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0 0 1.5rem;
}

.field {
  display: block;
  margin-bottom: 1rem;
}

.field__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

.field__input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.field__input:focus {
  outline: none;
  border-color: rgba(45, 212, 191, 0.45);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.25rem;
}

.product-actions label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ---------- Product page ---------- */
.page-hero {
  padding-block: clamp(2rem, 6vw, 3rem) 2rem;
}

.page-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}

.page-hero__back:hover {
  color: var(--accent);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 0.5rem;
  font-variation-settings: "opsz" 36;
}

.page-hero__lead {
  color: var(--text-muted);
  margin: 0;
  max-width: 55ch;
}

.product-form {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .product-form {
    grid-template-columns: 1fr minmax(300px, 360px);
    align-items: start;
  }
}

.form-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.form-panel__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.form-panel__hint {
  margin: -0.5rem 0 1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.product-includes {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.product-includes li + li {
  margin-top: 0.35rem;
}

.product-summary__qty-label--inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* Price + checkout sidebar */
.product-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.75rem;
  margin-bottom: 0.25rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(125, 211, 252, 0.18);
  background: linear-gradient(
    160deg,
    rgba(18, 22, 34, 0.92),
    rgba(125, 211, 252, 0.07)
  );
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

@media (min-width: 900px) {
  .product-summary {
    margin-top: 0;
    position: sticky;
    top: calc(var(--header-h, 64px) + 1rem);
  }
}

.product-in-cart {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.product-in-cart[hidden] {
  display: none !important;
}

.product-summary .price-panel {
  margin-top: 0;
  padding: 0 0 0.15rem;
  border: none;
  background: transparent;
  box-shadow: none;
  width: 100%;
}

.product-summary__qty-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  width: 100%;
}

.product-summary__qty-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex: 1;
  min-width: 0;
}

.product-summary__qty {
  flex-shrink: 0;
}

.product-summary__qty .qty-input {
  width: 5rem;
  min-width: 5rem;
  font-size: 1rem;
  text-align: center;
}

.product-summary .btn {
  width: 100%;
  white-space: nowrap;
}

.product-summary .note {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.price-panel {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(125, 211, 252, 0.22);
  background: linear-gradient(145deg, rgba(125, 211, 252, 0.09), rgba(167, 139, 250, 0.06));
}

.price-panel__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 0.5rem;
}

.price-panel__unit {
  font-family: var(--font-brand);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 0.25rem;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
  word-break: normal;
}

.price-panel__sub {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* On product pages: muted “estimate” until the line is in the cart (see .product-in-cart) */
.price-panel--estimate .price-panel__label {
  color: var(--text-muted);
}

.price-panel--estimate .price-panel__unit {
  color: var(--brand-cyan);
  font-weight: 800;
}

.price-panel--estimate .price-panel__sub {
  color: var(--text-muted);
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.option:hover {
  border-color: rgba(34, 211, 238, 0.2);
  background: rgba(255, 255, 255, 0.02);
}

.option--static {
  cursor: default;
  margin-top: 0.5rem;
}

.option--static:hover {
  border-color: var(--border);
  background: transparent;
}

.option input {
  margin-top: 0.2rem;
  accent-color: var(--accent);
}

.option__body strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.option__body span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.upload-zone {
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.upload-zone:hover {
  border-color: rgba(34, 211, 238, 0.3);
  background: var(--accent-dim);
}

.upload-zone--text-left {
  text-align: left;
}

.upload-zone--picker {
  border: none;
  background: transparent;
  padding: 0;
}

.upload-zone--picker:hover {
  border-color: transparent;
  background: transparent;
}

.upload-zone--text-left p {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.upload-zone--text-left p:last-of-type {
  margin-bottom: 0;
}

.upload-zone__label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text);
}

.upload-picker {
  position: relative;
  margin-top: 1rem;
}

.upload-picker__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.upload-picker__drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 8.5rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  border: 1.5px dashed rgba(34, 211, 238, 0.28);
  background: linear-gradient(
    165deg,
    rgba(34, 211, 238, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 55%
  );
  cursor: pointer;
  text-align: center;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.upload-picker__drop:hover,
.upload-picker__drop:focus-visible {
  border-color: rgba(34, 211, 238, 0.55);
  background: rgba(34, 211, 238, 0.08);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.12);
  outline: none;
}

.upload-picker.is-dragover .upload-picker__drop {
  border-color: rgba(34, 211, 238, 0.75);
  background: rgba(34, 211, 238, 0.12);
  transform: scale(1.01);
}

.upload-picker__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.22);
}

.upload-picker__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.upload-picker__link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.upload-picker__sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: 28ch;
  line-height: 1.45;
}

.artwork-files-panel {
  margin-top: 1rem;
}

.artwork-upload-hint kbd {
  font-size: 0.85em;
  padding: 0.12em 0.45em;
  border-radius: 4px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  font-family: inherit;
}

.artwork-file-list-title {
  margin: 1rem 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.artwork-file-list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0.5rem;
  max-height: 14rem;
  overflow-y: auto;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--border);
  text-align: left;
}

.artwork-file-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text);
  padding: 0.55rem 0.5rem;
  border-radius: var(--radius-sm);
  word-break: break-word;
}

.artwork-file-list__item + .artwork-file-list__item {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.artwork-file-list__meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 1;
  min-width: 0;
}

.artwork-file-list__badge {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  color: var(--accent);
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.artwork-file-list__name {
  flex: 1;
  min-width: 0;
}

.artwork-file-remove {
  flex-shrink: 0;
  min-width: 1.75rem;
  height: 1.75rem;
  margin: 0;
  padding: 0 0.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition:
    color 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}

.artwork-file-remove:hover {
  color: #fecaca;
  border-color: rgba(248, 113, 113, 0.45);
  background: rgba(248, 113, 113, 0.12);
}

.artwork-file-list__empty {
  padding: 0.85rem 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

.upload-zone p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sidebar-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.sidebar-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.sidebar-card .btn {
  width: 100%;
}

.note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.5;
}

/* Admin stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s ease, box-shadow 0.35s ease;
}

.stat-card:hover {
  border-color: rgba(125, 211, 252, 0.2);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.35);
}

.stat-card__value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* Chat */
.chat-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.chat-log {
  max-height: 360px;
  overflow-y: auto;
  padding: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chat-msg {
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  line-height: 1.45;
  max-width: 92%;
  animation: chat-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes chat-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-msg--user {
  align-self: flex-end;
  background: rgba(125, 211, 252, 0.12);
  border: 1px solid rgba(125, 211, 252, 0.2);
}

.chat-msg--staff {
  align-self: flex-start;
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.2);
}

.chat-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.chat-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.chat-form textarea {
  flex: 1 1 200px;
  min-height: 72px;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-family: inherit;
  resize: vertical;
}

.section-block {
  margin-bottom: 3rem;
}

.section-block h2 {
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

/* ---------- Phones & touch — readable type, tappable targets, no iOS input zoom ---------- */
@media (max-width: 640px) {
  .container {
    width: min(100% - 1.25rem, var(--max));
  }

  .nav__links {
    row-gap: 0.35rem;
  }

  .hero__title,
  .page-hero__title {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .table-wrap {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .qty-input,
  input[type="number"],
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="url"],
  select,
  textarea {
    font-size: max(16px, 1rem);
  }

  .btn {
    min-height: 44px;
  }

  .nav__cart {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .form-panel,
  .product-summary {
    padding: 1.1rem 1rem;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========== Cloudora Studio — layout ========== */

.hero--studio {
  position: relative;
  padding-top: clamp(2.5rem, 7vw, 4.5rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
  overflow: visible;
  text-align: left;
}

.hero__studio-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  align-items: center;
  gap: clamp(1.6rem, 3.8vw, 3.2rem);
  text-align: left;
  overflow: visible;
}

.hero__atmosphere {
  position: absolute;
  inset: 0 0 auto 0;
  height: clamp(220px, 42vh, 380px);
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero__atmosphere .sky-layers {
  inset: -12px 0 0;
  height: calc(100% + 12px);
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.92) 0%,
    #000 22%,
    #000 58%,
    rgba(0, 0, 0, 0.72) 78%,
    rgba(0, 0, 0, 0.28) 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.92) 0%,
    #000 22%,
    #000 58%,
    rgba(0, 0, 0, 0.72) 78%,
    rgba(0, 0, 0, 0.28) 92%,
    transparent 100%
  );
}

.hero__brand-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
  overflow: visible;
}

.hero__brand-row .hero__eyebrow {
  margin: 0;
}

.hero--studio .hero__title:not(.hero__title--studio) {
  margin-inline: 0;
  max-width: 20rem;
  animation: none;
}

.hero__eyebrow {
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 1rem;
  font-variation-settings: "opsz" 12;
}

.hero__eyebrow-accent {
  background: linear-gradient(125deg, var(--brand-cyan) 0%, var(--brand-white) 45%, var(--brand-purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  letter-spacing: inherit;
}

.hero__lead--wide {
  max-width: 36rem;
  margin: 0 0 2rem;
  text-align: left;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
}

.hero--studio .hero__lead {
  margin-inline: 0;
}

.hero--studio .hero__actions {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 2rem;
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  width: 100%;
  max-width: 28rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.hero__stats li {
  min-width: 0;
}

.hero__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
  font-variation-settings: "opsz" 20;
}

.hero-showcase {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  border-radius: 0;
  border: none;
  box-shadow: none;
  padding: 1.35rem;
  overflow: visible;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.hero-showcase.hero-showcase--visual {
  --showcase-pad: clamp(0.5rem, 1.6vw, 0.85rem);
  --showcase-ring: 2px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--showcase-pad);
  gap: 0;
  border-radius: 0;
  background: transparent;
  min-height: 0;
  align-self: center;
  width: 100%;
  overflow: visible;
}

.hero-showcase.hero-showcase--visual::before,
.hero-showcase.hero-showcase--visual::after {
  content: none;
}

.hero-showcase__visual {
  flex: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: 0;
  overflow: visible;
  border: none;
  background: transparent;
  min-height: 0;
  position: relative;
  z-index: 1;
  padding: 0;
  width: 100%;
}

/* Cloud-shaped ambient RGB aura behind the preview */
.hero-showcase__halo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 800 / 533;
  pointer-events: none;
  z-index: 0;
  background: conic-gradient(
    from var(--brand-ring-angle),
    var(--brand-cyan) 0deg,
    var(--brand-purple) 120deg,
    var(--brand-white) 240deg,
    var(--brand-cyan) 360deg
  );
  -webkit-mask: url(#cloudora-cloud-glow-mask);
  mask: url(#cloudora-cloud-glow-mask);
  filter: blur(20px);
  opacity: 0.72;
  animation: brand-ring-spin 5s linear infinite;
  transition: opacity 0.45s ease, filter 0.45s ease, transform 0.45s ease;
}

.hero-showcase__frame {
  position: relative;
  isolation: isolate;
  z-index: 1;
  width: 100%;
  aspect-ratio: 800 / 533;
  border-radius: 0.65rem;
  transition: transform 0.35s ease;
}

/* Spinning RGB light traveling around the preview card */
.hero-showcase__frame::before {
  content: "";
  position: absolute;
  inset: calc(-1 * var(--showcase-ring));
  padding: var(--showcase-ring);
  border-radius: inherit;
  background: conic-gradient(
    from var(--brand-ring-angle),
    var(--brand-cyan) 0deg,
    var(--brand-purple) 120deg,
    var(--brand-white) 240deg,
    var(--brand-cyan) 360deg
  );
  animation: brand-ring-spin 4.5s linear infinite;
  pointer-events: none;
  z-index: -1;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  filter:
    blur(3px)
    drop-shadow(0 0 10px rgba(114, 217, 255, 0.55))
    drop-shadow(0 0 18px rgba(167, 86, 255, 0.35))
    drop-shadow(0 0 26px rgba(255, 255, 255, 0.15));
  transition: filter 0.4s ease, transform 0.4s ease;
}

.hero-showcase__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: inherit;
  position: relative;
  z-index: 1;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.48);
}

.hero-showcase__caption {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 0.15rem;
  text-align: left;
}

.hero-showcase__desc {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 36rem;
}

.hero-showcase:not(.hero-showcase--visual) {
  border-radius: 1.15rem;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
  background: linear-gradient(165deg, rgba(18, 22, 32, 0.9) 0%, rgba(12, 15, 25, 0.72) 100%);
}

.hero-showcase--visual:hover {
  filter: none;
  box-shadow: none;
}

.hero-showcase--visual:hover .hero-showcase__frame {
  transform: translateY(-5px) scale(1.012);
}

.hero-showcase--visual:hover .hero-showcase__frame::before {
  filter:
    blur(5px)
    drop-shadow(0 0 20px rgba(114, 217, 255, 0.95))
    drop-shadow(0 0 36px rgba(167, 86, 255, 0.75))
    drop-shadow(0 0 52px rgba(255, 255, 255, 0.35))
    drop-shadow(0 0 72px rgba(114, 217, 255, 0.45));
}

.hero-showcase--visual:hover .hero-showcase__halo {
  opacity: 1;
  filter: blur(34px);
  transform: scale(1.06);
}

.hero-showcase:not(.hero-showcase--visual):hover {
  box-shadow: 0 34px 85px rgba(0, 0, 0, 0.56), 0 0 36px rgba(114, 217, 255, 0.14);
}

.hero__title--studio,
.service-card,
.portfolio-item,
.design-cta--studio,
.section__header--center {
  overflow: visible;
}

.portfolio-item--image {
  overflow: hidden;
}

.hero-showcase__card {
  flex: 1;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  padding: 1rem 1rem 0.9rem;
  backdrop-filter: blur(10px);
}

.hero-showcase__kicker {
  margin: 0 0 0.4rem;
  font-family: var(--font-brand);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-variation-settings: "opsz" 12;
}

.hero-showcase__title {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  font-variation-settings: "opsz" 24;
}

.hero-showcase--visual .hero-showcase__footer {
  margin-top: 0;
  padding-top: 0;
}

.hero-showcase__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 0.25rem;
}

.hero-showcase__chip {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(12, 15, 25, 0.82);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #cfd6e8;
  padding: 0.52rem 0.72rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
}

.hero-showcase__chip--float {
  position: absolute;
  top: 1rem;
  right: 0.8rem;
  animation: chip-float 5.6s ease-in-out infinite;
}

.hero-showcase__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
  color: var(--text-muted);
  font-size: 0.835rem;
}

.hero-showcase__list li {
  position: relative;
  padding-left: 1rem;
}

.hero-showcase__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.57em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  box-shadow: 0 0 10px rgba(125, 211, 252, 0.45);
}

.section--alt {
  padding-block: clamp(3rem, 8vw, 5rem);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2.1rem);
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(18, 22, 31, 0.82) 0%, rgba(12, 15, 24, 0.65) 100%);
  border: 1px solid rgba(125, 211, 252, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.section__cta-link {
  text-align: center;
  margin-top: 2rem;
}

.section__cta-link a {
  font-weight: 600;
  color: var(--accent);
}

.page-hero__lead--wide {
  max-width: 52ch;
}

.service-card,
.pricing-card,
.retainer-banner,
.portfolio-item,
.order-card,
.cart-bar,
.services-list {
  backdrop-filter: blur(9px);
}

.service-card,
.pricing-card,
.order-card {
  position: relative;
  overflow: hidden;
}

.service-card::before,
.pricing-card::before,
.order-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -34%;
  width: 26%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 45%,
    rgba(255, 255, 255, 0.07) 55%,
    transparent 100%
  );
  pointer-events: none;
  animation: card-glint 8.8s ease-in-out infinite;
}

.service-grid {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.service-card {
  padding: 1.72rem;
  border: none;
  border-radius: 1rem;
  height: 100%;
  transition: transform 0.38s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  --lift: -6px;
  box-shadow:
    0 20px 42px rgba(6, 9, 17, 0.6),
    0 0 36px rgba(114, 217, 255, 0.2),
    0 0 52px rgba(167, 86, 255, 0.12);
}

.service-card:hover::before {
  filter:
    drop-shadow(0 0 12px rgba(114, 217, 255, 0.7))
    drop-shadow(0 0 24px rgba(167, 86, 255, 0.45));
}

.service-card__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(114, 217, 255, 0.2), rgba(167, 86, 255, 0.18));
  color: var(--brand-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.service-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.service-card__list li::before {
  content: "— ";
  color: var(--accent);
}

.service-card__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.service-card__link:hover {
  text-decoration: underline;
}

.pricing-grid {
  display: grid;
  gap: 1.3rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pricing-card {
  position: relative;
  padding: 2rem 1.7rem 1.6rem;
  background: linear-gradient(160deg, rgba(22, 28, 40, 0.95), rgba(12, 16, 26, 0.93));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 34px rgba(0, 0, 0, 0.36);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.pricing-card:hover {
  --lift: -6px;
  border-color: rgba(125, 211, 252, 0.32);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.46), 0 0 34px rgba(125, 211, 252, 0.08);
}

.pricing-card--featured {
  border-color: rgba(125, 211, 252, 0.48);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.5), 0 0 40px rgba(125, 211, 252, 0.18);
  --lift: -2px;
}

.pricing-card__badge {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--accent);
  color: #050810;
}

.pricing-card__tier {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 0.35rem;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

.pricing-card__price {
  margin: 0 0 0.25rem;
}

.pricing-card__amount {
  font-family: var(--font-brand);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 48;
}

.pricing-card__note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.pricing-card__features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-card__features li {
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.pricing-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.btn--block {
  width: 100%;
}

.btn--sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
}

.retainer-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding: 1.9rem 2rem;
  background: linear-gradient(145deg, rgba(20, 26, 38, 0.95), rgba(13, 17, 28, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
}

.retainer-banner__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 0.35rem;
}

.retainer-banner__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 42ch;
}

.steps--studio {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.portfolio-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, 1fr);
}

.portfolio-grid--brand {
  align-items: stretch;
  grid-template-columns: 1fr;
}

.portfolio-grid--brand .portfolio-item {
  aspect-ratio: 40 / 27;
  width: 100%;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .portfolio-grid--brand {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 63rem;
    margin-inline: auto;
    align-items: stretch;
  }

  .portfolio-grid--brand .portfolio-item {
    aspect-ratio: 40 / 27;
    width: 100%;
  }
}

.portfolio-item {
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  border: none;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.portfolio-item--image {
  padding: 0;
  align-items: stretch;
}

.portfolio-item--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #07080f;
}

.portfolio-grid__captions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  max-width: 63rem;
  margin: 0.75rem auto 0;
  text-align: center;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
}

.portfolio-grid__captions span {
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

@media (min-width: 768px) {
  .portfolio-grid__captions {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .portfolio-grid__captions {
    max-width: none;
  }
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.45),
    0 0 32px rgba(114, 217, 255, 0.22),
    0 0 48px rgba(167, 86, 255, 0.14);
}

.portfolio-item:hover::before {
  filter:
    drop-shadow(0 0 14px rgba(114, 217, 255, 0.75))
    drop-shadow(0 0 28px rgba(167, 86, 255, 0.5))
    drop-shadow(0 0 40px rgba(255, 255, 255, 0.2));
}

.portfolio-item--placeholder {
  background:
    radial-gradient(120% 100% at 10% 10%, rgba(125, 211, 252, 0.15) 0%, transparent 55%),
    linear-gradient(145deg, rgba(21, 26, 38, 0.9) 0%, rgba(17, 22, 35, 0.94) 100%);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.design-cta--studio .design-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.services-page__heading {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(125, 211, 252, 0.22);
}

.services-page__tag {
  display: block;
  font-family: var(--font-body, inherit);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  overflow: hidden;
}

.services-list__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(160deg, rgba(22, 27, 39, 0.88), rgba(14, 18, 29, 0.88));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9375rem;
}

.services-list__row:last-child {
  border-bottom: none;
}

.services-list__row span:last-child {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

.order-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 0 1.25rem;
}

.order-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.order-grid--addons {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.order-card {
  padding: 1.5rem;
  background: linear-gradient(165deg, rgba(22, 28, 40, 0.94), rgba(13, 17, 28, 0.93));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.order-card:hover {
  transform: translateY(-5px);
  border-color: rgba(125, 211, 252, 0.28);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

.order-card--featured {
  border-color: rgba(125, 211, 252, 0.44);
  box-shadow: 0 0 28px rgba(125, 211, 252, 0.11);
}

.order-card--compact {
  padding: 1.15rem;
}

.order-card--compact .order-card__name {
  font-size: 0.9375rem;
}

.order-card--highlight {
  box-shadow: 0 0 0 2px var(--accent), 0 0 32px var(--accent-glow);
}

.order-card__name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 0.35rem;
}

.order-card__price {
  font-family: var(--font-brand);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 24;
}

.order-card__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.45;
}

.order-card__btn--added {
  border-color: rgba(134, 239, 172, 0.5) !important;
  color: #86efac !important;
}

.order-jump--sticky {
  position: sticky;
  top: calc(var(--header-h, 64px) + 0.5rem);
  z-index: 20;
  margin-bottom: 0;
  padding: 0.2rem 0 0.35rem;
  background: transparent;
  backdrop-filter: none;
}

.order-studio__rail.order-jump--sticky {
  position: static;
  top: auto;
  z-index: auto;
  padding: 0;
}

.container--menu {
  max-width: 76rem;
}

.order-studio {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 1.25rem;
  margin-bottom: 0.5rem;
}

.order-studio__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.order-studio__back:hover {
  color: var(--accent);
}

.order-studio__label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-cyan);
}

.order-studio__title {
  margin: 0 0 0.85rem;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5.5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.order-studio__gradient {
  display: inline-block;
  background: linear-gradient(
    115deg,
    var(--brand-cyan) 0%,
    var(--brand-purple) 52%,
    rgba(255, 255, 255, 0.92) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.order-studio__lead {
  margin: 0 0 1.35rem;
  max-width: 48ch;
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  line-height: 1.6;
  color: var(--text-muted);
}

.order-studio__rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  margin: 0;
}

.order-studio__rail a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  backdrop-filter: blur(8px);
  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.35s ease,
    transform 0.2s ease;
}

.order-studio__rail a:hover {
  color: var(--text);
  border-color: rgba(114, 217, 255, 0.35);
  background: rgba(114, 217, 255, 0.06);
  transform: translateY(-1px);
}

.order-studio__rail a.is-active {
  color: var(--text);
  border-color: rgba(114, 217, 255, 0.45);
  background: linear-gradient(135deg, rgba(114, 217, 255, 0.14), rgba(167, 86, 255, 0.1));
  box-shadow:
    0 0 20px rgba(114, 217, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.order-studio__rail-code {
  font-family: var(--font-brand);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--brand-cyan);
  opacity: 0.85;
}

.order-studio__feedback {
  margin: 1rem 0 0;
}

.menu-hub,
.menu-studio {
  position: relative;
}

.menu-studio {
  padding-bottom: 3rem;
}

.menu-studio__ambient {
  position: absolute;
  inset: -3% 4% auto;
  height: 38%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 68% 82% at 50% 0%, rgba(114, 217, 255, 0.07), transparent 74%),
    radial-gradient(ellipse 42% 56% at 50% 100%, rgba(167, 86, 255, 0.04), transparent 78%);
}

.menu-shell {
  position: relative;
  z-index: 1;
}

.menu-selector {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .menu-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1020px) {
  .menu-selector {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.menu-selector__tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  min-height: 132px;
  padding: 1rem 1.05rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.03), transparent 45%),
    linear-gradient(165deg, rgba(17, 20, 32, 0.95), rgba(11, 13, 22, 0.95));
  text-align: left;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.28s ease;
}

.menu-selector__tab:hover {
  transform: translateY(-2px);
  border-color: rgba(114, 217, 255, 0.28);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}

.menu-selector__tab.is-active {
  border-color: rgba(114, 217, 255, 0.42);
  background:
    linear-gradient(160deg, rgba(114, 217, 255, 0.11), transparent 48%),
    linear-gradient(165deg, rgba(19, 24, 37, 0.96), rgba(10, 13, 22, 0.96));
  box-shadow:
    0 0 0 1px rgba(114, 217, 255, 0.22),
    0 16px 30px rgba(0, 0, 0, 0.34);
}

.menu-selector__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.menu-selector__subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.menu-selector__meta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-cyan);
  border: 1px solid rgba(114, 217, 255, 0.2);
  background: rgba(114, 217, 255, 0.08);
}

.menu-panels {
  margin-top: 1rem;
}

.menu-panel {
  display: none;
  position: relative;
  overflow: hidden;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(162deg, rgba(255, 255, 255, 0.03) 0%, transparent 42%),
    linear-gradient(168deg, rgba(19, 23, 35, 0.95), rgba(11, 13, 21, 0.96));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
}

.menu-panel--bundle {
  background:
    linear-gradient(162deg, rgba(167, 86, 255, 0.08) 0%, transparent 45%),
    linear-gradient(168deg, rgba(24, 19, 38, 0.95), rgba(11, 13, 21, 0.96));
}

.menu-panel.is-active {
  display: block;
}

.menu-panel.is-animating .menu-card {
  animation: menu-card-pop 0.42s cubic-bezier(0.34, 1.25, 0.64, 1) backwards;
}

.menu-panel.is-animating .menu-card:nth-child(1) { animation-delay: 0.03s; }
.menu-panel.is-animating .menu-card:nth-child(2) { animation-delay: 0.06s; }
.menu-panel.is-animating .menu-card:nth-child(3) { animation-delay: 0.09s; }
.menu-panel.is-animating .menu-card:nth-child(4) { animation-delay: 0.12s; }

@keyframes menu-card-pop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.menu-panel__header {
  padding: 1.15rem 1.25rem 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.menu-panel__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(114, 217, 255, 0.85);
}

.menu-panel__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  letter-spacing: -0.03em;
}

.menu-panel__summary {
  margin: 0.4rem 0 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 65ch;
}

.menu-panel__content {
  padding: 0.3rem 1.2rem 1.2rem;
}

.menu-panel__subsection {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-panel__subsection:first-child {
  border-top: none;
  padding-top: 0.55rem;
  margin-top: 0;
}

.menu-panel__subsection-head {
  margin-bottom: 0.75rem;
}

.menu-panel__subsection-title {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 0.99rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.menu-panel__subsection-intro {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.52;
  color: var(--text-muted);
}

.menu-panel__tag {
  display: inline-flex;
  margin-left: 0.35rem;
  vertical-align: middle;
  color: var(--brand-purple);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.menu-panel__intro {
  margin: 0 0 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.55;
}

.menu-panel__note {
  margin: 0.85rem 0 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.menu-panel__note a {
  color: var(--accent);
  font-weight: 600;
}

.menu-grid {
  display: grid;
  gap: 0.78rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.menu-grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.menu-grid--addons {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.menu-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.05rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(146deg, rgba(255, 255, 255, 0.03) 0%, transparent 45%),
    linear-gradient(165deg, rgba(23, 28, 42, 0.95), rgba(14, 17, 28, 0.95));
  transition: transform 0.24s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.menu-card:hover {
  transform: translateY(-2px);
  border-color: rgba(114, 217, 255, 0.24);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}

.menu-card > * {
  position: relative;
  z-index: 1;
}

.menu-card--featured {
  border-color: rgba(114, 217, 255, 0.2);
}

.menu-card--bundle {
  border-color: rgba(167, 86, 255, 0.24);
}

.menu-card--highlight {
  box-shadow:
    0 0 0 1px rgba(114, 217, 255, 0.4),
    0 0 22px rgba(114, 217, 255, 0.16);
}

.menu-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
}

.menu-card__name {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.menu-card__price {
  margin: 0;
  flex-shrink: 0;
  font-family: var(--font-brand);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--brand-cyan);
  letter-spacing: -0.03em;
}

.menu-card__desc {
  margin: 0;
  flex: 1;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.menu-card__foot {
  margin-top: 0.3rem;
}

.menu-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  width: 100%;
  padding: 0.56rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: inherit;
  font-size: 0.79rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.24s ease, background 0.24s ease, transform 0.18s ease;
}

.menu-card__action:hover {
  border-color: rgba(114, 217, 255, 0.4);
  background: rgba(114, 217, 255, 0.08);
  transform: translateY(-1px);
}

.menu-card__action--primary {
  border-color: rgba(114, 217, 255, 0.3);
  background: linear-gradient(135deg, rgba(114, 217, 255, 0.13), rgba(167, 86, 255, 0.1));
}

.menu-card__action--primary:hover {
  background: linear-gradient(135deg, rgba(114, 217, 255, 0.18), rgba(167, 86, 255, 0.14));
}

.menu-card__action-icon {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.85;
}

.menu-card__action--added,
.menu-card__btn--added {
  border-color: rgba(134, 239, 172, 0.5) !important;
  color: #86efac !important;
  background: rgba(134, 239, 172, 0.08) !important;
}

.menu-card--compact {
  padding: 0.92rem 0.95rem;
}

.menu-card--compact .menu-card__name {
  font-size: 0.86rem;
}

.menu-card--compact .menu-card__price {
  font-size: 1.02rem;
}

@media (max-width: 699px) {
  .menu-selector {
    display: flex;
    overflow-x: auto;
    gap: 0.6rem;
    padding-bottom: 0.2rem;
    scroll-snap-type: x proximity;
  }

  .menu-selector__tab {
    min-width: 220px;
    min-height: 122px;
    scroll-snap-align: start;
  }

  .menu-grid--2 {
    grid-template-columns: 1fr;
  }

  .order-studio__title {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-panel.is-animating .menu-card {
    animation: none;
  }
}

.order-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin-bottom: 1.75rem;
}

.order-jump a {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.order-jump a:hover {
  color: var(--accent);
  border-color: rgba(125, 211, 252, 0.35);
  background: rgba(125, 211, 252, 0.06);
}

.order-explainer {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .order-explainer {
    grid-template-columns: repeat(3, 1fr);
  }
}

.order-explainer__card {
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(22, 28, 40, 0.88), rgba(13, 17, 28, 0.92));
}

.order-explainer__title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.order-explainer__card p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.order-section__intro {
  margin: -0.75rem 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 62ch;
}

.order-card__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  margin: 0 0 0.65rem;
}

.order-card__badge--pkg {
  color: #a78bfa;
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.25);
}

.order-card__badge--indi {
  color: #7dd3fc;
  background: rgba(125, 211, 252, 0.1);
  border: 1px solid rgba(125, 211, 252, 0.22);
}

.order-card__badge--print {
  color: #86efac;
  background: rgba(134, 239, 172, 0.1);
  border: 1px solid rgba(134, 239, 172, 0.22);
}

.order-card__list {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.order-card__price--from {
  font-size: 1.05rem;
}

.order-card--print-link {
  grid-column: span 1;
}

@media (min-width: 640px) {
  .order-grid--print {
    grid-template-columns: 1.4fr 1fr;
  }
}

.dual-path {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .dual-path {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dual-path__item {
  padding: 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-card);
  text-align: center;
}

.dual-path__item h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.dual-path__item p {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Print configurators on order page */
.print-showcase {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .print-showcase {
    grid-template-columns: 1fr 1fr;
  }
}

.print-showcase__card {
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(134, 239, 172, 0.22);
  background: linear-gradient(165deg, rgba(22, 32, 28, 0.92), rgba(13, 20, 17, 0.94));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.print-showcase__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}

.print-showcase__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.print-showcase__from {
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
}

.order-section__title--primary {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
}

.order-section__optional {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.order-card__badge--bundle {
  color: #fcd34d;
  background: rgba(252, 211, 77, 0.1);
  border: 1px solid rgba(252, 211, 77, 0.28);
}

.section--bundles {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2.5rem;
  opacity: 0.95;
}

.order-grid--2 {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.order-section-header {
  margin-bottom: 1.25rem;
}

.order-overview {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(125, 211, 252, 0.15);
  background: rgba(125, 211, 252, 0.04);
}

@media (min-width: 640px) {
  .order-overview {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.order-overview__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.order-overview__num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  background: rgba(125, 211, 252, 0.15);
  color: var(--accent);
}

.order-overview__item strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 0.15rem;
}

.order-overview__item p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.order-overview__step {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.35rem;
}

.order-divider {
  text-align: center;
  padding: 1.5rem 0 0.5rem;
  margin: 0.5rem 0 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.order-divider p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.order-workflow-hint {
  margin: -0.5rem 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--text-muted);
  background: rgba(134, 239, 172, 0.06);
  border: 1px solid rgba(134, 239, 172, 0.15);
}

.order-workflow-hint a {
  color: var(--accent);
}


.cart-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(155deg, rgba(20, 26, 38, 0.92), rgba(12, 16, 26, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

[data-tilt] {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--lift));
  transform-style: preserve-3d;
  transition: transform 0.22s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

@media (max-width: 640px) {
  .hero__studio-inner {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .hero__atmosphere {
    height: clamp(190px, 36vh, 280px);
  }

  .hero__content {
    align-items: center;
    width: 100%;
  }

  .hero__brand-row {
    justify-content: center;
  }

  .hero__content,
  .hero__title--studio,
  .hero__lead--wide {
    text-align: center;
  }

  .hero--studio .hero__title {
    margin-inline: auto;
    max-width: 100%;
  }

  .hero__title--studio {
    max-width: 100%;
  }

  .hero__stats {
    justify-items: center;
    text-align: center;
    max-width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero--studio .hero__actions {
    justify-content: center;
  }

  .hero-showcase {
    min-height: 280px;
  }

  .hero-showcase__chip {
    font-size: 0.66rem;
  }

  .section--alt {
    padding-inline: 0.95rem;
  }
}
