/* =========================
   ROOT / THEME
========================= */
:root {
    --font-body: 'Neue Haas Grotesk Display', 'neue-haas-grotesk-display', 'Neue Haas Grotesk Display Pro', Arial, sans-serif;
    --font-heading: 'Neue Haas Grotesk Display', 'neue-haas-grotesk-display', 'Neue Haas Grotesk Display Pro', Arial, sans-serif;

    /* ---- Type scale (single source of truth, used site-wide) ----
       Weights: the Adobe kit currently ships only 400 + 700, so 300 renders
       as 400 until a Light weight is added to the web project. Keeping 300
       here means headings become genuinely thin the moment that weight lands. */
    --fw-heading: 300;
    --fw-body: 400;
    --fw-bold: 700;

    --fs-h1: clamp(2.75rem, 5vw, 5rem);      /* page hero titles */
    --fs-h2: clamp(1.9rem, 3.4vw, 3rem);     /* section headings */
    --fs-h3: clamp(1.3rem, 1.8vw, 1.6rem);   /* sub / card headings */
    --fs-lead: clamp(1.1rem, 1.4vw, 1.3rem); /* intro / lead paragraphs */
    --fs-body: 1.0625rem;                    /* 17px standard body copy */
    --fs-small: 0.9rem;                      /* captions / meta */
    --fs-eyebrow: 0.75rem;                   /* uppercase labels */

    --lh-heading: 1.05;
    --lh-body: 1.7;
    --ls-heading: -0.03em;
    --ls-eyebrow: 0.14em;

    --color-black: #111111;
    --color-dark: #1c1c1c;
    --color-text: #2b2b2b;
    --color-muted: #6b6b6b;
    --color-light: #f7f7f7;
    --color-white: #ffffff;
    --color-border: #e8e8e8;
    --color-accent: #f4bf00;

    /* CI palette — shared across pages (pricing, our work, …) */
    --ci-linen: #f2efe7;
    --ci-linen-soft: #e9e5da;
    --ci-blue: #15275c;        /* deep blue */
    --ci-blue-deep: #0f1c45;
    --ci-yellow: #f4bf00;
    --ci-orange: #ff7a00;

    --container-width: 1240px;
    --container-padding: 24px;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;

    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.08);

    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: auto;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

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

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

/* =========================
   BASE
========================= */
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text);
    background-color: var(--color-white);
}

main {
    display: block;
}

section {
    position: relative;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* =========================
   TYPOGRAPHY
========================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-black);
    line-height: var(--lh-heading);
    font-weight: var(--fw-heading);
    letter-spacing: var(--ls-heading);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p {
    font-family: var(--font-body);
    color: var(--color-text);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    font-weight: var(--fw-body);
}

/* Shared utility roles — keep size/weight consistent wherever they appear. */
.eyebrow,
.section-eyebrow {
    font-size: var(--fs-eyebrow);
    font-weight: var(--fw-body);
    letter-spacing: var(--ls-eyebrow);
    text-transform: uppercase;
}

.lead { font-size: var(--fs-lead); line-height: 1.5; font-weight: var(--fw-heading); }

strong {
    color: var(--color-black);
}

/* =========================
   BUTTONS
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border: none;
    border-radius: 999px;
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    transition: transform var(--transition), opacity var(--transition), background-color var(--transition);
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.btn:focus-visible {
    outline: 2px solid var(--color-black);
    outline-offset: 2px;
}

/* =========================
   GENERIC UTILITIES
========================= */
.text-center {
    text-align: center;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

/* =========================
   PAGE SHELL
========================= */
.site-shell {
    /* clip does not create a scroll container (hidden does), preserving position:sticky on descendants */
    overflow-x: clip;
}

/* =========================
   HEADER / NAV
========================= */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 18px 32px;
    display: grid;
    grid-template-columns: 120px 1fr 120px;
    align-items: center;
}

.site-header__brand {
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 120;
}

.site-header__brand img {
    width: clamp(72px, 8vw, 96px);
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.site-nav {
    display: flex;
    justify-content: center;
    position: relative;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.site-nav__list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-shadow: none;
    transition: color 0.25s ease, background 0.25s ease;
}

.site-nav__list a:hover,
.site-nav__list a.is-active {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    color: #ffffff;
    transform: none;
}

.site-header__toggle {
    display: none;
    justify-self: end;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 120;
}

.site-header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 110;
}

.mobile-menu-overlay__nav {
    text-align: center;
}

.mobile-menu-overlay__list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mobile-menu-overlay__list a {
    color: #000000;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: var(--fw-heading);
    letter-spacing: var(--ls-heading);
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay__list a:hover {
    opacity: 0.65;
}

.mobile-menu-overlay__list a.is-active {
    font-weight: var(--fw-bold);
    opacity: 1;
}

.site-header.is-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-header.is-open .site-header__toggle span {
    background: #000000;
}

/* Mobile menu is a white overlay — recolour the brand mark black so it stays
   visible (default/inverse headers render it white). */
.site-header.is-open .site-header__brand img {
    filter: brightness(0);
}

.site-header.is-open .site-header__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .site-header__toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-open .site-header__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1000px) {
    .site-header__inner {
        grid-template-columns: 1fr auto;
        padding: 18px 20px;
    }

    .site-nav {
        display: none;
    }

    .site-header__toggle {
        display: block;
    }
}

@media (max-width: 480px) {
    .site-header__inner {
        padding: 14px 16px;
    }

    .site-header__brand img {
        width: 56px;
    }

    .site-header__toggle {
        width: 40px;
        height: 40px;
    }
}

/* =========================
   SHARED PAGE HERO
========================= */
.page-hero,
.hero-section,
.pricing-page,
.about-hero,
.contact-page {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: #000;
}

/* =========================
   SHARED AURORA BACKGROUND
   Orange blob aurora used on every page hero.
   On the home page the WebGL canvas sits on top of this;
   on inner pages it is always visible.
========================= */
.aurora-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: #000;
}

.aurora-bg__field {
    position: absolute;
    inset: -14%;
    filter: blur(58px);
}

/* Shared blob base — colours + positions defined per-blob below */
.aurora-blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    will-change: transform;
}

.aurora-blob--1 { width: 64vw; height: 64vw; left: -10%; top: -16%; background: radial-gradient(circle, #ff5e00 0%, rgba(255,94,0,0) 56%);  animation: auroraDrift1 19s ease-in-out infinite; }
.aurora-blob--2 { width: 56vw; height: 56vw; right: -8%; top: -14%; background: radial-gradient(circle, #f26200 0%, rgba(242,98,0,0) 56%);  animation: auroraDrift2 23s ease-in-out infinite; }
.aurora-blob--3 { width: 44vw; height: 44vw; right: 4%;  top: 16%;  background: radial-gradient(circle, #ff8a1e 0%, rgba(255,138,30,0) 58%); animation: auroraDrift3 17s ease-in-out infinite, auroraFade3 13s ease-in-out infinite; }
.aurora-blob--4 { width: 60vw; height: 60vw; left: -14%; top: 38%;  background: radial-gradient(circle, #d24a00 0%, rgba(210,74,0,0) 56%);  animation: auroraDrift4 25s ease-in-out infinite; }
.aurora-blob--5 { width: 40vw; height: 40vw; left: 32%;  top: 30%;  background: radial-gradient(circle, #ff5400 0%, rgba(255,84,0,0) 56%);  animation: auroraDrift5 21s ease-in-out infinite, auroraFade5 16s ease-in-out infinite; }
.aurora-blob--6 { width: 46vw; height: 46vw; left: 22%;  top: -18%; background: radial-gradient(circle, #ff7a00 0%, rgba(255,122,0,0) 56%); animation: auroraDrift6 15s ease-in-out infinite, auroraFade6 11s ease-in-out infinite; }
.aurora-blob--7 { width: 52vw; height: 52vw; right: -6%; top: 48%;  background: radial-gradient(circle, #e85d00 0%, rgba(232,93,0,0) 56%);  animation: auroraDrift7 27s ease-in-out infinite; }

@keyframes auroraDrift1 { 0%,100%{transform:translate(0,0) scale(1);}    50%{transform:translate(14vw,10vh) scale(1.18);} }
@keyframes auroraDrift2 { 0%,100%{transform:translate(0,0) scale(1.05);} 50%{transform:translate(-12vw,14vh) scale(0.9);} }
@keyframes auroraDrift3 { 0%,100%{transform:translate(0,0) scale(0.95);} 50%{transform:translate(-16vw,-8vh) scale(1.2);} }
@keyframes auroraDrift4 { 0%,100%{transform:translate(0,0) scale(1);}    50%{transform:translate(18vw,-12vh) scale(1.12);} }
@keyframes auroraDrift5 { 0%,100%{transform:translate(0,0) scale(1.1);}  50%{transform:translate(-10vw,16vh) scale(0.85);} }
@keyframes auroraDrift6 { 0%,100%{transform:translate(0,0) scale(1);}    50%{transform:translate(12vw,18vh) scale(1.15);} }
@keyframes auroraDrift7 { 0%,100%{transform:translate(0,0) scale(0.95);} 50%{transform:translate(-14vw,-10vh) scale(1.1);} }
@keyframes auroraFade3  { 0%,100%{opacity:0.55;} 50%{opacity:1;} }
@keyframes auroraFade5  { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
@keyframes auroraFade6  { 0%,100%{opacity:0.7;} 50%{opacity:1;} }

/* SVG-noise grain overlay */
.aurora-bg__grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.10;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 160px 160px;
    mix-blend-mode: overlay;
}

@media (prefers-reduced-motion: reduce) {
    .aurora-blob { animation: none !important; }
}


/* =========================
   FOOTER
========================= */

.site-footer {
    background: var(--ci-linen);
    color: var(--ci-blue);
    padding: 44px 0 0;
    overflow: hidden;
    border-top: 1px solid rgba(21, 39, 92, 0.15);
}

.site-footer__inner {
    width: min(1500px, calc(100% - 120px));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    background: var(--ci-linen);
}

.site-footer__divider {
    width: 100%;
    border-top: 1px solid rgba(21, 39, 92, 0.15);
}

.site-footer__inner > .site-footer__nav {
    padding: 44px 0;
}

.site-footer__brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-footer__brand img {
    display: block;
    width: 170px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(13%) sepia(67%) saturate(750%) hue-rotate(196deg) brightness(80%);
}

.site-footer__nav {
    width: 100%;
    padding-bottom: 0;
    border-bottom: none;
}

.site-footer__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
}

.site-footer__nav-list li {
    margin: 0;
    padding: 0;
}

.site-footer__nav-list a {
    display: inline-block;
    color: var(--ci-blue);
    text-decoration: none;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.site-footer__nav-list a:hover {
    opacity: 0.55;
}

.site-footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    column-gap: 40px;
    padding-top: 36px;
    padding-bottom: 48px;
}

.site-footer__legal {
    max-width: 520px;
}

.site-footer__legal p {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.4;
    color: var(--ci-blue);
}

.site-footer__policies {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 16px;
    line-height: 1.4;
}

.site-footer__policies a {
    color: var(--ci-blue);
    text-decoration: none;
    opacity: 0.65;
    transition: opacity 0.2s;
}

.site-footer__policies a:hover {
    opacity: 1;
}

.site-footer__policies span {
    color: rgba(21, 39, 92, 0.35);
}

.site-footer__description {
    margin-top: 10px;
}

.site-footer__description,
.site-footer__description p {
    color: rgba(21, 39, 92, 0.65);
    font-size: 15px;
    line-height: 1.5;
}

.site-footer__socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.site-footer__social-link {
    display: none;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    overflow: hidden;
    text-decoration: none;
    color: var(--ci-blue);
    transition: opacity 0.2s;
}

.site-footer__social-link.is-visible {
    display: inline-flex;
}

.site-footer__social-link:hover {
    opacity: 0.55;
}

.site-footer__social-link img,
.site-footer__social-link svg {
    display: block;
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
    object-fit: contain;
}

/* Big wordmark */
.site-footer__wordmark-row {
    width: 100%;
    line-height: 1;
}

.site-footer__wordmark {
    display: block;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(80px, 27vw, 420px);
    font-weight: 800;
    color: var(--ci-blue);
    letter-spacing: -0.02em;
    line-height: 0.85;
    white-space: nowrap;
    padding-left: max(16px, calc((100vw - 1500px) / 2 + 60px));
    transform-origin: bottom;
    will-change: transform;
}

.site-footer__wordmark::after {
    content: '.';
    color: var(--ci-orange);
}

/* Legal text row — sits below the wordmark */
.site-footer__meta-row {
    width: min(1500px, calc(100% - 120px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0 40px;
    position: relative;
    z-index: 1;
}

.site-footer__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(21, 39, 92, 0.6);
}

.site-footer__meta a {
    color: rgba(21, 39, 92, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer__meta a:hover {
    color: var(--ci-blue);
}

.site-footer__sep {
    color: rgba(21, 39, 92, 0.25);
}

@media (max-width: 1100px) {
    .site-footer__inner {
        width: calc(100% - 64px);
    }

    .site-footer__meta-row {
        width: calc(100% - 64px);
    }

    .site-footer__nav-list {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 24px 40px;
    }
}

@media (max-width: 700px) {
    .site-footer {
        padding: 56px 0 0;
    }

    .site-footer__inner {
        width: calc(100% - 32px);
    }

    .site-footer__meta-row {
        width: calc(100% - 32px);
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-bottom: 32px;
    }

    .site-footer__nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .site-footer__wordmark {
        padding-left: 16px;
    }
}

@media (max-width: 480px) {
    .site-footer__brand img {
        width: 100px;
    }
}




/* =========================
   SCROLL REVEAL
========================= */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.72s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.72s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal][data-reveal-delay="hero"] { transition-delay: 0.15s; }
[data-reveal][data-reveal-delay="1"]    { transition-delay: 0.13s; }
[data-reveal][data-reveal-delay="2"]    { transition-delay: 0.26s; }

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================
   CHARACTER SPLIT TEXT
========================= */
[data-split] .word {
    display: inline-block;
    white-space: nowrap;
}

[data-split] .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-split] .char--space {
    transform: none;
    opacity: 1;
}

[data-split].is-revealed .char {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* =========================
   CMS SKELETONS
========================= */
@keyframes cms-shimmer {
    0%   { background-position: -600px 0; }
    100% { background-position:  600px 0; }
}

.cms-skeleton {
    background: linear-gradient(90deg, #ececec 25%, #f5f5f5 50%, #ececec 75%);
    background-size: 1200px 100%;
    animation: cms-shimmer 1.4s infinite linear;
    border-radius: 6px;
}

/* =========================
   INSIGHTS FILTER BAR
========================= */
.insights-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto 40px;
    max-width: 1240px;
    padding: 0 24px;
}

.insights-filter__btn {
    padding: 8px 18px;
    border: 1.5px solid var(--color-border);
    border-radius: 100px;
    background: transparent;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-muted);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.insights-filter__btn:hover {
    border-color: var(--color-black);
    color: var(--color-black);
}

.insights-filter__btn.is-active {
    background: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
}

/* =========================
   INSIGHTS LOAD MORE
========================= */
.insights-load-more {
    display: flex;
    justify-content: center;
    margin: 48px 0 16px;
}

.insights-load-more__btn {
    padding: 14px 40px;
    border: 1.5px solid var(--color-black);
    border-radius: 100px;
    background: transparent;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-black);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.insights-load-more__btn:hover {
    background: var(--color-black);
    color: var(--color-white);
}

/* =========================
   INSIGHT CARD EXTRAS
========================= */
.insight-card__read-time {
    font-size: 12px;
    color: var(--color-muted);
    font-weight: 400;
    margin-left: 6px;
}

.insight-card__read-time::before {
    content: '·';
    margin-right: 6px;
}

.insight-card__updated {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    color: var(--color-muted);
    background: var(--color-light);
    border-radius: 4px;
    padding: 2px 7px;
    margin-left: 8px;
    vertical-align: middle;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* =========================
   ARTICLE PAGE EXTRAS
========================= */
.insight-article-page__read-time {
    font-size: 13px;
    color: var(--color-muted);
    font-weight: 400;
}

.insight-article-page__updated {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    color: var(--color-muted);
    background: var(--color-light);
    border-radius: 4px;
    padding: 2px 7px;
    margin-left: 8px;
    vertical-align: middle;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* =========================
   PREVIEW BANNER
========================= */
.cms-preview-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #f4bf00;
    color: #111;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    white-space: nowrap;
    pointer-events: none;
}