:root {
    --font-body: "Bai Jamjuree", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "Bai Jamjuree", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --color-bg: #040404;
    --color-bg-2: #08090b;
    --color-surface: #0f1115;
    --color-surface-2: #151820;
    --color-soft: #0b0d10;
    --color-ink: #ffffff;
    --color-muted: #d9dbe0;
    --color-muted-2: #c0c4cc;
    --color-line: rgba(242, 239, 235, .13);
    --color-line-strong: rgba(242, 239, 235, .22);
    --color-dark: #040404;
    --color-dark-2: #101114;
    --color-accent: #f57f20;
    --color-accent-2: #f7a052;
    --color-blue: #007aff;
    --lynx-gray: #cccccc;
    --f-button-color: #374151;
    --f-button-bg: #f8f8f8;
    --f-button-hover-bg: #e0e0e0;
    --f-button-active-bg: #d0d0d0;
    --shadow-soft: 0 28px 80px rgba(0, 0, 0, .46);
    --shadow-card: 0 18px 52px rgba(0, 0, 0, .28);
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --container: 1180px;
    --header-height: 70px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--color-bg); }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-ink);
    background:
        linear-gradient(180deg, rgba(245,127,32,.07), transparent 420px),
        radial-gradient(circle at 88% 4%, rgba(0,122,255,.10), transparent 32rem),
        linear-gradient(180deg, #040404 0%, #07080a 45%, #050505 100%);
    line-height: 1.62;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 .9rem; color: var(--color-muted); }
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.08;
    margin: 0 0 1rem;
    letter-spacing: -.025em;
    color: #ffffff;
}
h1 { font-size: clamp(1.85rem, 3.15vw, 3.35rem); font-weight: 300; }
h2 { font-size: clamp(1.35rem, 2.05vw, 2.1rem); font-weight: 300; }
h3 { font-size: 1.02rem; font-weight: 500; }
.lead { font-size: clamp(.98rem, 1.08vw, 1.08rem); color: #f2f2f0; max-width: 720px; }
.large-text { font-size: clamp(.98rem, 1.08vw, 1.08rem); color: #e1e3e7; }

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}
.narrow { width: min(100% - 40px, 900px); }
.section-pad { padding: clamp(54px, 7vw, 92px) 0; }
.section-soft {
    background:
        linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
    border-block: 1px solid var(--color-line);
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin: 0 0 .78rem;
    font-family: var(--font-heading);
    font-size: .7rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: .14em;
    text-transform: uppercase;
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--color-accent);
    border-radius: 999px;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 1000;
    padding: 10px 14px;
    background: var(--color-accent);
    color: #040404;
    border-radius: 999px;
    transform: translateY(-140%);
    transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: #040404;
    transition: opacity .45s ease, visibility .45s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__mark {
    width: 82px;
    filter: invert(1);
    opacity: .92;
    animation: lynxPulse 1.35s ease-in-out infinite;
}
@keyframes lynxPulse {
    0%, 100% { transform: scale(.96); opacity: .44; }
    50% { transform: scale(1.04); opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .62s ease, transform .62s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .1s; }


.breadcrumb {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .52rem;
    margin: 0 0 .9rem;
    font-family: var(--font-heading);
    font-size: .72rem;
    font-weight: 800;
    color: var(--color-accent);
    letter-spacing: .12em;
    text-transform: uppercase;
}
.breadcrumb a { color: var(--color-accent); }
.breadcrumb__sep {
    display: inline-block;
    color: #ffffff;
    letter-spacing: 0;
    font-size: .86rem;
    line-height: 1;
    margin-inline: .08rem;
}
.no-copy,
.no-copy * {
    -webkit-user-select: none;
    user-select: none;
}
