* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { overflow-x: hidden; }
html { min-height: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #0d0d0d;
  background-image:
    radial-gradient(ellipse 70% 60% at 15% 20%, rgba(255, 87, 0, 0.18) 0%, rgba(255, 87, 0, 0) 65%),
    radial-gradient(ellipse 60% 50% at 85% 85%, rgba(255, 87, 0, 0.12) 0%, rgba(255, 87, 0, 0) 65%),
    linear-gradient(27deg, #151515 2px, transparent 2px),
    linear-gradient(207deg, #151515 2px, transparent 2px),
    linear-gradient(27deg, #222 2px, transparent 2px),
    linear-gradient(207deg, #222 2px, transparent 2px),
    linear-gradient(90deg, #1b1b1b 4px, transparent 4px),
    linear-gradient(#1d1d1d 25%, #1a1a1a 25%, #1a1a1a 50%, transparent 50%, transparent 75%, #242424 75%, #242424);
  background-position:
    0 0,
    0 0,
    0 2px,
    4px 0,
    0 4px,
    4px 2px,
    0 0,
    0 0;
  background-size:
    100% 100%,
    100% 100%,
    8px 8px,
    8px 8px,
    8px 8px,
    8px 8px,
    8px 8px,
    8px 8px;
  background-attachment: fixed;
  color: #f5f5f5;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bento { flex: 1; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container { padding: 0 1.5rem; }
}

.site-header {
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10, 10, 10, 0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.site-header .container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.admin-login {
  display: none; /* Admin Login lives in the hamburger menu on all sizes */
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.admin-login:hover {
  background: #ff5700;
  border-color: #ff5700;
  color: #ffffff;
}
.admin-login:focus-visible {
  outline: 2px solid #ff5700;
  outline-offset: 3px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  order: -1; /* keep the logo on the left on desktop/tablet */
}
.logo-img {
  height: clamp(28px, 4.5vw, 40px);
  width: auto;
  display: block;
}
.hamburger {
  appearance: none;
  background: none;
  border: 0;
  padding: 0.4rem;
  width: 44px;
  height: 44px;
  display: flex; /* hamburger nav shown on all screen sizes */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border-radius: 4px;
  margin-left: auto; /* push the hamburger to the right edge */
  transition: background-color 0.2s;
}
.hamburger:hover { background-color: rgba(255,255,255,0.06); }
.hamburger:focus-visible {
  outline: 2px solid #ff5700;
  outline-offset: 2px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #f5f5f5;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Spotlight dropdown — floats over the hero, doesn't push content down. */
.site-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 1rem;
  z-index: 200;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.5rem;
  border-radius: 14px;
  background: rgba(16, 16, 18, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 22px 55px -14px rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
}
.site-menu[hidden] { display: none; }
@media (min-width: 768px) {
  .site-menu { right: 1.5rem; } /* match the wider container padding */
}

/* Phones only: center the logo in the nav bar (left on tablet/desktop). */
@media (max-width: 600px), (orientation: landscape) and (max-height: 500px) {
  .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
/* The menu's Admin Login keeps the original pill-button styling/font. */
.site-menu .admin-login {
  display: flex;
  justify-content: center;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(269px, 44.8vh, 525px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #000;
  background-image: url('../media/Hero.png?v=4');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 85%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 85%, transparent 100%);
}
@media (max-width: 1024px) {
  .hero { min-height: clamp(220px, 32vh, 360px); }
}
@media (max-width: 640px) {
  .hero { min-height: clamp(150px, 24vh, 220px); }
}

.hero-img-2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  z-index: 3;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 85%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 85%, transparent 100%);
}
/* Tablet + mobile: keep Hero.png bg and Hero 2 Lambo in lockstep — same fit, same position */
@media (max-width: 1024px) {
  .hero::before {
    background-size: cover;
    background-position: center bottom;
  }
  .hero-img-2 {
    object-fit: cover;
    object-position: center bottom;
  }
}

.hero-overlay { display: none; }

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 12% 8%, rgba(255, 87, 0, 0.32) 0%, rgba(255, 87, 0, 0) 60%),
    radial-gradient(ellipse 45% 40% at 92% 88%, rgba(80, 120, 255, 0.22) 0%, rgba(80, 120, 255, 0) 60%),
    radial-gradient(ellipse 70% 50% at 50% 110%, rgba(255, 87, 0, 0.22) 0%, rgba(255, 87, 0, 0) 70%);
  mix-blend-mode: screen;
  animation: heroGlowDrift 22s ease-in-out infinite alternate;
}
.hero::after { display: none; }
@keyframes heroGlowDrift {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-1.5%, -1%, 0); }
}

.hero-content-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.6rem, 1.6vw, 1.2rem);
  padding-bottom: clamp(2rem, 8vh, 5rem);
  pointer-events: none;
  animation: heroFadeUp 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero-content-wrap .container {
  width: 100%;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: clamp(0.6rem, 1.6vw, 1.2rem);
}

.toolbox-container {
  container-type: inline-size;
}
.hero .toolbox-word {
  display: inline-block;
  margin: 0;
  font-family: "gear-wide-ultra", sans-serif;
  font-weight: 400;
  font-size: 9.9cqw;
  line-height: 0.95;
  letter-spacing: 0;
  white-space: nowrap;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.05) 0px,
      rgba(255, 255, 255, 0.05) 1px,
      rgba(0, 0, 0, 0.06) 1px,
      rgba(0, 0, 0, 0.06) 2px
    ),
    radial-gradient(
      ellipse 70% 90% at 50% 22%,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.10) 45%,
      rgba(255, 255, 255, 0) 70%
    ),
    radial-gradient(
      ellipse 110% 130% at 50% 50%,
      #eef1f4 0%,
      #d4d8dd 25%,
      #a8acb2 50%,
      #7c8087 72%,
      #4d5057 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter:
    drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.35))
    drop-shadow(-1px 1px 0 #3a3d42)
    drop-shadow(-2px 2px 0 #2a2c30)
    drop-shadow(-3px 3px 0 #1f2125)
    drop-shadow(-4px 4px 0 #16181b)
    drop-shadow(-5px 5px 0 #0e1012)
    drop-shadow(-6px 6px 0 #08090b)
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 1px rgba(0, 0, 0, 0.65));
}
.toolbox-stack {
  display: inline-block;
  width: max-content;
  max-width: 100%;
}
.toolbox-underline {
  position: relative;
  z-index: 5;
  display: block;
  width: 100%;
  height: clamp(2px, 0.5cqw, 6px);
  margin-top: clamp(-1rem, -1.2cqw, -0.5rem);
  background: #ff5700;
  box-shadow:
    0 0 12px rgba(255, 87, 0, 0.85),
    0 0 28px rgba(255, 87, 0, 0.55);
}

.hero-logo {
  width: 320px;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.7));
}

.hero-card {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.9rem 1.4rem 1.05rem;
  border-radius: 18px;
  background: linear-gradient(155deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 40%,
    rgba(255, 255, 255, 0.02) 70%,
    rgba(255, 255, 255, 0.07) 100%);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 14px 36px -12px rgba(0, 0, 0, 0.65),
    0 28px 60px -20px rgba(0, 0, 0, 0.55);
  pointer-events: auto;
  overflow: hidden;
  max-width: 100%;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(155deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.05) 30%,
    rgba(255, 87, 0, 0.0) 60%,
    rgba(255, 87, 0, 0.45) 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.9;
}
.hero-card__sheen {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.10) 47%,
    rgba(255, 255, 255, 0.20) 50%,
    rgba(255, 255, 255, 0.10) 53%,
    transparent 70%);
  transform: translateX(-110%);
  animation: heroSheen 6s ease-in-out 1.2s infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero-card__eyebrow {
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #ff5700;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 1;
}
.hero-card .hero-logo {
  position: relative;
  z-index: 1;
}

@keyframes heroSheen {
  0%, 12%   { transform: translateX(-110%); }
  28%, 100% { transform: translateX(110%); }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content { animation: none; }
  .hero-glow { animation: none; }
  .hero-card__sheen { animation: none; display: none; }
}

/* Mobile tuning — keep the premium feel at small sizes */
@media (max-width: 768px) {
  /* Hero: tighten spacing, slightly smaller logo */
  .hero-content-wrap {
    gap: 0.5rem;
  }
  .hero-content {
    gap: 0.5rem;
  }
  .hero-logo {
    width: 240px;
    max-width: 100%;
  }
  .hero-card {
    padding: 0.75rem 1.05rem 0.9rem;
    border-radius: 14px;
    gap: 0.5rem;
  }
  .hero-card__eyebrow { font-size: 0.6rem; letter-spacing: 0.26em; }
  /* Lighter 3D depth so VAULT stays crisp at small size */
  .hero .toolbox-word {
    filter:
      drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.35))
      drop-shadow(-1px 1px 0 #3a3d42)
      drop-shadow(-2px 2px 0 #2a2c30)
      drop-shadow(-3px 3px 0 #16181b)
      drop-shadow(0 6px 12px rgba(0, 0, 0, 0.55))
      drop-shadow(0 0 1px rgba(0, 0, 0, 0.65));
  }
}

@media (max-width: 540px) {
  /* Brand strip: more vertical room + softer eyebrow tracking */
  .brand-strip {
    padding: 2.25rem 0;
  }
  .brand-strip-eyebrow {
    letter-spacing: 0.32em;
    margin-bottom: 0.85rem;
  }
  .brand-strip-title {
    font-size: 1.4rem;
    line-height: 1.2;
  }
  .brand-strip-body {
    font-size: 0.95rem;
    margin-top: 1rem;
  }

  /* Footer: trim padding on phones */
  .site-footer { padding: 1.25rem 0; }
  .footer-logo { height: 28px; }
}

/* Bento grid — 3D glassmorphism */
.bento {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem) 0;
  background: transparent;
  overflow: hidden;
  isolation: isolate;
}
.bento-bg { display: none; }
.bento::before { display: none; }
.bento .container { position: relative; z-index: 1; }
@keyframes bentoDrift {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-2%, -1%, 0); }
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.6rem, 1vw, 0.9rem);
}
@media (max-width: 820px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .bento-grid { grid-template-columns: 1fr; }
}

.bento-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  transition: transform 0.25s ease;
}
.bento-card:hover { transform: translateY(-3px); }
.bento-card__inner {
  position: relative;
  height: 100%;
  min-height: 140px;
  padding: clamp(0.85rem, 1.4vw, 1.2rem);
  border-radius: 18px;
  background:
    linear-gradient(155deg,
      rgba(255, 255, 255, 0.10) 0%,
      rgba(255, 255, 255, 0.04) 35%,
      rgba(255, 255, 255, 0.02) 65%,
      rgba(255, 255, 255, 0.06) 100%);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 12px 30px -10px rgba(0, 0, 0, 0.55),
    0 24px 60px -20px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transform: translateZ(0);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.bento-card__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(155deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.05) 30%,
    rgba(255, 87, 0, 0.0) 60%,
    rgba(255, 87, 0, 0.4) 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.9;
}
.bento-card__glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    420px circle at var(--mx) var(--my),
    rgba(255, 87, 0, 0.28) 0%,
    rgba(255, 87, 0, 0.10) 25%,
    rgba(255, 255, 255, 0) 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  mix-blend-mode: screen;
}
.bento-card__sheen {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.12) 47%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.12) 53%,
    transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
  mix-blend-mode: overlay;
}
.bento-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.bento-card--feature .bento-card__content { gap: 0.7rem; }
.bento-card__eyebrow {
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ff5700;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
}
.bento-card__title {
  font-family: "neue-haas-grotesk-display", "gear-wide", -apple-system, sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15),
    0 2px 12px rgba(0, 0, 0, 0.55);
}
.bento-card__body {
  font-size: clamp(0.72rem, 0.82vw, 0.82rem);
  color: rgba(245, 245, 245, 0.7);
  line-height: 1.45;
  margin: 0;
  max-width: 26ch;
}
.bento-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 4px 14px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.25s ease, border-color 0.25s ease, color 0.2s ease;
}
.bento-card__arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.bento-card:hover .bento-card__inner,
.bento-card:focus-visible .bento-card__inner {
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(155deg,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0.05) 40%,
      rgba(255, 87, 0, 0.05) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.30),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 18px 40px -12px rgba(255, 87, 0, 0.35),
    0 30px 70px -20px rgba(0, 0, 0, 0.65);
}
.bento-card:hover .bento-card__glow,
.bento-card:focus-visible .bento-card__glow {
  opacity: 1;
}
.bento-card:hover .bento-card__sheen {
  transform: translateX(110%);
}
.bento-card:hover .bento-card__cta {
  background: linear-gradient(180deg, #ff5700, #ff5700);
  border-color: rgba(255, 255, 255, 0.4);
}
.bento-card:hover .bento-card__arrow {
  transform: translateX(4px);
}
.bento-card:focus-visible {
  outline: 2px solid #ff5700;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .bento-card { transition: none; }
  .bento-card:hover { transform: none; }
  .bento-card__sheen { display: none; }
  .bento-bg { animation: none; }
}

/* Brand strip */
.brand-strip {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(255, 87, 0, 0.10) 0%, rgba(255, 87, 0, 0) 65%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(80, 120, 255, 0.08) 0%, rgba(80, 120, 255, 0) 65%),
    #000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
.toolbox-panel {
  position: relative;
  text-align: center;
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
  border-radius: 22px;
  background: linear-gradient(155deg,
    rgba(255, 255, 255, 0.10) 0%,
    rgba(255, 255, 255, 0.04) 35%,
    rgba(255, 255, 255, 0.02) 65%,
    rgba(255, 255, 255, 0.06) 100%);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 18px 40px -12px rgba(0, 0, 0, 0.55),
    0 30px 70px -20px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  max-width: 880px;
  margin: 0 auto;
}
.toolbox-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(155deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.05) 30%,
    rgba(255, 87, 0, 0) 60%,
    rgba(255, 87, 0, 0.4) 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.9;
}
.toolbox-panel__sheen {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.10) 49%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.10) 51%,
    transparent 65%);
  transform: translateX(-110%);
  animation: toolboxSheen 9s ease-in-out 1.5s infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}
@keyframes toolboxSheen {
  0%, 10%   { transform: translateX(-110%); }
  35%, 100% { transform: translateX(110%); }
}
.toolbox-panel__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.4rem);
}
.toolbox-panel__rule {
  flex: 1 1 0;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 87, 0, 0) 0%, rgba(255, 87, 0, 0.6) 50%, rgba(255, 87, 0, 0) 100%);
}
.brand-strip-eyebrow {
  display: inline-block;
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #ff5700;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
  padding-left: 0.4em;
}
.brand-strip-title {
  position: relative;
  font-family: "neue-haas-grotesk-display", -apple-system, sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0 auto;
  max-width: 720px;
}
.brand-strip-title em {
  font-style: italic;
  background: linear-gradient(120deg, #ff5700 0%, #ff5700 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.brand-strip-body {
  position: relative;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: rgba(245, 245, 245, 0.72);
  margin: 1.1rem auto 0;
  max-width: 560px;
  line-height: 1.6;
}
.toolbox-chips {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.4rem, 1vw, 0.6rem);
  margin: clamp(1.25rem, 2.5vw, 1.75rem) 0 0;
  padding: 0;
  list-style: none;
}
.toolbox-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 4px 12px rgba(0, 0, 0, 0.3);
}
.toolbox-chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffb38a 0%, #ff5700 70%);
  box-shadow: 0 0 8px rgba(255, 87, 0, 0.7);
}

@media (prefers-reduced-motion: reduce) {
  .toolbox-panel__sheen { animation: none; display: none; }
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}
.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo {
  height: 32px;
  width: auto;
  opacity: 0.85;
}
.footer-mark {
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: lowercase;
  color: rgba(245, 245, 245, 0.6);
}

/* 404 page */
.error-page {
  padding: clamp(3rem, 8vw, 6rem) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
}
.error-page__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.error-page__eyebrow {
  display: block;
  margin: 0 0 0.6rem;
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #ff5700;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
}
.error-page__code {
  display: block;
  font-family: "gear-wide-ultra", "gear-wide", sans-serif;
  font-weight: 400;
  font-size: clamp(5rem, 13vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  white-space: nowrap;
  background:
    radial-gradient(ellipse 70% 90% at 50% 22%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.10) 45%, rgba(255, 255, 255, 0) 70%),
    radial-gradient(ellipse 110% 130% at 50% 50%, #eef1f4 0%, #d4d8dd 25%, #a8acb2 50%, #7c8087 72%, #4d5057 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter:
    drop-shadow(-1px 1px 0 #3a3d42)
    drop-shadow(-2px 2px 0 #2a2c30)
    drop-shadow(-3px 3px 0 #1f2125)
    drop-shadow(-4px 4px 0 #16181b)
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.6));
}
.error-page__title {
  margin: 0.85rem 0 0.6rem;
  font-family: "neue-haas-grotesk-display", "gear-wide", -apple-system, sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #ffffff;
  letter-spacing: -0.01em;
}
.error-page__body {
  color: rgba(245, 245, 245, 0.7);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.55;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
  max-width: 44ch;
}
.error-page__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(180deg, #ff5700, #ff5700);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 8px 22px -6px rgba(255, 87, 0, 0.5),
    0 4px 14px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}
.error-page__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 12px 28px -6px rgba(255, 87, 0, 0.6),
    0 6px 18px rgba(0, 0, 0, 0.4);
}
.error-page__cta:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

/* Sub-page (Business Cards etc.) */
.page {
  position: relative;
  padding: clamp(1.75rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 5rem);
}
.page-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.65);
  text-decoration: none;
  padding: 0.45rem 0.9rem 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.page-back:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 87, 0, 0.5);
}
.page-eyebrow {
  display: block;
  margin: clamp(1.25rem, 2.5vw, 1.75rem) 0 0.6rem;
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #ff5700;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
}
.page-heading {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  padding-bottom: 0.85rem;
}
.page-heading::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff5700;
  box-shadow: 0 4px 14px rgba(255, 87, 0, 0.35);
}
.page-back-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.page-back-arrow:hover {
  color: #ffffff;
  background: #ff5700;
  border-color: #ff5700;
  transform: translateX(-2px);
}
.page-back-arrow:focus-visible {
  outline: 2px solid #ff5700;
  outline-offset: 3px;
}
.page-title {
  font-family: "neue-haas-grotesk-display", "gear-wide", -apple-system, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #ffffff;
  margin: 0;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12),
    0 2px 16px rgba(0, 0, 0, 0.55);
}
.page-lede {
  margin: 0.85rem 0 clamp(1.5rem, 3vw, 2.25rem);
  max-width: 56ch;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: rgba(245, 245, 245, 0.72);
  line-height: 1.55;
}
.page-panel {
  position: relative;
  min-height: 280px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 22px;
  background: linear-gradient(155deg,
    rgba(255, 255, 255, 0.10) 0%,
    rgba(255, 255, 255, 0.04) 35%,
    rgba(255, 255, 255, 0.02) 65%,
    rgba(255, 255, 255, 0.06) 100%);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 18px 40px -12px rgba(0, 0, 0, 0.55),
    0 30px 70px -20px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.page-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(155deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.05) 30%,
    rgba(255, 87, 0, 0) 60%,
    rgba(255, 87, 0, 0.4) 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.9;
}
.page-panel__sheen {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.10) 49%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.10) 51%,
    transparent 65%);
  transform: translateX(-110%);
  animation: toolboxSheen 9s ease-in-out 1.5s infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.page-panel__placeholder {
  position: relative;
  z-index: 1;
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.55);
  text-align: center;
}

/* Card form */
.card-form {
  position: relative;
  z-index: 1;
  width: 100%;
}
.card-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 0.85rem;
}
@media (max-width: 640px) {
  .card-form__grid { grid-template-columns: 1fr; }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.field--full { grid-column: 1 / -1; }
.field__label {
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
}
.field__hint {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.68rem;
  line-height: 1.4;
  color: rgba(245, 245, 245, 0.5);
}
/* Position combo box reuses the shared .combo component (see below). */
.field__input {
  width: 100%;
  padding: 0.45rem 0.65rem;
  font-family: inherit;
  font-size: 0.85rem;
  line-height: 1.3;
  color: #111;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.08);
  outline: none;
}
.field__input::placeholder {
  color: rgba(0, 0, 0, 0.38);
}
.field__input:hover {
  border-color: rgba(0, 0, 0, 0.3);
}
.field__input:focus {
  border-color: #ff5700;
  /* background-color (not the `background` shorthand) so the select caret
     image isn't wiped on focus. */
  background-color: #ffffff;
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.06),
    0 0 0 3px rgba(255, 87, 0, 0.25);
}
.field__input--file {
  padding: 0.3rem 0.5rem;
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.75);
  cursor: pointer;
}
.field__input--file::file-selector-button {
  margin-right: 0.7rem;
  padding: 0.28rem 0.6rem;
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(180deg, #ff5700, #ff5700);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  cursor: pointer;
  transition: filter 0.2s ease;
}
.field__input--file::file-selector-button:hover {
  filter: brightness(1.05);
}
.field__input--select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #ff5700 50%),
    linear-gradient(135deg, #ff5700 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 13px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  background-color: #ffffff;
  padding-right: 2.25rem;
  cursor: pointer;
}
.field__input--select option {
  background: #ffffff;
  color: #111;
}
.card-form__actions {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  justify-content: flex-end;
}
.card-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(180deg, #ff5700, #ff5700);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 8px 22px -6px rgba(255, 87, 0, 0.5),
    0 4px 14px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.card-form__submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 12px 28px -6px rgba(255, 87, 0, 0.6),
    0 6px 18px rgba(0, 0, 0, 0.4);
}
.card-form__submit:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}
/* Secondary action (Submit) — same shape as the primary, ghost styling. */
.card-form__alt {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.card-form__alt:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}
.card-form__alt:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}
.card-form__alt.is-success {
  background: linear-gradient(180deg, #22c55e, #16a34a);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}
.card-form__alt:disabled {
  opacity: 0.7;
  cursor: default;
}
.card-form__confirm {
  justify-content: center;
}
.card-form__delivery {
  margin-top: 0.85rem;
}
.card-form__delivery[hidden] {
  display: none;
}
.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #ffffff;
  cursor: pointer;
}
.checkbox input {
  accent-color: #ff5700;
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  cursor: pointer;
}
.card-form__submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(0.35);
  box-shadow: none;
}
.card-form__submit--full {
  width: 100%;
  justify-content: center;
}
/* Submission success takeover */
.submit-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(8, 8, 10, 0.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.submit-overlay[hidden] {
  display: none;
}
.submit-overlay__card {
  position: relative;
  width: 100%;
  max-width: 460px;
  text-align: center;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.7);
}
.submit-overlay__close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  color: rgba(245, 245, 245, 0.6);
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.submit-overlay__close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}
.submit-overlay__check {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  border-radius: 50%;
  background: linear-gradient(180deg, #22c55e, #16a34a);
  box-shadow: 0 8px 22px -6px rgba(34, 197, 94, 0.6);
}
.submit-overlay__title {
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}
.submit-overlay__text {
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.card-form__flip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.card-form__flip:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 87, 0, 0.5);
  color: #ffffff;
}
.card-form__actions {
  justify-content: space-between;
  gap: 0.75rem;
}

/* Builder layout */
.builder {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
@media (max-width: 900px) {
  .builder { grid-template-columns: 1fr; }
}

/* Live business card preview */
.card-preview {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
}
.card-preview__stack {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.card-preview__face {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.card-preview__caption {
  position: relative;
  z-index: 2;
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
}
.card-preview__hint {
  font-family: "gear-wide", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.5);
  text-align: center;
}

.biz-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1.75 / 1;
}
.biz-card--static { /* no flip */ }

.biz-card__face {
  position: absolute;
  inset: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow:
    0 18px 40px -10px rgba(0, 0, 0, 0.7),
    0 30px 70px -20px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.biz-card__face--back-static {
  transform: none; /* override the flip-back rotation when not flipping */
}
.biz-card__face--front {
  padding: 1rem 1.1rem;
  background: #000;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.5rem;
}
.biz-card__face--back {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: #000;
}
.biz-card__face--back[data-backing="orange-stripe"] {
  background:
    linear-gradient(180deg, transparent 0%, transparent 48%, #ff5700 48%, #ff5700 52%, transparent 52%, transparent 100%),
    linear-gradient(155deg, #18181c 0%, #050507 100%);
}
.biz-card__face--back[data-backing="black-matte"] {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 4px),
    #050505;
}
.biz-card__face--back[data-backing="custom"] {
  background:
    radial-gradient(ellipse 80% 70% at 30% 30%, rgba(255, 87, 0, 0.35) 0%, rgba(255, 87, 0, 0) 60%),
    radial-gradient(ellipse 60% 60% at 70% 80%, rgba(255, 120, 60, 0.25) 0%, rgba(255, 120, 60, 0) 60%),
    linear-gradient(155deg, #1c0d05 0%, #050507 100%);
}
.biz-card__top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.biz-card__logo {
  height: 22px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.biz-card__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 87, 0, 0.6), transparent);
}
.biz-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.biz-card__name {
  font-family: "neue-haas-grotesk-display", "gear-wide", sans-serif;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.biz-card__pos {
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ff5700;
  margin-top: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.biz-card__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.18rem 0.7rem;
  font-size: 0.62rem;
  line-height: 1.3;
  color: rgba(245, 245, 245, 0.85);
}
.biz-card__contact li {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  min-width: 0;
}
.biz-card__contact span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex: 1;
}
.biz-card__k {
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  color: #ff5700;
  min-width: 1.1rem;
}
.biz-card__photo {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  display: none;
}
.biz-card.has-photo .biz-card__photo { display: block; }
.biz-card__template {
  padding: 0;
  background: #231f20;
  border: 0;
  /* Keep the presentation drop shadow, drop the inset highlights/white edge
     so the slot shows only the SVG artwork. */
  box-shadow:
    0 18px 40px -10px rgba(0, 0, 0, 0.7),
    0 30px 70px -20px rgba(0, 0, 0, 0.55);
}
.biz-card__template svg {
  display: block;
  width: 100%;
  height: 100%;
}
/* Use the bundled Bebas Kai TTF for the card so the preview matches the PDF
   exactly — same font file means identical glyph metrics, so text-anchor
   centering/right-alignment and the name underline line up in both. The
   template's text asks for "BebasKai", which this @font-face resolves. */
@font-face {
  font-family: "BebasKai";
  src: url("../fonts/BebasKai.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.biz-card__template svg text {
  font-family: "BebasKai", sans-serif;
}
/* Tabular (equal-width) digits — applied only to Phone/Fax via JS. */
@font-face {
  font-family: "BebasKaiTab";
  src: url("../fonts/BebasKai-tabular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.biz-card__back-logo {
  height: 36px;
  width: auto;
  opacity: 0.95;
}
.biz-card__back-tag {
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: lowercase;
  color: rgba(245, 245, 245, 0.55);
}
@keyframes toolboxSheen {
  0%, 10%   { transform: translateX(-110%); }
  35%, 100% { transform: translateX(110%); }
}
@media (prefers-reduced-motion: reduce) {
  .page-panel__sheen { display: none; }
}

/* ============================================================
   Assets gallery
   ============================================================ */
.assets-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem);
}

/* Digital / Print colour profile */
.mode-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.mode-toggle__btn {
  appearance: none;
  cursor: pointer;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.mode-toggle__btn:first-of-type { margin-right: -0.4rem; }
.mode-toggle__btn:hover {
  color: #ffffff;
  border-color: rgba(255, 87, 0, 0.5);
}
.mode-toggle__btn.is-active {
  color: #ffffff;
  background: linear-gradient(180deg, #ff5700, #ff5700);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.mode-toggle__btn:focus-visible {
  outline: 2px solid #ff5700;
  outline-offset: 2px;
}
.assets-search {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  max-width: 320px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(245, 245, 245, 0.55);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.assets-search:focus-within {
  border-color: rgba(255, 87, 0, 0.6);
  background: rgba(255, 255, 255, 0.08);
  color: #ff5700;
}
.assets-search svg { flex-shrink: 0; }
.assets-search input {
  flex: 1;
  min-width: 0;
  appearance: none;
  border: 0;
  outline: none;
  background: transparent;
  color: #f5f5f5;
  font-family: inherit;
  font-size: 0.9rem;
}
.assets-search input::placeholder { color: rgba(245, 245, 245, 0.4); }
.assets-search input::-webkit-search-cancel-button { filter: invert(0.6); cursor: pointer; }

.asset-group { margin-bottom: clamp(2rem, 4vw, 3rem); }
.asset-group[hidden] { display: none; }
.asset-group__title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 clamp(0.9rem, 2vw, 1.25rem);
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #ff5700;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
}
.asset-group__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: rgba(245, 245, 245, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: clamp(0.7rem, 1.4vw, 1rem);
}
/* Mobile: keep a 2-up grid, and put the variant buttons on a single row
   (each sharing the width, like the SVG / PNG buttons) instead of stacking. */
@media (max-width: 520px) {
  .asset-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* More specific than the base .asset__* rules so these win the cascade. */
  .asset-grid .asset__meta { padding-left: 0.65rem; padding-right: 0.65rem; }
  .asset-grid .asset__variants { flex-wrap: nowrap; gap: 0.4rem; }
  .asset-grid .asset__variant {
    flex: 1;
    min-width: 0;
    padding: 0.32rem 0.25rem;
    white-space: nowrap;
    text-align: center;
    letter-spacing: 0.02em;
    font-size: 0.5rem;
  }
}

.asset {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(155deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 40%,
    rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 28px -12px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.asset[hidden] { display: none; }
.asset:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 87, 0, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 38px -14px rgba(255, 87, 0, 0.3),
    0 12px 30px -16px rgba(0, 0, 0, 0.65);
}

.asset__preview {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  transition: background 0.25s ease;
}
.asset__preview--light {
  background:
    radial-gradient(ellipse 80% 80% at 50% 35%, #ffffff 0%, #ededed 100%);
}
.asset__preview--dark {
  background:
    radial-gradient(ellipse 80% 80% at 50% 35%, #1c1c1c 0%, #0b0b0b 100%);
}
.asset__preview--check {
  background-color: #f0f0f0;
  background-image:
    linear-gradient(45deg, #d9d9d9 25%, transparent 25%),
    linear-gradient(-45deg, #d9d9d9 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #d9d9d9 75%),
    linear-gradient(-45deg, transparent 75%, #d9d9d9 75%);
  background-size: 16px 16px;
  background-position: 0 0, 0 8px, 8px -8px, -8px 0;
}
/* Absolutely centered so the image is always contained (never overflows or
   stretches the preview) and every preview stays the same size — tall/square
   logos like HOC Circle are capped just like wide wordmarks. */
.asset__img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 78%;
  max-height: 72%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.asset__meta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.85rem 0.9rem 0.95rem;
}
.asset__name {
  margin: 0;
  font-family: "neue-haas-grotesk-display", "gear-wide", -apple-system, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.asset__variants {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.asset__variant {
  appearance: none;
  cursor: pointer;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.asset__variant:hover {
  color: #ffffff;
  border-color: rgba(255, 87, 0, 0.5);
}
.asset__variant.is-active {
  color: #ffffff;
  background: linear-gradient(180deg, #ff5700, #ff5700);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.asset__variant:focus-visible {
  outline: 2px solid #ff5700;
  outline-offset: 2px;
}

.asset__actions {
  display: flex;
  gap: 0.4rem;
  margin-top: auto;
}
.asset__dl {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  appearance: none;
  cursor: pointer;
  padding: 0.45rem 0.5rem;
  border-radius: 8px;
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(245, 245, 245, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.asset__dl:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 87, 0, 0.55);
}
.asset__dl:active { transform: translateY(1px); }
.asset__dl:focus-visible {
  outline: 2px solid #ff5700;
  outline-offset: 2px;
}
.asset__dl--png:disabled {
  cursor: progress;
  opacity: 0.7;
}
.asset__spin {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: #ff5700;
  animation: assetSpin 0.7s linear infinite;
}
@keyframes assetSpin { to { transform: rotate(360deg); } }

.assets-empty {
  padding: 2rem 0;
  text-align: center;
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.5);
}

.asset-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translate(-50%, 1rem);
  z-index: 50;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #ffffff;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(255, 87, 0, 0.5);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.asset-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (prefers-reduced-motion: reduce) {
  .asset:hover { transform: none; }
  .asset__spin { animation-duration: 1.4s; }
}

/* ============================================================
   Email signature
   ============================================================ */
.sig-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  min-width: 0;
}
/* Let the preview column shrink below the fixed-width signature so the
   surface (which scrolls) never pushes the page wider than the viewport. */
.card-preview { min-width: 0; }
/* White email-like surface — the signature is built for a light inbox. */
.sig-surface {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow:
    0 18px 40px -12px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow-x: auto;
}
/* Give the preview the larger column so the fixed 460px signature fits
   without scaling. The form stays a compact fixed width. */
.builder--sig { grid-template-columns: minmax(0, 320px) minmax(0, 1fr); }
@media (max-width: 900px) { .builder--sig { grid-template-columns: 1fr; } }

/* Render the signature at its exact pixel size on BOTH previews — never
   scale the logo or table. Only the outermost table is unconstrained
   (it carries the inline 460px); nested tables/images keep their own
   inline sizing. If a surface is ever narrower, it scrolls. */
.sig-surface > div > table { max-width: none; }

/* Disabled inputs (e.g. Ext before a valid phone) */
.field__input:disabled {
  background: rgba(255, 255, 255, 0.55);
  color: rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  box-shadow: none;
}

/* Job-title combo box (typeable + dropdown) */
.combo { position: relative; width: 100%; }
.combo .field__input { padding-right: 2.25rem; }
.combo__chev {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: 0.6;
  pointer-events: none;
  color: #111;
}
.combo__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 50;
  display: none;
  padding: 6px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0 22px 60px -12px rgba(0, 0, 0, 0.7);
  max-height: 260px;
  overflow-y: auto;
}
.combo.is-open .combo__list { display: block; }
.combo__opt {
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #111;
  cursor: pointer;
  user-select: none;
}
.combo__opt:hover { background: rgba(0, 0, 0, 0.06); }
.combo__opt.active { background: rgba(255, 87, 0, 0.14); color: #b8430b; }

/* Copy button success state */
.card-form__submit.is-success {
  background: linear-gradient(180deg, #22c55e, #16a34a);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 8px 22px -6px rgba(34, 197, 94, 0.5);
}

/* Outlook instructions panel (dark glass) */
.instructions {
  margin-top: 0.25rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: rgba(245, 245, 245, 0.78);
  line-height: 1.55;
}
.instructions .inst-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
}
.instructions .inst-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 87, 0, 0.5), rgba(255, 255, 255, 0.06));
}
.inst-tabs { display: flex; gap: 0.4rem; margin-bottom: 0.85rem; }
.inst-tab {
  appearance: none;
  cursor: pointer;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-family: "gear-wide", sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.inst-tab:hover { color: #ffffff; border-color: rgba(255, 87, 0, 0.5); }
.inst-tab.active {
  color: #ffffff;
  background: #ff5700;
  border-color: transparent;
  box-shadow: 0 6px 16px -4px rgba(255, 87, 0, 0.5);
}
.inst-pane { display: none; }
.inst-pane.active { display: block; }
.instructions ol {
  margin: 0;
  padding-left: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.instructions strong { color: #ffffff; }
.inst-note {
  margin-top: 0.7rem;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  background: rgba(255, 87, 0, 0.08);
  border-left: 3px solid rgba(255, 87, 0, 0.55);
  font-size: 0.78rem;
  color: rgba(245, 245, 245, 0.72);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  z-index: 200;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.t-success { background: #16a34a; }
.toast.t-error { background: #dc2626; }
.toast.t-info { background: rgba(20, 20, 20, 0.95); border: 1px solid rgba(255, 87, 0, 0.5); }

@media (prefers-reduced-motion: reduce) {
  .toast { transition: opacity 0.22s ease; }
}
