/* ! ─────────────────────────────────────────────────────────────
 *  arkeCORE Theme Override
 *  Aplica a identidade visual do arkeCORE ao template Azurio
 *
 *  Carregar APÓS main.css para sobrescrever via cascata CSS.
 *  Não modifica main.css — seguro para updates do template.
 * ─────────────────────────────────────────────────────────────── */
/* ─── Fontes ─────────────────────────────────────────────────── */
/* Public Sans substitui Manrope como fonte principal */
/* Playfair Display para títulos/display (igual ao arkecore) */
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&display=swap');

/* ─── Design tokens globais ──────────────────────────────────── */
:root {
	 --gold: #c9a26d;
     --goldl: #f0c878;
     --goldd: #8b6914;
	 --gold_rgb: rgb(201 162 109);
	 --goldd_rgb: rgb(139 105 20);
	 --gold1_rgb:rgb(240 200 120);
    /* Fonte principal: Public Sans (arkecore body font) */
    --_font-default: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, sans-serif;
    --_font-display: 'Playfair Display', 'Georgia', serif;

    /* JetBrains Mono permanece — igual ao arkecore */
    /* ─── Accent: Ouro Filosófico ─── */
    --accent--light: #C4973A;
    --accent--dark: #C4973A;
    --highlight--light: #D4A94A;
    --highlight--dark: #D4A94A;

    /* Permanent accent text (botões sobre fundo dourado) */
    --pt-t-accent-bright: #F5F2ED;
    --pt-t-accent-medium: #D4A94A;
    --pt-t-accent-muted: #B08832;

    /* ─── Paleta light (arkecore warm cream) ─── */
    --base--light: #F5F2ED;
    --base-rgb--light: 245, 242, 237;
    --base-tint--light: #FFFFFF;
    --base-tint-rgb--light: 255, 255, 255;
    --base-bright--light: #FAFAF8;
    --base-opp--light: #1A1A1A;
    --base-opp-rgb--light: 26, 26, 26;
    --t-bright--light: #1A1A1A;
    --t-medium--light: #6B6560;
    --t-muted--light: #9A9590;
    --t-muted-extra--light: #E5E0D8;
    --t-opp-bright--light: #F5F2ED;
    --t-opp-medium--light: #9A9590;
    --t-opp-muted--light: #6B6560;
    --t-opp-muted-extra--light: #1A1A1A;
    --st-muted--light: #F1EEE8;
    --st-medium--light: #D0C8BE;
    --st-bright--light: #1A1A1A;

    /* ─── Paleta dark (arkecore pure black + surfaces) ─── */
    --base--dark: #000000;
    --base-rgb--dark: 0, 0, 0;
    --base-tint--dark: #141414;
    --base-tint-rgb--dark: 20, 20, 20;
    --base-bright--dark: #000000;
    --base-bright-rgb--dark: 0, 0, 0;
    --base-opp--dark: #F5F2ED;
    --base-opp-rgb--dark: 245, 242, 237;
    --t-bright--dark: #F5F2ED;
    --t-medium--dark: #9A9590;
    --t-muted--dark: #2A2A2A;
    --t-muted-extra--dark: #1E1E1E;
    --t-opp-bright--dark: #1A1A1A;
    --t-opp-medium--dark: #6B6560;
    --t-opp-muted--dark: #9A9590;
    --t-opp-muted-extra--dark: #F5F2ED;
    --st-muted--dark: #141414;
    --st-medium--dark: #2A2A2A;
    --st-bright--dark: #F5F2ED;
}

.gold {
        background: linear-gradient(135deg, var(--goldd) 0%, var(--gold) 35%, var(--goldl) 60%, var(--gold) 85%, var(--goldd) 100%)!important;
        -webkit-background-clip: text !important; background-clip: text !important; color: transparent !important;
      }
/* ─── Background gradient atmosférico (dark) ─────────────────── */
/* Radial gradient dourado — assinatura visual do arkeCORE */
@media (prefers-color-scheme: dark) {
    body {
        background: #000000 radial-gradient(
      55% 75% at 4% 50%,
      rgba(196, 151, 58, 0.22) 0%,
      rgba(196, 151, 58, 0.10) 28%,
      rgba(196, 151, 58, 0.04) 52%,
      #000000 72%
    ) fixed;
    }
}

/* ─── Background gradient atmosférico (light) ───────────────── */
@media (prefers-color-scheme: light) {
    body {
        background: #F5F2ED radial-gradient(
      55% 75% at 4% 50%,
      rgba(196, 151, 58, 0.34) 0%,
      rgba(196, 151, 58, 0.16) 28%,
      rgba(196, 151, 58, 0.06) 52%,
      #F5F2ED 72%
    ) fixed;
    }
}

/* ─── Overrides por color-scheme explícito ───────────────────── */
[color-scheme=dark] body {
    background: #000000 radial-gradient(
    55% 75% at 4% 50%,
    rgba(196, 151, 58, 0.22) 0%,
    rgba(196, 151, 58, 0.10) 28%,
    rgba(196, 151, 58, 0.04) 52%,
    #000000 72%
  ) fixed;
}

[color-scheme=light] body {
    background: #F5F2ED radial-gradient(
    55% 75% at 4% 50%,
    rgba(196, 151, 58, 0.34) 0%,
    rgba(196, 151, 58, 0.16) 28%,
    rgba(196, 151, 58, 0.06) 52%,
    #F5F2ED 72%
  ) fixed;
}

/* ─── Tipografia: Playfair Display para headings ────────────── */
h1,
h2,
h3,
h4 {
    font-family: var(--_font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
}
.font_arke {
    font-family: var(--_font-display) !important;
	font-weight: 600 !important;
	text-transform: none !important;
    color: #fff !important;
}
.font_white{
	color: #fff !important;
}
      /* ── DOT-NAV ── */
      .dot-nav {
        position: fixed; right: 20px; top: 50%; transform: translateY(-50%);
        z-index: 200; display: flex; flex-direction: column; gap: 14px; align-items: center;
      }
      .dot-btn {
        width: 7px; height: 7px; border-radius: 50%;
        background: rgba(201, 162, 109, 0.2); border: 1px solid rgba(201, 162, 109, 0.35);
        cursor: pointer; padding: 0;
        transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1); position: relative;
      }
      .dot-btn:after {
        content: attr(title); position: absolute; right: 18px; top: 50%;
        transform: translateY(-50%); font-size: 9px; letter-spacing: 0.25em;
        text-transform: uppercase; color: var(--gold); white-space: nowrap;
        opacity: 0; pointer-events: none; transition: opacity 0.2s;
      }
      .dot-btn:hover:after { opacity: 1; }
      .dot-btn:hover { background: rgba(201, 162, 109, 0.5); transform: scale(1.4); }
      .dot-btn.active {
        background: var(--gold); border-color: var(--gold);
        box-shadow: 0 0 14px rgba(201, 162, 109, 0.7); transform: scale(1.5);
      }

      /* ── SCROLL HINT ── */
      .scroll-hint {
        position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
        z-index: 150; cursor: pointer; display: flex; flex-direction: column;
        align-items: center; transition: opacity 0.6s;
      }
      .scroll-hint-mouse {
        width: 20px; height: 32px;
        border: 1.5px solid rgba(201, 162, 109, 0.5); border-radius: 10px;
        display: flex; justify-content: center; align-items: flex-start;
        padding-top: 5px; animation: mouseGlow 2.6s ease-in-out infinite;
      }
      .scroll-hint-wheel {
        width: 2px; height: 6px; background: var(--gold); border-radius: 2px;
        animation: wheelScroll 2.6s ease-in-out infinite;
      }
/* Manter JetBrains Mono onde o template usa --_font-accent */
/* (mantém a estética code/mono original do template) */
/* ─── Seleção de texto ───────────────────────────────────────── */
::-moz-selection {
    background-color: rgba(196, 151, 58, 0.35);
    color: #F5F2ED;
    text-shadow: none;
}

::selection {
    background-color: #dda83a;
    color: #c48620;
    text-shadow: none;
}

/* ─── Scrollbar personalizada ────────────────────────────────── */
/* Estilo PRJ-100-MILHÕES: gradiente ouro sofisticado */

::-webkit-scrollbar {
    width: 7px !important;
    height: 3px !important;
    -webkit-appearance: none !important;
}

::-webkit-scrollbar-track {
    background: transparent !important;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #8b6914, #c4973a, #d4a94a, #c4973a, #8b6914) !important;
    border-radius: 2px !important;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #a87a1a, #d4a94a, #e8b85a, #d4a94a, #a87a1a) !important;
}

@media (prefers-color-scheme: light) {
    ::-webkit-scrollbar-thumb {
        background: linear-gradient(to bottom, #8b6914, #c4973a, #d4a94a, #c4973a, #8b6914) !important;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(to bottom, #a87a1a, #d4a94a, #e8b85a, #d4a94a, #a87a1a) !important;
    }
}

[color-scheme=dark] ::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #8b6914, #c4973a, #d4a94a, #c4973a, #8b6914) !important;
}

[color-scheme=light] ::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #8b6914, #c4973a, #d4a94a, #c4973a, #8b6914) !important;
}

/* ─── Loader: cor do texto arkecore ─────────────────────────── */
.mxd-loader {
    color: #F5F2ED;
}

/* ─── Focus ring: dourado em vez de azul ────────────────────── */
:focus-visible {
    outline: 2px solid rgba(196, 151, 58, 0.6);
    outline-offset: 2px;
}

/* ─── Logo arkéLAB: img substitui SVG ───────────────────────── */
/* O SVG original usava fill:currentColor — a img PNG não herda. */
/* Garantimos sizing correto e object-fit. */
.mxd-logo__image,
.menu-logo__image {
    display: inline-block;
    width: auto;
    height: 3.6rem;
    object-fit: contain;
    vertical-align: middle;
    fill: unset;

    /* remove fill herdado do main.css */
}

/* Em telas grandes o main.css sobe para 4rem — mantemos */
@media (min-width: 1200px) {
    .mxd-logo__image,
    .menu-logo__image {
        height: 4rem;
    }
}

/* Meta theme-color equivalente via body ─────────────────────── */
/* (informativo — o theme-color real é via <meta> no HTML) */

/* ─── MANUAL arkeLAB — Fix mxd-page-transition (layout sidebar) ── */
body.manual-layout .mxd-page-transition { display: none !important; }
body.manual-layout .blur-container { display: none !important; }

/* ─── MANUAL arkeLAB — Sidebar Tree Lateral ──────────────────── */
.manual-sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    width: 280px;
    height: calc(100vh - 60px);
    background: rgba(10, 10, 10, 0.95);
    border-right: 1px solid rgba(196, 151, 58, 0.2);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 100;
    padding: 16px 0 60px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: var(--_font-default), 'Public Sans', sans-serif;
}
@media (prefers-color-scheme: light) {
    .manual-sidebar { background: rgba(245, 242, 237, 0.96); border-right-color: rgba(196, 151, 58, 0.3); }
}

.manual-sidebar__header {
    padding: 8px 18px 16px;
    border-bottom: 1px solid rgba(196, 151, 58, 0.15);
    margin-bottom: 8px;
}
.manual-sidebar__title {
    font-family: var(--_font-display), 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #C4973A;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}
.manual-sidebar__sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #6B6560;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sidebar-section {
    margin: 0;
    border-bottom: 1px solid rgba(196, 151, 58, 0.08);
}
.sidebar-section[open] > .sidebar-section__title { color: #C4973A; }
.sidebar-section__title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    cursor: pointer;
    list-style: none;
    color: #9A9590;
    font-size: 12.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 180ms ease, background 180ms ease;
    user-select: none;
}
.sidebar-section__title::-webkit-details-marker { display: none; }
.sidebar-section__title::marker { display: none; }
.sidebar-section__title:hover { color: #F5F2ED; background: rgba(196, 151, 58, 0.05); }
@media (prefers-color-scheme: light) {
    .sidebar-section__title { color: #6B6560; }
    .sidebar-section__title:hover { color: #1A1A1A; }
}
.sidebar-section__icon {
    flex: 0 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #C4973A;
}
.sidebar-section__icon svg { width: 16px; height: 16px; }
.sidebar-section__chevron {
    margin-left: auto;
    flex: 0 0 10px;
    transition: transform 200ms ease;
    color: #6B6560;
}
.sidebar-section[open] > .sidebar-section__title .sidebar-section__chevron { transform: rotate(90deg); color: #C4973A; }

.sidebar-children {
    list-style: none;
    margin: 0;
    padding: 4px 0 10px;
}
.sidebar-item {
    margin: 0;
}
.sidebar-item__link, .sidebar-item__static {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px 7px 38px;
    color: #B8B0A6;
    font-size: 12.5px;
    line-height: 1.35;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}
.sidebar-item__link:hover {
    color: #F5F2ED;
    background: rgba(196, 151, 58, 0.06);
    border-left-color: rgba(196, 151, 58, 0.4);
}
.sidebar-item__link.is-active {
    color: #C4973A;
    border-left-color: #C4973A;
    background: rgba(196, 151, 58, 0.08);
}
.sidebar-item__static {
    color: #6B6560;
    cursor: not-allowed;
    opacity: 0.6;
}
@media (prefers-color-scheme: light) {
    .sidebar-item__link { color: #4A4540; }
    .sidebar-item__link:hover { color: #1A1A1A; }
    .sidebar-item__static { color: #9A9590; }
}
.sidebar-item__num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #6B6560;
    flex: 0 0 auto;
}
.sidebar-item__link.is-active .sidebar-item__num { color: #C4973A; }
.sidebar-item__text { flex: 1 1 auto; }

/* Scrollbar custom dentro da sidebar */
.manual-sidebar::-webkit-scrollbar { width: 4px !important; }
.manual-sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #8b6914, #c4973a, #8b6914) !important;
    border-radius: 2px !important;
}

/* ─── MANUAL arkeLAB — Main com offset da sidebar ──────────── */
body.manual-layout .mxd-page-content {
    margin-left: 280px;
    min-height: calc(100vh - 60px);
}
@media (max-width: 1024px) {
    body.manual-layout .mxd-page-content { margin-left: 0; padding-top: 0; }
    .manual-sidebar {
        transform: translateX(-100%);
        transition: transform 280ms ease;
    }
    .manual-sidebar.is-open { transform: translateX(0); }
}

/* Botão de toggle sidebar (mobile) */
.manual-sidebar-toggle {
    position: fixed;
    top: 72px;
    left: 16px;
    z-index: 99;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(196, 151, 58, 0.4);
    color: #C4973A;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}
@media (max-width: 1024px) {
    .manual-sidebar-toggle { display: inline-flex; }
}

/* ─── MANUAL arkeLAB — Hero + Main + Pager ─────────────────── */
.manual-tabs {
    display: none; /* legado, agora usamos sidebar */
}
.manual-tabs__wrap {
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
    -ms-overflow-style: auto;
}
.manual-tabs__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0 24px;
    gap: 0;
    white-space: nowrap;
}
.manual-tabs__item {
    flex: 0 0 auto;
}
.manual-tabs__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    color: #9A9590;
    font-family: var(--_font-default), 'Public Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    border-bottom: 2px solid transparent;
    transition: color 200ms ease, border-color 200ms ease;
}
.manual-tabs__link:hover {
    color: #F5F2ED;
    border-bottom-color: rgba(196, 151, 58, 0.4);
}
.manual-tabs__link.is-active {
    color: #C4973A;
    border-bottom-color: #C4973A;
}
.manual-tabs__num {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 11px;
    color: #6B6560;
    margin-right: 4px;
}
.manual-tabs__link.is-active .manual-tabs__num {
    color: #C4973A;
}

/* MANUAL — Hero + Main */
.manual-hero {
    padding: 80px 32px 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.manual-hero__meta {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.manual-hero__tag {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid rgba(196, 151, 58, 0.4);
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #C4973A;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.manual-hero__title {
    font-family: var(--_font-display), 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.1;
    font-weight: 600;
    color: #F5F2ED;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}
.manual-hero__excerpt {
    font-family: var(--_font-default), 'Public Sans', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    color: #9A9590;
    max-width: 720px;
}
@media (prefers-color-scheme: light) {
    .manual-hero__title { color: #1A1A1A; }
    .manual-hero__excerpt { color: #6B6560; }
}

.manual-main {
    max-width: 920px;
    margin: 0 auto;
    padding: 20px 32px 100px;
    color: #F5F2ED;
    font-family: var(--_font-default), 'Public Sans', sans-serif;
    font-size: 16px;
    line-height: 1.75;
}
.manual-main h1, .manual-main h2, .manual-main h3, .manual-main h4 {
    font-family: var(--_font-display), 'Playfair Display', serif;
    letter-spacing: -0.02em;
    color: #F5F2ED;
    margin-top: 2.4em;
    margin-bottom: 0.6em;
    line-height: 1.2;
}
.manual-main h1 { font-size: 2.2rem; }
.manual-main h2 { font-size: 1.7rem; padding-top: 24px; border-top: 1px solid rgba(196, 151, 58, 0.15); }
.manual-main h3 { font-size: 1.3rem; color: #C4973A; }
.manual-main h4 { font-size: 1.1rem; }
.manual-main p {
    margin: 0 0 1.2em;
    color: #C0B8AE;
}
.manual-main strong { color: #F5F2ED; font-weight: 600; }
.manual-main em { color: #C4973A; font-style: italic; }
.manual-main ul, .manual-main ol {
    margin: 0 0 1.4em;
    padding-left: 1.4em;
    color: #C0B8AE;
}
.manual-main li {
    margin-bottom: 0.5em;
}
.manual-main li::marker { color: #C4973A; }
.manual-main blockquote {
    margin: 1.6em 0;
    padding: 16px 24px;
    border-left: 3px solid #C4973A;
    background: rgba(196, 151, 58, 0.06);
    color: #D0C8BE;
    font-style: italic;
}
.manual-main code {
    font-family: 'JetBrains Mono', monospace;
    background: rgba(196, 151, 58, 0.1);
    color: #D4A94A;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.92em;
}
.manual-main pre {
    background: #0a0a0a;
    border: 1px solid rgba(196, 151, 58, 0.2);
    border-radius: 4px;
    padding: 16px;
    overflow-x: auto;
    margin: 1.6em 0;
}
.manual-main pre code {
    background: transparent;
    padding: 0;
    color: #F5F2ED;
}
.manual-main a {
    color: #C4973A;
    text-decoration: underline;
    text-decoration-color: rgba(196, 151, 58, 0.4);
    text-underline-offset: 3px;
}
.manual-main a:hover {
    color: #D4A94A;
    text-decoration-color: #D4A94A;
}
.manual-main hr {
    border: none;
    border-top: 1px solid rgba(196, 151, 58, 0.2);
    margin: 2.4em 0;
}
.manual-main table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.4em 0;
    font-size: 0.94em;
}
.manual-main th, .manual-main td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(196, 151, 58, 0.15);
    text-align: left;
}
.manual-main th {
    color: #C4973A;
    font-weight: 600;
    font-family: var(--_font-default), 'Public Sans', sans-serif;
    border-bottom: 2px solid rgba(196, 151, 58, 0.4);
}

@media (prefers-color-scheme: light) {
    .manual-tabs { background: rgba(245, 242, 237, 0.92); }
    .manual-tabs__link { color: #6B6560; }
    .manual-tabs__link:hover { color: #1A1A1A; }
    .manual-main { color: #1A1A1A; }
    .manual-main h1, .manual-main h2, .manual-main h4 { color: #1A1A1A; }
    .manual-main p, .manual-main ul, .manual-main ol { color: #3A3530; }
    .manual-main strong { color: #1A1A1A; }
    .manual-main pre { background: #FAFAF8; }
    .manual-main pre code { color: #1A1A1A; }
    .manual-main blockquote { color: #3A3530; }
}

/* Manual prev/next */
.manual-pager {
    max-width: 920px;
    margin: 60px auto 0;
    padding: 40px 32px 80px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(196, 151, 58, 0.2);
}
.manual-pager__link {
    flex: 1;
    padding: 18px 22px;
    border: 1px solid rgba(196, 151, 58, 0.3);
    border-radius: 4px;
    text-decoration: none;
    color: #C0B8AE;
    transition: border-color 200ms ease, color 200ms ease;
}
.manual-pager__link:hover {
    border-color: #C4973A;
    color: #F5F2ED;
}
.manual-pager__link--next { text-align: right; }
.manual-pager__label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #C4973A;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}
.manual-pager__title {
    font-family: var(--_font-display), serif;
    font-size: 1.15rem;
    font-weight: 600;
}
.manual-pager__link--empty {
    visibility: hidden;
}
@media (max-width: 768px) {
    .manual-pager { flex-direction: column; }
    .manual-pager__link--next { text-align: left; }
}
.marquee__text {
    font: normal 400 clamp(32px, calc(25svh - 9rem), 120px) 'Playfair Display', 'Georgia', serif !important;

}

/* ========================================================================== */
/* Product-specific overrides + shared gradient helpers (unified)              */
/* ========================================================================== */

/* Per-product tokens (defined from body) */
body.arkestudio {
  --accent: #a855f7;
  --accentl: #d8b4fe;
  --accentd: #7e22ce;
  --accent-glow: rgba(168, 85, 247, 0.12);
  --connectors-accent-rgb: 168 85 247;
}

body.arkeme {
  --connectors-accent-rgb: 59 130 246;
}

body.arkeon {
  --connectors-accent-rgb: 16 185 129;
}

/* arkeStudio title animation (hero page reference) */
body.arkestudio .hero-name {
  background: linear-gradient(
    to right,
    #ff4d6d,
    #ff8c42,
    #ffe566,
    #52fa7c,
    #00d4ff,
    #a855f7,
    #ff4d6d
  );
  background-size: 300% 100%;
  animation: arkestudio-rgbShift 5s linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes arkestudio-rgbShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* Shared product gradients (arkeCore/arkeStudio/arkeME/arkeON).
   Designed to coexist with arkeCore theme classes + SplitText animations. */
.arke-gradient {
  display: inline-block;
  font-family: "Playfair Display", Georgia, serif;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  background-size: 300% 100%;
  animation: arkeGradientShift 6s linear infinite;
}

@keyframes arkeGradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* Per-product palettes */
.arke-gradient[data-product="arkecore"] {
  background-image: linear-gradient(135deg, #8b6914 0%, #c9a26d 45%, #f0c878 70%, #c9a26d 100%);
}
.arke-gradient[data-product="arkestudio"] {
  background-image: linear-gradient(to right, #ff4d6d, #ff8c42, #ffe566, #52fa7c, #00d4ff, #a855f7, #ff4d6d);
}
.arke-gradient[data-product="arkeme"] {
  background-image: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 45%, #93c5fd 70%, #3b82f6 100%);
}
.arke-gradient[data-product="arkeon"] {
  background-image: linear-gradient(135deg, #064e3b 0%, #10b981 45%, #6ee7b7 70%, #10b981 100%);
}

/* arkeLAB wordmark: "arkē" solid, "LAB" animated gold */
.arke-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.02em;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.02em;
}
.arke-wordmark .arke-arke {
  font-weight: 800;
}
.arke-gradient[data-product="arkelab"] {
  background-image: linear-gradient(
    135deg,
    var(--goldd, #8b6914) 0%,
    var(--gold, #c9a26d) 35%,
    var(--goldl, #f0c878) 60%,
    var(--gold, #c9a26d) 85%,
    var(--goldd, #8b6914) 100%
  );
}

@media (prefers-color-scheme: dark) {
  .arke-wordmark .arke-arke { color: #ffffff !important; }
}
@media (prefers-color-scheme: light) {
  .arke-wordmark .arke-arke { color: #000000 !important; }
}
[color-scheme="dark"] .arke-wordmark .arke-arke { color: #ffffff !important; }
[color-scheme="light"] .arke-wordmark .arke-arke { color: #000000 !important; }

/* Small preview row (first section) */
.arke-products-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
  opacity: 0.95;
}
.arke-products-preview .arke-gradient {
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.arke-products-preview .arke-wordmark {
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  font-weight: 800;
}
