/* src/styles/fusion-v2.css */
:root {
  --fp-max: 1440px;
  --fp-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --fp-fast: 180ms;
  --fp-medium: 520ms;
}

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

html {
  scroll-behavior: smooth;
  background: var(--fusion-paper);
}

body {
  margin: 0;
  background: var(--fusion-paper);
  color: var(--fusion-ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

.fp-site {
  min-width: 0;
  overflow-x: clip;
  background: var(--fusion-paper);
}

.fp-skip {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 12px 18px;
  background: var(--fusion-ink);
  color: var(--fusion-white);
  transform: translateY(-180%);
  transition: transform var(--fp-fast) var(--fp-ease);
}

.fp-skip:focus {
  transform: translateY(0);
}

.fp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  align-items: stretch;
  min-height: 84px;
  background: color-mix(in srgb, var(--fusion-paper) 94%, transparent);
  border-bottom: 1px solid var(--fusion-line);
  backdrop-filter: blur(14px);
}

.fp-header::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 84px;
  height: 5px;
  background: var(--fusion-oxide);
}

.fp-brand,
.fp-call-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.fp-brand {
  gap: 14px;
  padding: 0 clamp(20px, 4vw, 64px);
}

.fp-brand-name,
.fp-footer-mark {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.fp-brand-name::after,
.fp-footer-mark > span {
  content: "";
  color: var(--fusion-oxide);
}

.fp-brand-name::after {
  content: ".";
}

.fp-brand-trade {
  max-width: 90px;
  color: var(--fusion-slate);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.16em;
}

.fp-nav {
  display: flex;
  align-items: stretch;
}

.fp-nav a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 22px;
  color: var(--fusion-slate);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.fp-nav a::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  height: 2px;
  background: var(--fusion-oxide);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--fp-ease);
}

.fp-nav a:hover::after,
.fp-nav a:focus-visible::after,
.fp-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.fp-call-link {
  justify-self: end;
  gap: 10px;
  min-width: 190px;
  justify-content: center;
  padding: 0 clamp(22px, 4vw, 58px);
  background: var(--fusion-oxide);
  color: var(--fusion-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color var(--fp-fast) ease, color var(--fp-fast) ease;
}

.fp-call-link:hover {
  background: var(--fusion-ink);
  color: var(--fusion-white);
}

.fp-phone-icon {
  display: inline-grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 1.05em;
  line-height: 1;
  transform-origin: 50% 60%;
  transition: transform 260ms var(--fp-ease);
}

.fp-call-link:hover .fp-phone-icon,
.fp-btn:hover .fp-phone-icon,
.fp-contact-action:hover .fp-phone-icon {
  transform: rotate(-12deg) scale(1.12);
}

.fp-main {
  min-height: 70vh;
}

.fp-page {
  min-width: 0;
  overflow: clip;
}

.fp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  min-height: calc(100svh - 84px);
  background: var(--fusion-paper);
}

.fp-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 8vw, 132px) clamp(24px, 5.5vw, 92px);
}

.fp-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--fusion-oxide);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fp-kicker::before {
  content: "";
  flex: 0 0 34px;
  height: 3px;
  background: currentColor;
}

.fp-kicker-light {
  color: var(--fusion-white);
}

.fp-kicker-dark {
  color: var(--fusion-ink);
}

.fp-hero-title {
  margin: clamp(30px, 4vw, 58px) 0 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6.4vw, 7.3rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.fp-hero-title span {
  display: block;
}

.fp-orange-text {
  color: var(--fusion-oxide);
}

.fp-hero-lede {
  max-width: 760px;
  margin: clamp(30px, 4vw, 54px) 0 0;
  color: var(--fusion-slate);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.65;
}

.fp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 4vw, 46px);
}

.fp-btn {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 25px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform var(--fp-fast) var(--fp-ease), background-color var(--fp-fast) ease, color var(--fp-fast) ease, border-color var(--fp-fast) ease;
}

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

.fp-btn:active {
  transform: translateY(0) scale(0.98);
}

.fp-btn-orange {
  background: var(--fusion-oxide);
  color: var(--fusion-ink);
}

.fp-btn-orange:hover {
  background: var(--fusion-ink);
  color: var(--fusion-white);
}

.fp-btn-outline {
  border-color: var(--fusion-ink);
  color: var(--fusion-ink);
}

.fp-btn-outline:hover {
  background: var(--fusion-ink);
  color: var(--fusion-white);
}

.fp-btn-dark {
  background: var(--fusion-ink);
  color: var(--fusion-white);
}

.fp-btn-dark:hover {
  background: var(--fusion-white);
  color: var(--fusion-ink);
}

.fp-btn-light {
  background: var(--fusion-white);
  color: var(--fusion-ink);
}

.fp-btn-light:hover {
  background: var(--fusion-ink);
  color: var(--fusion-white);
}

.fp-btn-light-outline {
  border-color: var(--fusion-ink);
  color: var(--fusion-ink);
}

.fp-btn-light-outline:hover {
  background: var(--fusion-ink);
  color: var(--fusion-white);
}

.fp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: clamp(34px, 5vw, 62px);
  color: var(--fusion-slate);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fp-hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fp-hero-meta span::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--fusion-oxide);
}

.fp-hero-visual {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: var(--fusion-ink);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.fp-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, color-mix(in srgb, var(--fusion-ink) 88%, transparent));
  pointer-events: none;
}

.fp-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  transition: transform 1.2s var(--fp-ease);
}

.fp-hero-visual:hover img {
  transform: scale(1.035);
}

.fp-hero-visual figcaption {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 15%;
  z-index: 2;
  max-width: 460px;
  color: var(--fusion-white);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.fp-hero-stamp {
  position: absolute;
  top: 54px;
  right: -50px;
  z-index: 2;
  padding: 12px 64px;
  background: var(--fusion-oxide);
  color: var(--fusion-ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  transform: rotate(34deg);
}

.fp-signal {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--fusion-ink);
  border-bottom: 1px solid var(--fusion-ink);
  background: var(--fusion-oxide);
}

.fp-signal-track {
  display: inline-flex;
  width: max-content;
  min-height: 64px;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: -0.02em;
  animation: fp-marquee 26s linear infinite;
}

.fp-signal-track i {
  font-size: 9px;
  font-style: normal;
}

@keyframes fp-marquee {
  to { transform: translateX(-50%); }
}

.fp-section {
  padding: clamp(84px, 10vw, 148px) clamp(20px, 5vw, 80px);
}

.fp-intro {
  max-width: var(--fp-max);
  margin: 0 auto;
}

.fp-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
  margin-top: clamp(42px, 6vw, 82px);
}

.fp-display {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.1vw, 7.2rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.fp-large-copy {
  margin: 0;
  color: var(--fusion-slate);
  font-size: clamp(1.12rem, 1.7vw, 1.6rem);
  line-height: 1.55;
}

.fp-service-showcase {
  max-width: var(--fp-max);
  margin: 0 auto;
  border-top: 1px solid var(--fusion-line);
}

.fp-service-index {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(30px, 5vw, 64px);
  color: var(--fusion-oxide);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fp-service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(40px, 7vw, 108px);
  align-items: center;
}

.fp-service-grid-reverse .fp-service-image {
  order: 2;
}

.fp-service-image,
.fp-detail-image,
.fp-wide-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--fusion-ink);
}

.fp-service-image {
  min-height: 670px;
  clip-path: polygon(0 0, 92% 0, 100% 10%, 100% 100%, 0 100%);
}

.fp-service-image img {
  height: 670px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 900ms var(--fp-ease), filter 400ms ease;
}

.fp-service-image:hover img {
  transform: scale(1.045);
  filter: saturate(1) contrast(1);
}

.fp-service-image > span,
.fp-detail-image > span {
  position: absolute;
  right: 20px;
  bottom: 18px;
  padding: 8px 10px;
  background: var(--fusion-ink);
  color: var(--fusion-white);
  font-size: 9px;
  letter-spacing: 0.06em;
}

.fp-service-content h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.2vw, 6.3rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.fp-service-content > p {
  margin: clamp(28px, 4vw, 48px) 0 0;
  color: var(--fusion-slate);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.7;
}

.fp-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.fp-service-tags li {
  padding: 10px 13px;
  border: 1px solid var(--fusion-line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fp-arrow-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 38px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--fusion-oxide);
  color: var(--fusion-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: gap var(--fp-fast) var(--fp-ease), color var(--fp-fast) ease;
}

.fp-arrow-link:hover {
  gap: 20px;
  color: var(--fusion-oxide);
}

.fp-service-dark {
  max-width: none;
  background: var(--fusion-ink);
  color: var(--fusion-white);
}

.fp-service-dark > * {
  max-width: calc(var(--fp-max) - 160px);
  margin-right: auto;
  margin-left: auto;
}

.fp-service-index-light {
  color: var(--fusion-oxide);
}

.fp-service-dark .fp-service-content > p {
  color: var(--fusion-line);
}

.fp-service-tags-dark li {
  border-color: color-mix(in srgb, var(--fusion-white) 24%, transparent);
}

.fp-arrow-link-light {
  color: var(--fusion-white);
}

.fp-arrow-link-dark {
  border-color: var(--fusion-ink);
  color: var(--fusion-ink);
}

.fp-process {
  display: grid;
  max-width: var(--fp-max);
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(60px, 10vw, 160px);
  margin: 0 auto;
}

.fp-process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--fusion-line);
  list-style: none;
}

.fp-process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--fusion-line);
}

.fp-process-list li > span {
  color: var(--fusion-oxide);
  font-size: 11px;
  font-weight: 800;
}

.fp-process-list h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
}

.fp-process-list p {
  margin: 8px 0 0;
  color: var(--fusion-slate);
}

.fp-credentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--fusion-ink);
  border-bottom: 1px solid var(--fusion-ink);
}

.fp-credentials > div {
  min-width: 0;
  padding: 28px clamp(18px, 3vw, 44px);
  border-right: 1px solid var(--fusion-ink);
}

.fp-credentials > div:last-child {
  border-right: 0;
}

.fp-credentials span,
.fp-credentials strong {
  display: block;
}

.fp-credentials span {
  color: var(--fusion-slate);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fp-credentials strong {
  margin-top: 8px;
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
}

.fp-final-cta {
  padding: clamp(84px, 10vw, 150px) clamp(20px, 6vw, 96px);
  background: var(--fusion-oxide);
  color: var(--fusion-ink);
}

.fp-final-cta h2 {
  max-width: 1100px;
  margin: 34px 0 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 9rem);
  font-weight: 400;
  line-height: 0.87;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.fp-subhero {
  min-height: 77svh;
  padding: clamp(88px, 11vw, 170px) clamp(20px, 6vw, 96px) clamp(68px, 8vw, 120px);
  background: var(--fusion-ink);
  color: var(--fusion-white);
}

.fp-subhero h1,
.fp-contact-hero h1 {
  max-width: 1220px;
  margin: clamp(38px, 5vw, 70px) 0 0;
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 8vw, 9.5rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.fp-subhero-footer {
  display: grid;
  grid-template-columns: minmax(0, 640px) auto;
  gap: 48px;
  align-items: end;
  justify-content: space-between;
  margin-top: clamp(50px, 8vw, 100px);
}

.fp-subhero-footer p {
  margin: 0;
  color: var(--fusion-line);
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  line-height: 1.65;
}

.fp-detail {
  display: grid;
  max-width: var(--fp-max);
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 8vw, 120px);
  margin: 0 auto;
  align-items: start;
}

.fp-detail-heading {
  position: sticky;
  top: 120px;
}

.fp-detail-heading > span {
  color: var(--fusion-oxide);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fp-detail-heading h2 {
  margin: 30px 0 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.fp-detail-image,
.fp-detail-copy {
  grid-column: 2;
}

.fp-detail-image {
  min-height: 620px;
}

.fp-detail-image img {
  height: 620px;
  object-fit: cover;
  transition: transform 900ms var(--fp-ease);
}

.fp-detail-image:hover img {
  transform: scale(1.04);
}

.fp-detail-copy {
  padding-top: clamp(34px, 5vw, 68px);
}

.fp-detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  margin-top: clamp(38px, 6vw, 72px);
}

.fp-detail-columns h3 {
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fp-checks {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--fusion-line);
  list-style: none;
}

.fp-checks li {
  position: relative;
  padding: 16px 0 16px 22px;
  border-bottom: 1px solid var(--fusion-line);
}

.fp-checks li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--fusion-oxide);
}

.fp-note {
  margin: 32px 0 0;
  padding: 20px;
  border-left: 4px solid var(--fusion-ink);
  background: color-mix(in srgb, var(--fusion-white) 45%, transparent);
  font-size: 0.92rem;
}

.fp-detail-orange {
  max-width: none;
  background: var(--fusion-oxide);
}

.fp-detail-orange > * {
  max-width: 820px;
}

.fp-detail-orange .fp-detail-heading {
  margin-left: max(0px, calc((100vw - var(--fp-max)) / 2));
}

.fp-detail-orange .fp-detail-heading > span {
  color: var(--fusion-ink);
}

.fp-detail-orange .fp-checks {
  border-color: var(--fusion-ink);
}

.fp-detail-orange .fp-checks li {
  border-color: color-mix(in srgb, var(--fusion-ink) 38%, transparent);
}

.fp-detail-orange .fp-checks li::before {
  background: var(--fusion-ink);
}

.fp-scope {
  display: grid;
  max-width: var(--fp-max);
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(50px, 8vw, 120px);
  margin: 0 auto;
  align-items: end;
}

.fp-scope-copy > p {
  margin: 0 0 30px;
  color: var(--fusion-slate);
  font-size: 1.12rem;
  line-height: 1.7;
}

.fp-about-statement {
  display: grid;
  max-width: var(--fp-max);
  grid-template-columns: 80px minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(34px, 6vw, 96px);
  margin: 0 auto;
  align-items: start;
}

.fp-about-number {
  color: var(--fusion-oxide);
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.fp-about-copy {
  display: grid;
  gap: 22px;
  color: var(--fusion-slate);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.7;
}

.fp-about-copy p {
  margin: 0;
}

.fp-wide-image {
  height: min(72vw, 840px);
  max-width: calc(var(--fp-max) - 80px);
  margin: 0 auto;
  clip-path: polygon(0 0, 96% 0, 100% 8%, 100% 100%, 0 100%);
}

.fp-wide-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--fp-ease);
}

.fp-wide-image:hover img {
  transform: scale(1.025);
}

.fp-wide-image figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 9px 12px;
  background: var(--fusion-ink);
  color: var(--fusion-white);
  font-size: 9px;
}

.fp-values {
  display: grid;
  max-width: var(--fp-max);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 auto;
  padding-top: 1px;
  padding-bottom: 1px;
  background: var(--fusion-line);
}

.fp-values article {
  min-width: 0;
  padding: clamp(38px, 5vw, 74px);
  background: var(--fusion-paper);
}

.fp-values article > span {
  color: var(--fusion-oxide);
  font-size: 10px;
  font-weight: 800;
}

.fp-values h2 {
  margin: 42px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.fp-values p {
  margin: 24px 0 0;
  color: var(--fusion-slate);
}

.fp-licence-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.75fr);
  gap: clamp(50px, 9vw, 140px);
  padding: clamp(84px, 10vw, 150px) clamp(20px, 6vw, 96px);
  background: var(--fusion-ink);
  color: var(--fusion-white);
}

.fp-licence-block h2 {
  max-width: 800px;
  margin: 40px 0 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.fp-licence-block dl {
  margin: 0;
}

.fp-licence-block dl > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--fusion-white) 24%, transparent);
}

.fp-licence-block dt {
  color: var(--fusion-line);
}

.fp-licence-block dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.fp-contact-hero {
  display: grid;
  min-height: 78svh;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.7fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  padding: clamp(88px, 11vw, 170px) clamp(20px, 6vw, 96px);
  background: var(--fusion-ink);
  color: var(--fusion-white);
}

.fp-contact-lede {
  max-width: 700px;
  margin: 36px 0 0;
  color: var(--fusion-line);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.7;
}

.fp-contact-actions {
  display: grid;
  gap: 1px;
  background: color-mix(in srgb, var(--fusion-white) 20%, transparent);
}

.fp-contact-action {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 5px 14px;
  min-width: 0;
  padding: clamp(28px, 4vw, 52px);
  background: var(--fusion-white);
  color: var(--fusion-ink);
  text-decoration: none;
  transition: transform 260ms var(--fp-ease), background-color 180ms ease;
}

.fp-contact-action:hover {
  z-index: 1;
  background: var(--fusion-paper);
  transform: translateX(-8px);
}

.fp-contact-action-orange {
  background: var(--fusion-oxide);
}

.fp-contact-action > span {
  grid-row: 1 / span 2;
  font-size: 1.25rem;
}

.fp-contact-action strong {
  min-width: 0;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  line-height: 1.2;
}

.fp-contact-action small {
  min-width: 0;
  color: var(--fusion-slate);
  overflow-wrap: anywhere;
}

.fp-contact-body {
  display: grid;
  max-width: var(--fp-max);
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(50px, 9vw, 140px);
  margin: 0 auto;
}

.fp-contact-prep,
.fp-contact-list,
.fp-contact-list li,
.fp-contact-list p {
  min-width: 0;
}

.fp-contact-list {
  margin: clamp(48px, 6vw, 82px) 0 0;
  padding: 0;
  border-top: 1px solid var(--fusion-line);
  list-style: none;
}

.fp-contact-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--fusion-line);
}

.fp-contact-list li > span {
  color: var(--fusion-oxide);
  font-size: 10px;
  font-weight: 800;
}

.fp-contact-list p {
  margin: 0;
  color: var(--fusion-slate);
}

.fp-contact-list strong {
  color: var(--fusion-ink);
}

.fp-contact-card {
  align-self: start;
  min-width: 0;
  padding: clamp(32px, 5vw, 70px);
  background: var(--fusion-white);
}

.fp-contact-card dl {
  margin: 42px 0 34px;
}

.fp-contact-card dl > div {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--fusion-line);
}

.fp-contact-card dt {
  color: var(--fusion-slate);
  font-size: 11px;
}

.fp-contact-card dd {
  min-width: 0;
  margin: 0;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-align: right;
}

.fp-contact-banner {
  display: flex;
  gap: 50px;
  align-items: end;
  justify-content: space-between;
  padding: clamp(72px, 9vw, 130px) clamp(20px, 6vw, 96px);
  background: var(--fusion-oxide);
}

.fp-contact-banner p {
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fp-contact-banner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.fp-footer {
  position: relative;
  padding: 0 clamp(20px, 5vw, 80px) 24px;
  background: var(--fusion-ink);
  color: var(--fusion-white);
}

.fp-footer-stripe {
  display: flex;
  height: 14px;
  margin: 0 calc(clamp(20px, 5vw, 80px) * -1);
  overflow: hidden;
}

.fp-footer-stripe span {
  flex: 1;
  min-width: 90px;
  background: var(--fusion-oxide);
  clip-path: polygon(0 0, 82% 0, 100% 100%, 18% 100%);
}

.fp-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.55fr 1fr;
  gap: clamp(42px, 8vw, 120px);
  padding: clamp(72px, 8vw, 120px) 0;
}

.fp-footer-brand p {
  max-width: 340px;
  margin: 24px 0 0;
  color: var(--fusion-line);
}

.fp-footer-nav,
.fp-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.fp-footer-nav > span {
  margin-bottom: 10px;
  color: var(--fusion-slate);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fp-footer-nav a,
.fp-footer-contact a {
  color: var(--fusion-white);
  text-decoration: none;
  transition: color var(--fp-fast) ease, transform var(--fp-fast) var(--fp-ease);
}

.fp-footer-nav a:hover,
.fp-footer-contact a:hover {
  color: var(--fusion-oxide);
  transform: translateX(5px);
}

.fp-footer-contact {
  color: var(--fusion-line);
  font-style: normal;
  overflow-wrap: anywhere;
}

.fp-footer-call {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.fp-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding-top: 22px;
  border-top: 1px solid color-mix(in srgb, var(--fusion-white) 16%, transparent);
  color: var(--fusion-slate);
  font-size: 9px;
  letter-spacing: 0.06em;
}

.fp-footer-legal strong {
  color: var(--fusion-line);
}

.fp-motion-ready .fp-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms var(--fp-ease), transform 700ms var(--fp-ease);
}

.fp-motion-ready .fp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fp-motion-ready .fp-reveal:nth-child(2) {
  transition-delay: 90ms;
}

.fp-motion-ready .fp-reveal:nth-child(3) {
  transition-delay: 160ms;
}

.fp-motion-ready .fp-reveal:nth-child(4) {
  transition-delay: 230ms;
}

.fp-header.is-scrolled {
  box-shadow: 0 14px 34px color-mix(in srgb, var(--fusion-ink) 10%, transparent);
}

.fp-header a:focus-visible,
.fp-btn:focus-visible,
.fp-arrow-link:focus-visible,
.fp-contact-action:focus-visible,
.fp-footer a:focus-visible {
  outline: 3px solid var(--fusion-oxide);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .fp-header {
    grid-template-columns: 1fr auto auto;
  }

  .fp-nav a {
    padding: 0 13px;
  }

  .fp-nav a::after {
    right: 13px;
    left: 13px;
  }

  .fp-call-link {
    min-width: 150px;
    padding: 0 25px;
  }

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

  .fp-hero-visual {
    min-height: 540px;
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  }

  .fp-hero-visual img {
    min-height: 540px;
  }

  .fp-intro-grid,
  .fp-process,
  .fp-about-statement {
    grid-template-columns: 1fr;
  }

  .fp-about-number {
    display: none;
  }

  .fp-service-grid {
    grid-template-columns: 1fr;
  }

  .fp-service-grid-reverse .fp-service-image {
    order: 0;
  }

  .fp-service-dark > * {
    max-width: none;
  }

  .fp-detail {
    grid-template-columns: 1fr;
  }

  .fp-detail-heading {
    position: static;
  }

  .fp-detail-image,
  .fp-detail-copy {
    grid-column: 1;
  }

  .fp-detail-orange > *,
  .fp-detail-orange .fp-detail-heading {
    max-width: none;
    margin-left: 0;
  }

  .fp-values {
    grid-template-columns: 1fr;
  }

  .fp-licence-block,
  .fp-contact-hero,
  .fp-contact-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .fp-header {
    min-height: 66px;
    grid-template-columns: 1fr auto;
  }

  .fp-header::before {
    width: 56px;
    height: 4px;
  }

  .fp-brand {
    gap: 8px;
    padding: 0 16px;
  }

  .fp-brand-name {
    font-size: 1.18rem;
  }

  .fp-brand-trade {
    max-width: 72px;
    font-size: 7px;
  }

  .fp-nav {
    display: none;
  }

  .fp-call-link {
    min-width: 116px;
    padding: 0 15px;
    font-size: 10px;
  }

  .fp-hero {
    min-height: auto;
  }

  .fp-hero-copy {
    padding: 76px 18px 68px;
  }

  .fp-hero-title {
    font-size: clamp(3.25rem, 15.6vw, 4.25rem);
    line-height: 0.88;
  }

  .fp-hero-lede {
    line-height: 1.6;
  }

  .fp-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .fp-actions .fp-btn {
    width: 100%;
  }

  .fp-hero-visual,
  .fp-hero-visual img {
    min-height: 440px;
  }

  .fp-hero-visual {
    clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 100%);
  }

  .fp-hero-visual figcaption {
    left: 20px;
  }

  .fp-hero-stamp {
    top: 42px;
    right: -70px;
  }

  .fp-signal-track {
    min-height: 54px;
    font-size: 14px;
  }

  .fp-section {
    padding: 78px 18px;
  }

  .fp-intro-grid {
    gap: 34px;
    margin-top: 34px;
  }

  .fp-display {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .fp-service-index {
    margin-bottom: 26px;
  }

  .fp-service-image,
  .fp-service-image img {
    min-height: 420px;
    height: 420px;
  }

  .fp-service-content h2 {
    font-size: clamp(2.8rem, 13vw, 4.1rem);
  }

  .fp-service-content {
    padding-top: 34px;
  }

  .fp-service-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .fp-process {
    gap: 48px;
  }

  .fp-process-list li {
    grid-template-columns: 38px 1fr;
  }

  .fp-credentials {
    grid-template-columns: 1fr 1fr;
  }

  .fp-credentials > div:nth-child(2) {
    border-right: 0;
  }

  .fp-credentials > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--fusion-ink);
  }

  .fp-final-cta {
    padding: 78px 18px;
  }

  .fp-final-cta h2 {
    font-size: clamp(3.2rem, 15vw, 4.6rem);
  }

  .fp-subhero {
    min-height: auto;
    padding: 96px 18px 76px;
  }

  .fp-subhero h1,
  .fp-contact-hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .fp-subhero-footer {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 52px;
  }

  .fp-subhero-footer .fp-btn {
    width: 100%;
  }

  .fp-detail-heading h2 {
    font-size: clamp(2.8rem, 13vw, 4.15rem);
  }

  .fp-detail-image,
  .fp-detail-image img {
    min-height: 430px;
    height: 430px;
  }

  .fp-detail-columns {
    grid-template-columns: 1fr;
  }

  .fp-scope {
    grid-template-columns: 1fr;
  }

  .fp-wide-image {
    width: 100%;
    height: 520px;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
  }

  .fp-values article {
    padding: 56px 18px;
  }

  .fp-values h2 {
    font-size: 3rem;
  }

  .fp-licence-block {
    grid-template-columns: 1fr;
    padding: 78px 18px;
  }

  .fp-licence-block h2 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .fp-licence-block dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .fp-licence-block dd {
    text-align: left;
  }

  .fp-contact-hero {
    gap: 50px;
    min-height: auto;
    padding: 96px 18px 76px;
  }

  .fp-contact-action {
    padding: 28px 22px;
  }

  .fp-contact-body {
    gap: 68px;
  }

  .fp-contact-prep .fp-display {
    font-size: 2.25rem;
    letter-spacing: -0.065em;
  }

  .fp-contact-list li {
    grid-template-columns: 36px 1fr;
  }

  .fp-contact-card {
    padding: 38px 22px;
  }

  .fp-contact-card dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .fp-contact-card dd {
    text-align: left;
  }

  .fp-contact-banner {
    display: grid;
    padding: 72px 18px;
  }

  .fp-contact-banner h2 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .fp-contact-banner .fp-btn {
    width: 100%;
  }

  .fp-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .fp-footer-stripe {
    margin-right: -18px;
    margin-left: -18px;
  }

  .fp-footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 68px 0;
  }

  .fp-footer-legal {
    display: grid;
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .fp-hero-title,
  .fp-subhero h1,
  .fp-contact-hero h1 {
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .fp-service-tags {
    grid-template-columns: 1fr;
  }

  .fp-credentials {
    grid-template-columns: 1fr;
  }

  .fp-credentials > div {
    border-right: 0;
    border-bottom: 1px solid var(--fusion-ink);
  }

  .fp-credentials > div:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fp-signal-track {
    animation: none;
  }

  .fp-motion-ready .fp-reveal,
  .fp-motion-ready .fp-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .fp-service-image img,
  .fp-detail-image img,
  .fp-wide-image img,
  .fp-hero-visual img,
  .fp-btn,
  .fp-arrow-link,
  .fp-contact-action,
  .fp-phone-icon {
    transition: none;
  }
}

/* src/styles/lozitick-step-slot.css */
/**
 * Tablet + mobile step-through for the services list and the process list.
 *
 * Each row/card sits in its own .lzt-stepSlot and pins inside that slot, so it
 * is held still while the reader takes it in and then clears out before the
 * next one arrives. Slot heights are fixed and the inline image is always at
 * full height, so nothing reflows mid-scroll — an earlier version toggled the
 * image height, which moved the very geometry the active-index calculation
 * depended on and made it cascade several steps at once.
 *
 * Above 980px .lzt-stepSlot is display:contents: it generates no box at all,
 * and the desktop layout renders exactly as if the wrapper were not there.
 *
 * This lives in a code asset rather than the design-system stylesheet because
 * design-system edits on this site have been observed to get reverted, which
 * previously left the markup and the CSS out of step.
 *
 * Companion script: src/scripts/lozitick-step-media.js — it only marks which
 * item is currently pinned (class lzt-mediaOn) so the highlight follows it.
 * The pin offset below and the pin line in that script must stay in sync.
 */

.lzt-stepSlot {
  display: contents;
}

@media (max-width: 980px) {
  /* --- the scroll slot --- */
  .lzt-stepSlot {
    min-height: 96vh;
    display: block;
    position: relative;
  }

  .lzt-serviceList,
  .lzt-processList {
    display: block;
    /* a transform on an ancestor would disable sticky on its descendants */
    transform: none;
    will-change: auto;
  }

  /* sticky fails if an ancestor is a scroll container */
  .lzt-processSticky,
  .lzt-processViewport {
    overflow: visible;
  }

  /* --- the pinned row / card --- */
  .lzt-serviceTab {
    position: sticky;
    top: 10vh;
    padding: 16px 0 22px;
    background: var(--lzt-white);
    border-bottom: 1px solid var(--lzt-line);
  }

  .lzt-processItem {
    position: sticky;
    top: 10vh;
    min-height: 0;
    height: auto;
  }

  /* --- the inline image: always open, never animates height --- */
  .lzt-page .lzt-stepSlot .lzt-itemMedia {
    height: clamp(180px, 38vh, 300px);
    margin-top: 18px;
    display: block;
    opacity: 1;
    transform: none;
    transition: none;
  }

  /* --- highlight follows whichever item is pinned --- */
  .lzt-serviceTab.lzt-mediaOn,
  .lzt-serviceTab.is-active.lzt-mediaOn {
    color: var(--lzt-black);
  }

  .lzt-processItem.lzt-mediaOn,
  .lzt-processItem.is-active.lzt-mediaOn {
    background: var(--lzt-yellow);
    color: var(--lzt-black);
  }

  /* --- the desktop-only previews are redundant here --- */
  .lzt-servicePreview,
  .lzt-processImage {
    display: none;
  }

  .lzt-servicesGrid {
    grid-template-columns: 1fr;
  }
}


/* src/styles/lozitick-sticky-nav.css */
/**
 * Sticky primary nav — mobile, tablet and desktop.
 *
 * Each page renders its own .lzt-nav inside its hero section, so this bar is a
 * second, condensed nav that lives in the everywhere template. It is hidden
 * until the hero has scrolled past the top of the viewport, then slides down.
 *
 * z-index sits below the drawer (80) and its backdrop (70) so the mobile menu
 * still covers it, and below the skip link (999).
 *
 * It reuses .lzt-brand / .lzt-navLinks / .lzt-navActions / .lzt-navCta /
 * .lzt-burger from the design system, so it inherits the same type, hover
 * underline and the >980px link/burger swap for free.
 *
 * This lives in a code asset rather than the design-system stylesheet because
 * design-system edits on this site have been observed to get reverted.
 *
 * Companion script: src/scripts/lozitick-sticky-nav.js — it only toggles
 * .is-visible; all motion is defined here.
 */

.lzt-stickyBar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: saturate(1.35) blur(14px);
  backdrop-filter: saturate(1.35) blur(14px);
  border-bottom: 1px solid var(--lzt-line);
  transform: translateY(-101%);
  opacity: 0;
  visibility: hidden;
  will-change: transform;
  transition:
    transform 520ms var(--lzt-ease),
    opacity 240ms ease,
    visibility 0s linear 520ms;
}

/* no backdrop-filter support: fall back to an opaque bar */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .lzt-stickyBar {
    background: var(--lzt-white);
  }
}

.lzt-stickyBar.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition:
    transform 520ms var(--lzt-ease),
    opacity 300ms ease,
    visibility 0s linear 0s;
}

.lzt-stickyInner {
  display: flex;
  align-items: center;
  min-height: 66px;
  gap: clamp(24px, 4vw, 64px);
  padding-inline: var(--lzt-gut);
}

.lzt-stickyBar .lzt-brand {
  font-size: 1.4rem;
}

.lzt-stickyBar .lzt-navLinks {
  row-gap: clamp(18px, 2.4vw, 34px);
  column-gap: clamp(18px, 2.4vw, 34px);
}

.lzt-stickyBar .lzt-navCta {
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.94rem;
}

.lzt-stickyBar .lzt-burger {
  width: 40px;
  height: 40px;
}

@media (max-width: 980px) {
  .lzt-stickyInner {
    min-height: 60px;
  }
}

@media (max-width: 700px) {
  .lzt-stickyInner {
    min-height: 56px;
  }

  .lzt-stickyBar .lzt-brand {
    font-size: 1.2rem;
  }
}

@media (max-width: 560px) {
  .lzt-stickyBar .lzt-navCta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.85rem;
  }
}

/* the drawer owns the screen while it is open */
body.fx-nav-open .lzt-stickyBar {
  transform: translateY(-101%);
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .lzt-stickyBar,
  .lzt-stickyBar.is-visible {
    transition-duration: 0.01ms;
    transition-delay: 0s;
  }
}

@media print {
  .lzt-stickyBar {
    display: none;
  }
}


/* src/styles/fx-cookie-banner.css */
/* Fusion — cookie notice (compact bar) + preferences modal.
   NOTE: keep this file free of ::before / ::after rules. The toggle knob is a
   real .fxcm-knob element for that reason. */

.fxcc-bar,
.fxcm {
  --fxc-ink: #0c0c0c;
  --fxc-paper: #ffffff;
  --fxc-yellow: #fdf45b;
  --fxc-line: #d9d9d6;
  --fxc-mid: rgba(12, 12, 12, 0.6);
  --fxc-display: var(--font-lzt-display, "Big Shoulders", "Arial Narrow", Impact, sans-serif);
  --fxc-body: var(--font-lzt-body, Inter, system-ui, sans-serif);
  --fxc-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.fxcc-bar,
.fxcc-bar *,
.fxcm,
.fxcm * {
  box-sizing: border-box;
}

/* ------------------------------------------------------------ compact bar */

.fxcc-bar {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9998;
  width: min(calc(100vw - 40px), 430px);
  padding: 15px 17px;
  display: grid;
  gap: 12px;
  border: 1px solid var(--fxc-line);
  border-left: 3px solid var(--fxc-yellow);
  background: var(--fxc-paper);
  box-shadow: 0 14px 40px rgba(12, 12, 12, 0.14);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.24s var(--fxc-ease), transform 0.24s var(--fxc-ease);
}

.fxcc-bar.is-open {
  opacity: 1;
  transform: translateY(0);
}

.fxcc-barText {
  margin: 0;
  color: var(--fxc-mid);
  font-family: var(--fxc-body);
  font-size: 0.82rem;
  line-height: 1.5;
}

.fxcc-barText a {
  color: var(--fxc-ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.fxcc-barActions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.fxcc-mini {
  min-height: 34px;
  padding: 0 15px;
  border: 1.5px solid var(--fxc-ink);
  border-radius: 0;
  background: transparent;
  color: var(--fxc-ink);
  font-family: var(--fxc-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.fxcc-mini:hover {
  background: var(--fxc-yellow);
}

.fxcc-mini:focus-visible {
  outline: 2px solid var(--fxc-ink);
  outline-offset: 2px;
}

.fxcc-mini-solid {
  background: var(--fxc-ink);
  color: var(--fxc-yellow);
}

.fxcc-mini-solid:hover {
  background: var(--fxc-yellow);
  color: var(--fxc-ink);
}

.fxcc-mini-text {
  margin-left: auto;
  padding: 0 4px;
  border-color: transparent;
  color: var(--fxc-mid);
  font-family: var(--fxc-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: underline;
  text-transform: none;
  text-underline-offset: 3px;
}

.fxcc-mini-text:hover {
  background: transparent;
  color: var(--fxc-ink);
}

/* ------------------------------------------------------------------ modal */

.fxcm {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--fxc-ease);
}

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

.fxcm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.55);
}

.fxcm-panel {
  position: relative;
  width: min(100%, 520px);
  max-height: min(88vh, 720px);
  overflow-y: auto;
  padding: clamp(22px, 3vw, 30px);
  display: grid;
  gap: 16px;
  border-top: 4px solid var(--fxc-yellow);
  background: var(--fxc-paper);
  box-shadow: 0 30px 80px rgba(12, 12, 12, 0.34);
  transform: translateY(12px) scale(0.985);
  transition: transform 0.22s var(--fxc-ease);
}

.fxcm.is-open .fxcm-panel {
  transform: translateY(0) scale(1);
}

.fxcm-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}

.fxcm-title {
  margin: 0;
  color: var(--fxc-ink);
  font-family: var(--fxc-display);
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.012em;
  line-height: 1;
  text-transform: uppercase;
}

.fxcm-close {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid var(--fxc-line);
  border-radius: 0;
  background: transparent;
  color: var(--fxc-ink);
  font-family: var(--fxc-body);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease;
}

.fxcm-close:hover {
  border-color: var(--fxc-ink);
  background: var(--fxc-yellow);
}

.fxcm-close:focus-visible {
  outline: 2px solid var(--fxc-ink);
  outline-offset: 2px;
}

.fxcm-intro {
  margin: 0;
  color: var(--fxc-mid);
  font-family: var(--fxc-body);
  font-size: 0.87rem;
  line-height: 1.6;
}

.fxcm-intro a {
  color: var(--fxc-ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fxcm-rows {
  display: grid;
}

.fxcm-row {
  padding: 15px 0;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid var(--fxc-line);
}

.fxcm-row:last-child {
  border-bottom: 1px solid var(--fxc-line);
}

.fxcm-rowHead {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.fxcm-rowLabel {
  color: var(--fxc-ink);
  font-family: var(--fxc-body);
  font-size: 0.92rem;
  font-weight: 700;
}

.fxcm-tag {
  padding: 3px 7px;
  background: var(--fxc-yellow);
  color: var(--fxc-ink);
  font-family: var(--fxc-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fxcm-rowHelp {
  margin: 5px 0 0;
  color: var(--fxc-mid);
  font-family: var(--fxc-body);
  font-size: 0.81rem;
  line-height: 1.5;
}

.fxcm-switch {
  position: relative;
  width: 46px;
  height: 24px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.fxcm-switch input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.fxcm-switch input:disabled {
  cursor: default;
}

.fxcm-track {
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--fxc-ink);
  background: var(--fxc-paper);
  pointer-events: none;
  transition: background 0.16s ease;
}

.fxcm-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 15px;
  height: 15px;
  display: block;
  background: var(--fxc-ink);
  transition: transform 0.16s var(--fxc-ease);
}

.fxcm-switch input:checked + .fxcm-track {
  background: var(--fxc-yellow);
}

.fxcm-switch input:checked + .fxcm-track .fxcm-knob {
  transform: translateX(22px);
}

.fxcm-switch input:disabled + .fxcm-track {
  opacity: 0.45;
}

.fxcm-switch input:focus-visible + .fxcm-track {
  outline: 2px solid var(--fxc-ink);
  outline-offset: 3px;
}

.fxcm-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fxcm-btn {
  flex: 1 1 auto;
  min-height: 42px;
  padding: 0 16px;
  border: 1.5px solid var(--fxc-ink);
  border-radius: 0;
  background: transparent;
  color: var(--fxc-ink);
  font-family: var(--fxc-display);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease;
}

.fxcm-btn:hover {
  background: var(--fxc-yellow);
}

.fxcm-btn:focus-visible {
  outline: 2px solid var(--fxc-ink);
  outline-offset: 2px;
}

.fxcm-btn-solid {
  flex: 1 1 100%;
  background: var(--fxc-ink);
  color: var(--fxc-yellow);
}

.fxcm-btn-solid:hover {
  background: var(--fxc-yellow);
  color: var(--fxc-ink);
}

html.fxcm-lock,
html.fxcm-lock body {
  overflow: hidden;
}

@media (max-width: 560px) {
  .fxcc-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
  .fxcc-mini {
    flex: 1 1 0;
  }
  .fxcc-mini-text {
    flex: 1 1 100%;
    margin-left: 0;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fxcc-bar,
  .fxcm,
  .fxcm-panel,
  .fxcm-knob {
    transition: none;
  }
}
