/* =========================================================
   LabelsAgent — Foil Cosmetic Labels (Foil Atelier)
   Sora display + Inter body
   Navy #0033a0 + Champagne Gold #c9a96a (primary)
   + Rose Gold / Silver / Holographic as content swatches
   Max-width 1280px · WordPress-embeddable · WCAG 2.1 AA
   ========================================================= */

:root {
  /* Brand — Navy */
  --fc-navy: #0033a0;
  --fc-navy-deep: #001f5c;
  --fc-navy-ink: #0a1430;
  --fc-navy-pale: #eef3fc;
  --fc-navy-mist: #f6f9fe;
  --fc-navy-line: #cdddf6;

  /* Accent — Champagne Gold (primary) */
  --fc-gold: #c9a96a;
  --fc-gold-deep: #a68847;
  --fc-gold-pale: #f5eddc;
  --fc-gold-line: #e8d9b5;

  /* Foil content swatches (used only inside swatch demos) */
  --fc-foil-gold: linear-gradient(
    120deg,
    #b8860b 0%,
    #f4d77a 25%,
    #c9a96a 50%,
    #f4d77a 75%,
    #a68847 100%
  );
  --fc-foil-rosegold: linear-gradient(
    120deg,
    #b76e79 0%,
    #f7cac4 25%,
    #e8b4a0 50%,
    #f7cac4 75%,
    #b76e79 100%
  );
  --fc-foil-silver: linear-gradient(
    120deg,
    #8a929e 0%,
    #e8ecf2 25%,
    #c0c5d0 50%,
    #e8ecf2 75%,
    #8a929e 100%
  );
  --fc-foil-holo: linear-gradient(
    120deg,
    #ff7eb3 0%,
    #ffd75e 20%,
    #7afcff 40%,
    #feff9c 60%,
    #c084fc 80%,
    #ff7eb3 100%
  );

  /* Warm surfaces */
  --fc-blush: #fbf4f6;
  --fc-blush-deep: #f5e6ea;
  --fc-cream: #faf8f4;
  --fc-paper: #ffffff;
  --fc-pearl: #fdfcfa;
  --fc-ink: #1a1521;
  --fc-slate: #5b5563;
  --fc-slate-light: #8b8294;
  --fc-cloud: #f4f3f7;
  --fc-line: #ece9f1;
  --fc-line-soft: #f6f4f9;

  /* Typography */
  --fc-font-display: "Sora", Georgia, serif;
  --fc-font-body:
    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --fc-font-mono: "Inter", ui-monospace, "SF Mono", Menlo, monospace;

  /* Radii */
  --fc-r-sm: 8px;
  --fc-r-md: 14px;
  --fc-r-lg: 20px;
  --fc-r-xl: 28px;
  --fc-r-pill: 999px;

  /* Shadows */
  --fc-sh-soft: 0 2px 8px rgba(26, 21, 33, 0.05);
  --fc-sh-md: 0 8px 24px rgba(26, 21, 33, 0.08);
  --fc-sh-lg: 0 18px 50px rgba(26, 21, 33, 0.12);
  --fc-sh-gold: 0 8px 28px rgba(201, 169, 106, 0.22);
  --fc-sh-navy: 0 10px 32px rgba(0, 51, 160, 0.18);

  /* Layout */
  --fc-max: 1280px;
  --fc-pad: clamp(16px, 4vw, 40px);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--fc-font-body);
  color: var(--fc-ink);
  background: var(--fc-pearl);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--fc-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--fc-navy-deep);
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--fc-navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 var(--fc-r-sm) 0;
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}

/* Container */
.container {
  max-width: var(--fc-max);
  margin: 0 auto;
  padding: 0 var(--fc-pad);
}
.container--narrow {
  max-width: 880px;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 250, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--fc-line-soft);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fc-font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--fc-ink);
  letter-spacing: -0.01em;
}
.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--fc-navy) 0%,
    var(--fc-navy-deep) 100%
  );
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--fc-font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: var(--fc-sh-navy);
}
.brand__name em {
  font-style: italic;
  font-weight: 400;
  color: var(--fc-gold-deep);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.nav a {
  color: var(--fc-ink);
  position: relative;
  padding: 4px 0;
}
.nav a.is-active {
  color: var(--fc-navy);
}
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--fc-navy), var(--fc-gold));
  border-radius: 2px;
}
.nav a:hover {
  color: var(--fc-navy);
}
.nav__cta {
  background: var(--fc-navy);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: var(--fc-r-pill);
  font-weight: 600;
  box-shadow: var(--fc-sh-navy);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 51, 160, 0.25);
}
.nav-toggle {
  display: none;
  font-size: 24px;
  padding: 6px;
  color: var(--fc-ink);
}

/* ============ BREADCRUMBS ============ */
.breadcrumbs {
  background: var(--fc-navy-mist);
  border-bottom: 1px solid var(--fc-navy-line);
  padding: 14px 0;
  font-family: var(--fc-font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumbs li {
  color: var(--fc-slate-light);
}
.breadcrumbs li[aria-current] {
  color: var(--fc-navy);
  font-weight: 600;
}
.breadcrumbs a {
  color: var(--fc-slate);
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--fc-navy);
}
.breadcrumbs .sep {
  color: var(--fc-navy-line);
  font-weight: 400;
}

/* ============ EYEBROW ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fc-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fc-navy);
  background: var(--fc-navy-pale);
  padding: 6px 14px;
  border-radius: var(--fc-r-pill);
  border: 1px solid var(--fc-navy-line);
}
.eyebrow--gold {
  color: var(--fc-gold-deep);
  background: var(--fc-gold-pale);
  border-color: var(--fc-gold-line);
}
.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fc-gold);
  box-shadow: 0 0 0 2px rgba(201, 169, 106, 0.25);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 84px) 0 clamp(40px, 6vw, 72px);
  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(201, 169, 106, 0.12) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 10% 85%,
      rgba(0, 51, 160, 0.06) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, var(--fc-pearl) 0%, var(--fc-blush) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(201, 169, 106, 0.08) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(0, 51, 160, 0.05) 1px,
      transparent 1px
    );
  background-size:
    48px 48px,
    64px 64px;
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.hero__title {
  font-family: var(--fc-font-display);
  font-size: clamp(38px, 5.4vw, 66px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 18px 0 22px;
  color: var(--fc-ink);
}
.hero__title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(
    120deg,
    var(--fc-gold-deep) 0%,
    var(--fc-gold) 60%,
    var(--fc-navy) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__lead {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--fc-slate);
  max-width: 540px;
  margin-bottom: 30px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fc-font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--fc-r-pill);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: var(--fc-navy);
  color: #fff;
  box-shadow: var(--fc-sh-navy);
}
.btn--primary:hover {
  background: var(--fc-navy-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 51, 160, 0.28);
}
.btn--gold {
  background: linear-gradient(
    135deg,
    var(--fc-gold) 0%,
    var(--fc-gold-deep) 100%
  );
  color: #fff;
  box-shadow: var(--fc-sh-gold);
}
.btn--gold:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(201, 169, 106, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--fc-navy);
  border: 1.5px solid var(--fc-navy-line);
}
.btn--ghost:hover {
  background: var(--fc-navy-pale);
  border-color: var(--fc-navy);
}
.btn--lg {
  padding: 16px 28px;
  font-size: 16px;
}
.btn--sm {
  padding: 10px 18px;
  font-size: 13px;
}

/* Hero bullets */
.hero__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding-top: 24px;
  border-top: 1px solid var(--fc-line);
  font-size: 13px;
}
.hero__bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fc-slate);
}
.hero__bullet svg {
  width: 18px;
  height: 18px;
  color: var(--fc-gold-deep);
  flex-shrink: 0;
}

/* ============ FOIL ATELIER (Hero Visual) ============ */
.atelier {
  position: relative;
  background: linear-gradient(
    160deg,
    var(--fc-navy-ink) 0%,
    var(--fc-navy-deep) 60%,
    var(--fc-navy) 100%
  );
  border-radius: var(--fc-r-xl);
  padding: 30px 26px 24px;
  box-shadow:
    var(--fc-sh-lg),
    inset 0 0 0 1px rgba(201, 169, 106, 0.18);
  overflow: hidden;
}
.atelier::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(201, 169, 106, 0.2) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 90%,
      rgba(201, 169, 106, 0.1) 0%,
      transparent 35%
    );
  pointer-events: none;
}
.atelier__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  position: relative;
}
.atelier__title {
  font-family: var(--fc-font-display);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.atelier__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--fc-gold);
}
.atelier__hint {
  font-family: var(--fc-font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Vessel row */
.atelier__stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: end;
  padding: 20px 4px 12px;
  min-height: 220px;
}
.vessel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
  animation: fcDrift 6s ease-in-out infinite;
}
.vessel:nth-child(2) {
  animation-delay: -1.5s;
}
.vessel:nth-child(3) {
  animation-delay: -3s;
}
.vessel:nth-child(4) {
  animation-delay: -4.5s;
}

/* 1. Skincare Dropper — Gold foil */
.vessel--dropper {
  width: 48px;
  height: 200px;
}
.vessel--dropper .vessel__cap {
  width: 14px;
  height: 18px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(135deg, #2a2f45, #0a1430);
}
.vessel--dropper .vessel__bulb {
  width: 20px;
  height: 14px;
  border-radius: 50% 50% 30% 30%;
  background: linear-gradient(135deg, #3a4060, #1a1f3a);
  margin-bottom: -4px;
}
.vessel--dropper .vessel__neck {
  width: 8px;
  height: 8px;
  background: rgba(220, 235, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.vessel--dropper .vessel__body {
  width: 48px;
  height: 130px;
  border-radius: 10px 10px 6px 6px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(220, 235, 255, 0.18) 25%,
    rgba(220, 235, 255, 0.3) 50%,
    rgba(220, 235, 255, 0.18) 75%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border: 1px solid rgba(220, 235, 255, 0.35);
  position: relative;
  overflow: hidden;
}
.vessel--dropper .vessel__liquid {
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 8px;
  height: 60px;
  background: linear-gradient(
    180deg,
    rgba(245, 220, 180, 0.35),
    rgba(201, 169, 106, 0.55)
  );
  border-radius: 4px 4px 3px 3px;
}
.vessel--dropper .vessel__label {
  position: absolute;
  left: 4px;
  right: 4px;
  top: 48%;
  height: 38px;
  background: rgba(255, 250, 235, 0.92);
  border-radius: 2px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.vessel--dropper .vessel__foil {
  font-family: var(--fc-font-display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--fc-foil-gold);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fcShimmer 3s linear infinite;
}

/* 2. Cream Jar — Rose Gold foil */
.vessel--jar {
  width: 68px;
  height: 108px;
}
.vessel--jar .vessel__lid {
  width: 64px;
  height: 22px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(135deg, #e8c9a0 0%, #a68847 50%, #e8c9a0 100%);
  border: 1px solid #a68847;
  position: relative;
}
.vessel--jar .vessel__lid::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 8px;
  right: 8px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  border-radius: 2px;
}
.vessel--jar .vessel__body {
  width: 68px;
  height: 80px;
  border-radius: 6px 6px 10px 10px;
  background: linear-gradient(
    90deg,
    rgba(255, 235, 230, 0.15) 0%,
    rgba(255, 235, 220, 0.4) 30%,
    rgba(255, 245, 235, 0.55) 50%,
    rgba(255, 235, 220, 0.4) 70%,
    rgba(255, 235, 230, 0.15) 100%
  );
  border: 1px solid rgba(255, 220, 210, 0.4);
  position: relative;
  overflow: hidden;
  margin-top: -2px;
}
.vessel--jar .vessel__label {
  position: absolute;
  left: 6px;
  right: 6px;
  top: 24px;
  height: 34px;
  background: rgba(255, 250, 248, 0.95);
  border-radius: 2px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.vessel--jar .vessel__foil {
  font-family: var(--fc-font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--fc-foil-rosegold);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fcShimmer 3.5s linear infinite;
}

/* 3. Perfume Bottle — Silver foil */
.vessel--perfume {
  width: 62px;
  height: 172px;
}
.vessel--perfume .vessel__cap {
  width: 24px;
  height: 18px;
  background: linear-gradient(135deg, #1a1f3a 0%, #3a4060 50%, #0a1430 100%);
  border-radius: 3px 3px 0 0;
}
.vessel--perfume .vessel__neck {
  width: 12px;
  height: 8px;
  background: rgba(220, 235, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
.vessel--perfume .vessel__body {
  width: 62px;
  height: 140px;
  border-radius: 8px 8px 12px 12px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(220, 235, 255, 0.22) 30%,
    rgba(240, 245, 255, 0.32) 50%,
    rgba(220, 235, 255, 0.22) 70%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border: 1px solid rgba(220, 235, 255, 0.38);
  position: relative;
  overflow: hidden;
}
.vessel--perfume .vessel__liquid {
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 8px;
  height: 70px;
  background: linear-gradient(
    180deg,
    rgba(220, 200, 240, 0.3),
    rgba(180, 160, 200, 0.5)
  );
  border-radius: 4px 4px 6px 6px;
}
.vessel--perfume .vessel__label {
  position: absolute;
  left: 5px;
  right: 5px;
  top: 44%;
  height: 42px;
  background: rgba(20, 28, 50, 0.92);
  border-radius: 2px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.vessel--perfume .vessel__foil {
  font-family: var(--fc-font-display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--fc-foil-silver);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fcShimmer 4s linear infinite;
}

/* 4. Lip Gloss Tube — Holographic foil */
.vessel--tube {
  width: 36px;
  height: 178px;
}
.vessel--tube .vessel__cap {
  width: 14px;
  height: 32px;
  background: linear-gradient(135deg, #1a1f3a, #0a1430);
  border-radius: 2px 2px 0 0;
}
.vessel--tube .vessel__body {
  width: 36px;
  height: 138px;
  border-radius: 4px 4px 16px 16px;
  background: linear-gradient(
    90deg,
    rgba(255, 235, 240, 0.18) 0%,
    rgba(255, 220, 235, 0.4) 30%,
    rgba(255, 240, 250, 0.55) 50%,
    rgba(255, 220, 235, 0.4) 70%,
    rgba(255, 235, 240, 0.18) 100%
  );
  border: 1px solid rgba(255, 220, 235, 0.45);
  position: relative;
  overflow: hidden;
}
.vessel--tube .vessel__liquid {
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 6px;
  height: 80px;
  background: linear-gradient(
    180deg,
    rgba(255, 200, 220, 0.5),
    rgba(230, 170, 200, 0.65)
  );
  border-radius: 2px 2px 12px 12px;
}
.vessel--tube .vessel__label {
  position: absolute;
  left: 3px;
  right: 3px;
  top: 36%;
  height: 34px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.vessel--tube .vessel__foil {
  font-family: var(--fc-font-display);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--fc-foil-holo);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fcShimmer 2.5s linear infinite;
}

/* Foil shine sweep */
.vessel__label::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 35%,
    rgba(255, 255, 255, 0.7) 50%,
    transparent 65%
  );
  background-size: 250% 100%;
  animation: fcShine 4s ease-in-out infinite;
}
.vessel:nth-child(2) .vessel__label::after {
  animation-delay: -1s;
}
.vessel:nth-child(3) .vessel__label::after {
  animation-delay: -2s;
}
.vessel:nth-child(4) .vessel__label::after {
  animation-delay: -3s;
}

.vessel__tag {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--fc-font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Foil color legend */
.atelier__legend {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  position: relative;
}
.swatch-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--fc-r-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.swatch-pill__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.15),
    0 2px 6px rgba(0, 0, 0, 0.3);
  background-size: 200% 100%;
  animation: fcShimmer 4s linear infinite;
}
.swatch-pill__dot--gold {
  background: var(--fc-foil-gold);
}
.swatch-pill__dot--rosegold {
  background: var(--fc-foil-rosegold);
}
.swatch-pill__dot--silver {
  background: var(--fc-foil-silver);
}
.swatch-pill__dot--holo {
  background: var(--fc-foil-holo);
}
.swatch-pill__label {
  font-family: var(--fc-font-mono);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.04em;
}

/* ============ TRUST STRIP ============ */
.trust {
  background: var(--fc-navy-ink);
  color: #fff;
  padding: 36px 0;
  border-top: 1px solid rgba(201, 169, 106, 0.2);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust__cell {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(201, 169, 106, 0.18);
  display: grid;
  place-items: center;
  color: var(--fc-gold);
  flex-shrink: 0;
}
.trust__icon svg {
  width: 20px;
  height: 20px;
}
.trust__num {
  font-family: var(--fc-font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.01em;
}
.trust__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* ============ SECTION COMMON ============ */
.section {
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative;
}
.section--tight {
  padding: clamp(36px, 5vw, 56px) 0;
}
.section--alt {
  background: var(--fc-cream);
}
.section--blush {
  background: var(--fc-blush);
}
.section--navy {
  background: var(--fc-navy-ink);
  color: #fff;
}
.section--navy h2,
.section--navy h3 {
  color: #fff;
}
.section--navy p {
  color: rgba(255, 255, 255, 0.78);
}

.section-head {
  text-align: center;
  max-width: 1080px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}
.section-head__title {
  font-family: var(--fc-font-display);
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 18px 0 16px;
  color: var(--fc-ink);
}
.section--navy .section-head__title {
  color: #fff;
}
.section-head__title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(
    120deg,
    var(--fc-gold-deep) 0%,
    var(--fc-gold) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section--navy .section-head__title em {
  background: linear-gradient(120deg, var(--fc-gold) 0%, #f4d77a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-head__lead {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--fc-slate);
  line-height: 1.7;
}
.section--navy .section-head__lead {
  color: rgba(255, 255, 255, 0.78);
}

/* ============ APPLICATION GRID ============ */
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.app-card {
  background: var(--fc-paper);
  border: 1px solid var(--fc-line-soft);
  border-radius: var(--fc-r-lg);
  padding: 26px 22px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.app-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--fc-navy), var(--fc-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fc-sh-md);
  border-color: var(--fc-navy-line);
}
.app-card:hover::before {
  transform: scaleX(1);
}
.app-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--fc-navy-pale);
  color: var(--fc-navy);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.app-card__icon svg {
  width: 22px;
  height: 22px;
}
.app-card__title {
  font-family: var(--fc-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fc-ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.app-card__text {
  font-size: 13.5px;
  color: var(--fc-slate);
  line-height: 1.6;
}

/* ============ GEO QUOTE ============ */
.geo-quote {
  background: var(--fc-paper);
  border-left: 4px solid var(--fc-gold);
  border-radius: var(--fc-r-md);
  padding: 28px 32px;
  box-shadow: var(--fc-sh-soft);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.75;
  color: var(--fc-ink);
}
.geo-quote strong {
  color: var(--fc-navy);
}

/* ============ MATERIAL TABLE ============ */
.matcher {
  background: var(--fc-paper);
  border: 1px solid var(--fc-line-soft);
  border-radius: var(--fc-r-xl);
  overflow: hidden;
  box-shadow: var(--fc-sh-soft);
}
.matcher__table {
  width: 100%;
  border-collapse: collapse;
}
.matcher__table thead {
  background: linear-gradient(
    135deg,
    var(--fc-navy) 0%,
    var(--fc-navy-deep) 100%
  );
  color: #fff;
}
.matcher__table th {
  text-align: left;
  padding: 18px 22px;
  font-family: var(--fc-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}
.matcher__table tbody tr {
  border-top: 1px solid var(--fc-line-soft);
  transition: background 0.2s ease;
}
.matcher__table tbody tr:hover {
  background: var(--fc-navy-mist);
}
.matcher__table td {
  padding: 18px 22px;
  vertical-align: middle;
  font-size: 14px;
  color: var(--fc-ink);
}
.matcher__table td:first-child {
  font-family: var(--fc-font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--fc-navy);
}
.matcher__table td:nth-child(2) {
  color: var(--fc-gold-deep);
  font-weight: 600;
  font-size: 13.5px;
}
.matcher__table td:nth-child(3) {
  color: var(--fc-slate);
  font-size: 13.5px;
}

/* ============ FOIL STUDIO (4 large metallic swatches) ============ */
.studio {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.studio__card {
  position: relative;
  border-radius: var(--fc-r-lg);
  overflow: hidden;
  padding: 32px 20px 24px;
  background: var(--fc-paper);
  border: 1px solid var(--fc-line-soft);
  box-shadow: var(--fc-sh-soft);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  text-align: center;
}
.studio__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fc-sh-md);
}
.studio__swatch {
  width: 100%;
  height: 120px;
  border-radius: var(--fc-r-md);
  background-size: 200% 100%;
  animation: fcShimmer 4s linear infinite;
  margin-bottom: 18px;
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 6px 20px rgba(0, 0, 0, 0.1);
}
.studio__swatch--gold {
  background: var(--fc-foil-gold);
}
.studio__swatch--rosegold {
  background: var(--fc-foil-rosegold);
}
.studio__swatch--silver {
  background: var(--fc-foil-silver);
}
.studio__swatch--holo {
  background: var(--fc-foil-holo);
}
.studio__swatch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 40%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 60%
  );
  background-size: 250% 100%;
  animation: fcShine 3.5s ease-in-out infinite;
  border-radius: var(--fc-r-md);
}
.studio__name {
  font-family: var(--fc-font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--fc-ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.studio__use {
  font-size: 12px;
  color: var(--fc-slate);
  line-height: 1.55;
}

/* ============ HOT STAMPING PROCESS DEMO ============ */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: var(--fc-paper);
  border: 1px solid var(--fc-line-soft);
  border-radius: var(--fc-r-xl);
  padding: 36px 28px;
  box-shadow: var(--fc-sh-soft);
}
.process__step {
  text-align: center;
  position: relative;
}
.process__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--fc-gold), transparent);
}
.process__stage {
  width: 100%;
  height: 140px;
  border-radius: var(--fc-r-md);
  background: linear-gradient(160deg, var(--fc-navy-mist), var(--fc-cream));
  border: 1px solid var(--fc-line);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
/* Step 1: Die */
.process__die {
  width: 120px;
  height: 80px;
  background: linear-gradient(135deg, #7a5e3a, #a68847, #7a5e3a);
  border-radius: 6px;
  position: relative;
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.2);
}
.process__die::before {
  content: "LB";
  position: absolute;
  inset: 14px;
  display: grid;
  place-items: center;
  font-family: var(--fc-font-display);
  font-size: 24px;
  font-weight: 800;
  color: #3a2810;
  letter-spacing: -0.02em;
}
.process__die::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 8px;
  background: linear-gradient(180deg, #a68847, #7a5e3a);
  border-radius: 2px 2px 0 0;
}
/* Step 2: Press */
.process__press {
  position: relative;
  width: 100%;
  height: 100%;
}
.process__press-bed {
  position: absolute;
  bottom: 18px;
  left: 14%;
  right: 14%;
  height: 14px;
  background: linear-gradient(180deg, #fafaf5, #e0d8c5);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.process__press-bed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 106, 0.35),
    transparent
  );
  border-radius: 2px;
}
.process__press-foil {
  position: absolute;
  bottom: 32px;
  left: 20%;
  right: 20%;
  height: 8px;
  background: var(--fc-foil-gold);
  background-size: 200% 100%;
  animation: fcShimmer 3s linear infinite;
  border-radius: 1px;
}
.process__press-die {
  position: absolute;
  bottom: 44px;
  left: 32%;
  right: 32%;
  height: 30px;
  background: linear-gradient(135deg, #7a5e3a, #a68847, #5a4218);
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  animation: fcPress 3s ease-in-out infinite;
}
.process__press-arrow {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 30px;
  color: var(--fc-navy);
  animation: fcPress 3s ease-in-out infinite;
}
.process__press-arrow svg {
  width: 100%;
  height: 100%;
}
.process__press-heat {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--fc-font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.08);
  padding: 3px 6px;
  border-radius: 4px;
  border: 1px solid rgba(220, 38, 38, 0.2);
}
.process__press-heat::before {
  content: "●";
  margin-right: 3px;
  animation: fcHeat 1.2s ease-in-out infinite;
}
/* Step 3: Finished */
.process__finish {
  width: 120px;
  height: 80px;
  background: linear-gradient(160deg, #fafaf5, #f0e8d5);
  border-radius: 6px;
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(201, 169, 106, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.1);
  display: grid;
  place-items: center;
}
.process__finish-text {
  font-family: var(--fc-font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--fc-foil-gold);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fcShimmer 3s linear infinite;
}
.process__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fc-navy), var(--fc-navy-deep));
  color: #fff;
  font-family: var(--fc-font-mono);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}
.process__step-title {
  font-family: var(--fc-font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--fc-ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.process__step-text {
  font-size: 13px;
  color: var(--fc-slate);
  line-height: 1.55;
  max-width: 260px;
  margin: 0 auto;
}

/* ============ FOIL-ON-SUBSTRATE MATRIX ============ */
.matrix {
  background: var(--fc-paper);
  border: 1px solid var(--fc-line-soft);
  border-radius: var(--fc-r-xl);
  overflow: hidden;
  box-shadow: var(--fc-sh-soft);
}
.matrix__table {
  width: 100%;
  border-collapse: collapse;
}
.matrix__table thead {
  background: linear-gradient(
    135deg,
    var(--fc-navy) 0%,
    var(--fc-navy-deep) 100%
  );
  color: #fff;
}
.matrix__table th {
  text-align: center;
  padding: 18px 14px;
  font-family: var(--fc-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}
.matrix__table th:first-child {
  text-align: left;
  padding-left: 22px;
}
.matrix__table th .th-foil {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  background-size: 200% 100%;
  animation: fcShimmer 4s linear infinite;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.matrix__table th .th-foil--gold {
  background: var(--fc-foil-gold);
}
.matrix__table th .th-foil--rosegold {
  background: var(--fc-foil-rosegold);
}
.matrix__table th .th-foil--silver {
  background: var(--fc-foil-silver);
}
.matrix__table th .th-foil--holo {
  background: var(--fc-foil-holo);
}
.matrix__table tbody tr {
  border-top: 1px solid var(--fc-line-soft);
  transition: background 0.2s ease;
}
.matrix__table tbody tr:hover {
  background: var(--fc-navy-mist);
}
.matrix__table td {
  padding: 16px 14px;
  text-align: center;
  font-size: 13px;
  color: var(--fc-ink);
}
.matrix__table td:first-child {
  text-align: left;
  padding-left: 22px;
  font-family: var(--fc-font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--fc-navy);
}
.cell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.cell--yes {
  background: rgba(22, 163, 74, 0.12);
  color: #16a34a;
}
.cell--ok {
  background: rgba(201, 169, 106, 0.15);
  color: var(--fc-gold-deep);
}
.cell--no {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
}
.cell svg {
  width: 16px;
  height: 16px;
}

/* ============ PERFORMANCE GRID ============ */
.perf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.perf-card {
  background: var(--fc-paper);
  border: 1px solid var(--fc-line-soft);
  border-radius: var(--fc-r-lg);
  padding: 24px 22px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.perf-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--fc-sh-md);
}
.perf-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.perf-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--fc-gold-pale);
  color: var(--fc-gold-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.perf-card__icon svg {
  width: 18px;
  height: 18px;
}
.perf-card__title {
  font-family: var(--fc-font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--fc-ink);
}
.perf-card__text {
  font-size: 13px;
  color: var(--fc-slate);
  line-height: 1.6;
}

/* ============ BRAND STYLE SHOWCASE ============ */
.styles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.style-card {
  background: var(--fc-paper);
  border: 1px solid var(--fc-line-soft);
  border-radius: var(--fc-r-lg);
  padding: 0;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.style-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--fc-sh-md);
}
.style-card__mock {
  height: 120px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.style-card__mock--clinical {
  background: linear-gradient(135deg, #fafafa, #e8eef5);
}
.style-card__mock--blackgold {
  background: linear-gradient(135deg, #0a0a0a, #1a1521);
}
.style-card__mock--botanical {
  background: linear-gradient(135deg, #e8e0c8, #d4c19c);
}
.style-card__mock--pastel {
  background: linear-gradient(135deg, #fde8ed, #fbd5e0);
}
.style-card__mock--transparent {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(200, 220, 240, 0.15) 0,
      rgba(200, 220, 240, 0.15) 10px,
      rgba(220, 235, 250, 0.25) 10px,
      rgba(220, 235, 250, 0.25) 20px
    ),
    linear-gradient(135deg, #e6efff, #cfe0fa);
}
.style-card__label {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: var(--fc-font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.style-card__label--clinical {
  background: #fff;
  border: 1px solid #c0d0e8;
  color: #1a2a4a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.style-card__label--blackgold {
  background: var(--fc-foil-gold);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fcShimmer 4s linear infinite;
  font-size: 18px;
  letter-spacing: 0.12em;
}
.style-card__label--botanical {
  background: var(--fc-foil-gold);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fcShimmer 4s linear infinite;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 16px;
}
.style-card__label--pastel {
  background: var(--fc-foil-rosegold);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fcShimmer 4s linear infinite;
  font-size: 15px;
}
.style-card__label--transparent {
  background-image: var(--fc-foil-gold);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fcShimmer 4s linear infinite;
  font-size: 13px;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 6px 14px;
  border-radius: 3px;
}
.style-card__body {
  padding: 18px 22px 22px;
}
.style-card__title {
  font-family: var(--fc-font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--fc-ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.style-card__text {
  font-size: 13px;
  color: var(--fc-slate);
  line-height: 1.55;
}

/* ============ ARTWORK SEPARATION DEMO ============ */
.separation {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  background: var(--fc-paper);
  border: 1px solid var(--fc-line-soft);
  border-radius: var(--fc-r-xl);
  padding: 32px 28px;
  box-shadow: var(--fc-sh-soft);
}
.sep__col {
  text-align: center;
}
.sep__preview {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--fc-r-md);
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--fc-line);
}
/* Full color artwork */
.sep__preview--full {
  background: linear-gradient(
    160deg,
    var(--fc-navy) 0%,
    var(--fc-navy-deep) 100%
  );
}
.sep__preview--full::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid var(--fc-gold);
  border-radius: 4px;
}
.sep__artwork {
  font-family: var(--fc-font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--fc-gold);
  text-align: center;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.sep__artwork small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  margin-top: 4px;
}
/* Foil layer only (black where foil applies) */
.sep__preview--foil {
  background: #fafaf5;
}
.sep__preview--foil::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid #1a1521;
  border-radius: 4px;
}
.sep__foil-only {
  font-family: var(--fc-font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #1a1521;
  text-align: center;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.sep__foil-only small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: #1a1521;
  font-weight: 600;
  margin-top: 4px;
}
/* Final stamped result */
.sep__preview--final {
  background: linear-gradient(
    160deg,
    var(--fc-navy) 0%,
    var(--fc-navy-deep) 100%
  );
}
.sep__preview--final::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid var(--fc-gold);
  border-radius: 4px;
}
.sep__final-text {
  font-family: var(--fc-font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: var(--fc-foil-gold);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fcShimmer 3s linear infinite;
  text-align: center;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.sep__final-text small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-top: 4px;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.85);
}
.sep__label {
  font-family: var(--fc-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--fc-slate);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.sep__caption {
  font-size: 12px;
  color: var(--fc-slate-light);
  line-height: 1.5;
}

/* ============ COMPLIANCE GRID ============ */
.comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.comp-card {
  background: var(--fc-paper);
  border: 1px solid var(--fc-line-soft);
  border-radius: var(--fc-r-lg);
  padding: 24px 22px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.comp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--fc-sh-md);
}
.comp-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--fc-gold-pale);
  color: var(--fc-gold-deep);
  font-family: var(--fc-font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}
.comp-card__title {
  font-family: var(--fc-font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--fc-ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.comp-card__text {
  font-size: 13px;
  color: var(--fc-slate);
  line-height: 1.6;
}
.comp-card--callout {
  background: linear-gradient(
    160deg,
    var(--fc-navy) 0%,
    var(--fc-navy-deep) 100%
  );
  color: #fff;
  border: none;
}
.comp-card--callout .comp-card__num {
  background: rgba(201, 169, 106, 0.2);
  color: var(--fc-gold);
}
.comp-card--callout .comp-card__title {
  color: #fff;
}
.comp-card--callout .comp-card__text {
  color: rgba(255, 255, 255, 0.82);
}

/* ============ RELATED ============ */
.relatedin {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.related__card {
  background: var(--fc-paper);
  border: 1px solid var(--fc-line-soft);
  border-radius: var(--fc-r-lg);
  padding: 24px 22px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  display: block;
  text-decoration: none;
}
.related__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--fc-sh-md);
  border-color: var(--fc-gold-line);
}
.related__title {
  font-family: var(--fc-font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--fc-ink);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.related__title svg {
  width: 18px;
  height: 18px;
  color: var(--fc-gold-deep);
  transition: transform 0.25s ease;
}
.related__card:hover .related__title svg {
  transform: translateX(4px);
}
.related__text {
  font-size: 13px;
  color: var(--fc-slate);
  line-height: 1.55;
}

/* ============ FAQ ============ */
.faq {
  max-width: 780px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--fc-line);
}
.faq__item:first-child {
  border-top: 1px solid var(--fc-line);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--fc-font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--fc-ink);
  transition: color 0.2s ease;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary:hover {
  color: var(--fc-navy);
}
.faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--fc-navy-pale);
  color: var(--fc-navy);
  display: grid;
  place-items: center;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.faq__icon svg {
  width: 16px;
  height: 16px;
}
.faq__item[open] .faq__icon {
  background: linear-gradient(135deg, var(--fc-gold), var(--fc-gold-deep));
  color: #fff;
  transform: rotate(45deg);
}
.faq__a {
  padding: 0 48px 22px 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--fc-slate);
}
.faq__a p + p {
  margin-top: 10px;
}

/* ============ CTA BAND ============ */
.cta-band {
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(201, 169, 106, 0.18) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(0, 51, 160, 0.12) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, var(--fc-navy-ink) 0%, var(--fc-navy-deep) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 50% 50%,
    rgba(201, 169, 106, 0.08) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.cta-band__title {
  font-family: var(--fc-font-display);
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-band__title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--fc-gold) 0%, #f4d77a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-band__lead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 28px;
}
.cta-band__cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--fc-navy-ink);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer__brand {
  font-family: var(--fc-font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.footer__brand em {
  font-style: italic;
  font-weight: 400;
  color: var(--fc-gold);
}
.footer__about {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 10px;
  max-width: 300px;
}
.footer__loc {
  font-family: var(--fc-font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}
.footer__col h4 {
  font-family: var(--fc-font-display);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.footer__col ul {
  display: grid;
  gap: 8px;
}
.footer__col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__col a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--fc-font-mono);
  letter-spacing: 0.02em;
}

/* ============ STICKY CTA ============ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(10, 20, 48, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 169, 106, 0.3);
  padding: 12px var(--fc-pad);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.sticky-cta.is-visible {
  transform: translateY(0);
}
.sticky-cta__inner {
  max-width: var(--fc-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.sticky-cta__label {
  font-family: var(--fc-font-display);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.sticky-cta__label small {
  display: block;
  font-family: var(--fc-font-mono);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.sticky-cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ ANIMATIONS ============ */
@keyframes fcDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes fcShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes fcShine {
  0% {
    background-position: 250% 0;
  }
  50% {
    background-position: -50% 0;
  }
  100% {
    background-position: -250% 0;
  }
}
@keyframes fcPress {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
@keyframes fcHeat {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .atelier {
    order: 2;
  }
  .nav {
    display: none;
  }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(253, 252, 250, 0.98);
    padding: 20px var(--fc-pad);
    border-bottom: 1px solid var(--fc-line);
    box-shadow: var(--fc-sh-md);
  }
  .nav-toggle {
    display: block;
  }
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .app-grid,
  .perf-grid,
  .styles,
  .comp-grid,
  .relatedin {
    grid-template-columns: repeat(2, 1fr);
  }
  .studio {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .process,
  .separation {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .process__step:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .matcher__table,
  .matrix__table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .atelier__stage {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 10px;
    min-height: auto;
  }
  .vessel {
    transform: scale(0.95);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 560px) {
  .app-grid,
  .perf-grid,
  .styles,
  .comp-grid,
  .relatedin,
  .studio {
    grid-template-columns: 1fr;
  }
  .trust__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .atelier__legend {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__cta .btn {
    justify-content: center;
  }
  .sticky-cta__label {
    display: none;
  }
  .sticky-cta__inner {
    justify-content: center;
  }
  .cta-band__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
