/* ===================================================
   ZynoSec — Design System & Base Styles
   =================================================== */

/* --- Design Tokens --- */
:root {
    /* Backgrounds */
    --bg-primary: #050510;
    --bg-secondary: #0a0f1e;
    --bg-surface: #111827;
    --bg-elevated: #1a2332;

    /* Accents */
    --accent-primary: #00f0ff;
    --accent-glow: rgba(0, 240, 255, 0.15);
    --accent-subtle: rgba(0, 240, 255, 0.08);

    /* Semantic */
    --danger: #ff3366;
    --danger-glow: rgba(255, 51, 102, 0.15);
    --success: #00ff88;
    --warning: #ffd700;
    --orange: #ff8833;

    /* Text */
    --text-primary: #e0e8ff;
    --text-secondary: rgba(224, 232, 255, 0.6);
    --text-muted: rgba(224, 232, 255, 0.3);

    /* Borders */
    --border: rgba(0, 240, 255, 0.12);
    --border-subtle: rgba(255, 255, 255, 0.06);

    /* Glass */
    --glass-bg: rgba(10, 15, 30, 0.8);
    --glass-border: rgba(0, 240, 255, 0.1);
    --glass-blur: 12px;

    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Spacing */
    --section-pad: clamp(4rem, 8vw, 8rem);
    --content-max: 1200px;
    --nav-height: 72px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-base: 0.3s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);
}

/* --- Light Mode Overrides --- */
[data-theme="light"] {
    --bg-primary: #f5f7fa;
    --bg-secondary: #edf0f5;
    --bg-surface: #ffffff;
    --bg-elevated: #ffffff;
    --accent-primary: #0077cc;
    --accent-glow: rgba(0, 119, 204, 0.15);
    --accent-subtle: rgba(0, 119, 204, 0.06);
    --danger: #dc2626;
    --danger-glow: rgba(220, 38, 38, 0.15);
    --success: #16a34a;
    --warning: #ca8a04;
    --orange: #ea580c;
    --text-primary: #0f172a;
    --text-secondary: rgba(15, 23, 42, 0.65);
    --text-muted: rgba(15, 23, 42, 0.35);
    --border: rgba(0, 119, 204, 0.15);
    --border-subtle: rgba(15, 23, 42, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 119, 204, 0.12);
    --glass-blur: 12px;
}

[data-theme="light"] .scanline { display: none; }
[data-theme="light"] .zyno-header {
    background: rgba(255, 255, 255, 0.85);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .zyno-header--scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .zyno-nav__link { color: rgba(15, 23, 42, 0.6); }
[data-theme="light"] .zyno-nav__link:hover,
[data-theme="light"] .zyno-nav__item--active > .zyno-nav__link { color: var(--accent-primary); }
[data-theme="light"] .zyno-header__logo-text { color: #0f172a; }
[data-theme="light"] .zyno-dropdown {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
[data-theme="light"] .zyno-dropdown__link { color: rgba(15, 23, 42, 0.6); }
[data-theme="light"] .zyno-dropdown__link:hover { color: var(--accent-primary); background: rgba(0, 119, 204, 0.05); }
[data-theme="light"] .zyno-hamburger__line { background: #0f172a; }
[data-theme="light"] .mobile-nav { background: rgba(255, 255, 255, 0.97); }
[data-theme="light"] .mobile-nav__link,
[data-theme="light"] .mobile-nav__menu a { color: rgba(15, 23, 42, 0.6); }
[data-theme="light"] .mobile-nav__link:hover,
[data-theme="light"] .mobile-nav__menu a:hover { color: var(--accent-primary); }
[data-theme="light"] .zyno-footer { background: #1e293b; }
[data-theme="light"] .zyno-footer * { color: rgba(255, 255, 255, 0.7); }
[data-theme="light"] .zyno-footer a:hover { color: #00f0ff; }
[data-theme="light"] .zyno-footer__heading { color: #fff; }
[data-theme="light"] .zyno-footer__tagline { color: #00f0ff; }
[data-theme="light"] .zyno-footer__bottom p { color: rgba(255, 255, 255, 0.4); }
[data-theme="light"] .cookie-banner { background: rgba(255, 255, 255, 0.95); border-top-color: rgba(0,0,0,0.08); }
[data-theme="light"] .hero__subtitle,
[data-theme="light"] .service-hero__sub { color: rgba(15, 23, 42, 0.7); }
[data-theme="light"] .hero .label,
[data-theme="light"] .service-hero .label { color: var(--accent-primary); font-weight: 600; }
/* Light mode scenes: no CSS hacks — colors handled in JS */
[data-theme="light"] .hero__gradient {
    background:
        radial-gradient(ellipse at 25% 50%, rgba(0, 119, 204, 0.04), transparent 55%),
        linear-gradient(180deg, rgba(245, 247, 250, 0.6) 0%, rgba(245, 247, 250, 0.85) 50%, var(--bg-primary) 100%);
}
[data-theme="light"] .service-hero__gradient {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 119, 204, 0.03), transparent 55%),
        linear-gradient(180deg, rgba(245, 247, 250, 0.6) 0%, rgba(245, 247, 250, 0.9) 50%, var(--bg-primary) 100%);
}

/* --- Reset --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: #fff;
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

h4 {
    font-size: 1.125rem;
}

p {
    color: var(--text-secondary);
    max-width: 65ch;
}

.label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-primary);
}

/* --- Layout --- */
.zyno-container {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.zyno-section {
    position: relative;
    padding: var(--section-pad) 0;
}

/* --- Glassmorphism --- */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.glass--hover:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px var(--accent-glow), inset 0 0 30px var(--accent-subtle);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

.btn--primary:hover {
    background: #fff;
    color: var(--bg-primary);
    box-shadow: 0 0 30px var(--accent-glow);
}

.btn--outline {
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
}

.btn--outline:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    box-shadow: 0 0 30px var(--accent-glow);
}

.btn--danger {
    border: 1px solid var(--danger);
    color: var(--danger);
}

.btn--danger:hover {
    background: var(--danger);
    color: #fff;
    box-shadow: 0 0 30px var(--danger-glow);
}

/* --- Preloader: corporate wordmark + progress --- */
/* Session-gated: first visit only. After that, instant — no flash. */
.preloader-skip .preloader { display: none !important; }

.preloader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: #05070b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 380ms ease, visibility 380ms ease;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Faint grid — establishes "infrastructure" feel without being busy */
.preloader__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.preloader__inner {
    position: relative;
    width: min(440px, 82vw);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.75rem;
}

.preloader__mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}

.preloader__wordmark {
    font-family: 'Orbitron', 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: clamp(1.1rem, 2.4vw, 1.5rem);
    letter-spacing: 0.55em;
    text-indent: 0.55em; /* re-center visually */
    color: #e8f7ff;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(6px);
    animation: zyno-pre-mark-in 700ms cubic-bezier(.22,1,.36,1) 80ms forwards;
}

.preloader__rule {
    height: 1px;
    width: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 240, 255, 0.45) 50%,
        transparent 100%
    );
    transform-origin: center;
    animation: zyno-pre-rule-in 620ms cubic-bezier(.22,1,.36,1) forwards;
}
.preloader__rule--top { animation-delay: 0ms; }
.preloader__rule--bot { animation-delay: 120ms; }

/* Bar */
.preloader__bar {
    position: relative;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
    border-radius: 2px;
}

.preloader__bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(
        90deg,
        rgba(0, 240, 255, 0.2) 0%,
        #00f0ff 60%,
        #b388ff 100%
    );
    box-shadow: 0 0 14px rgba(0, 240, 255, 0.55);
    transition: width 280ms cubic-bezier(.22,1,.36,1);
}

/* Indeterminate shimmer on top of the real progress — subtle motion */
.preloader__bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.12) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    animation: zyno-pre-shimmer 1.6s linear infinite;
}

.preloader__meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(232, 247, 255, 0.55);
}

.preloader__status {
    position: relative;
    padding-left: 14px;
}
.preloader__status::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00f0ff;
    transform: translateY(-50%);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.75);
    animation: zyno-pre-dot 1.1s ease-in-out infinite;
}

.preloader__pct {
    color: rgba(232, 247, 255, 0.82);
    font-variant-numeric: tabular-nums;
}

@keyframes zyno-pre-mark-in {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zyno-pre-rule-in {
    from { transform: scaleX(0); opacity: 0; }
    to   { transform: scaleX(1); opacity: 1; }
}

@keyframes zyno-pre-shimmer {
    to { transform: translateX(100%); }
}

@keyframes zyno-pre-dot {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50%      { opacity: 0.35; transform: translateY(-50%) scale(0.7); }
}

@media (prefers-reduced-motion: reduce) {
    .preloader__wordmark,
    .preloader__rule,
    .preloader__bar::after,
    .preloader__status::before {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .preloader__bar-fill { transition: none; }
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--accent-primary);
    z-index: 10001;
    transition: width 0.1s linear;
    box-shadow: 0 0 6px var(--accent-glow);
}

/* --- Nav Progress Bar (link-click → next-page feedback) --- */
.nav-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 100001;
    pointer-events: none;
    opacity: 0;
    transition: opacity 180ms ease;
}
.nav-progress.is-active { opacity: 1; }

.nav-progress__fill {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(
        90deg,
        rgba(0, 240, 255, 0.2) 0%,
        #00f0ff 55%,
        #b388ff 100%
    );
    box-shadow:
        0 0 10px rgba(0, 240, 255, 0.55),
        0 0 4px rgba(179, 136, 255, 0.35);
    transition: width 420ms cubic-bezier(.22, 1, .36, 1);
}

@media (prefers-reduced-motion: reduce) {
    .nav-progress__fill { transition-duration: 0s; }
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.2s ease;
    pointer-events: none;
}

.back-to-top--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    border-color: var(--accent-primary);
    background: var(--accent-subtle);
}

/* --- Sticky CTA Bar --- */
.sticky-cta {
    position: fixed;
    bottom: -60px;
    left: 0;
    width: 100%;
    z-index: 998;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    padding: 0.625rem 0;
    transition: bottom 0.4s var(--ease-out);
}

.sticky-cta--visible {
    bottom: 0;
}

.sticky-cta__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-cta__text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.sticky-cta__btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.65rem;
}

@media (max-width: 640px) {
    .sticky-cta__text { display: none; }
    .sticky-cta__inner { justify-content: center; }
}

/* --- Breadcrumbs --- */
.breadcrumbs {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.breadcrumbs--hero {
    padding-top: calc(var(--nav-height) + 1rem);
    padding-bottom: 0;
}

.breadcrumbs a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
    color: var(--accent-primary);
}

.breadcrumbs__sep {
    margin: 0 0.5rem;
    opacity: 0.4;
}

.breadcrumbs__current {
    color: var(--text-secondary);
}

/* --- Related Posts --- */
.related-posts {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.related-posts__title {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.related-posts__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .related-posts__grid { grid-template-columns: repeat(3, 1fr); }
}

.related-post {
    padding: 1.25rem;
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.related-post:hover {
    transform: translateY(-3px);
}

.related-post .label {
    margin-bottom: 0.5rem;
    display: block;
}

.related-post h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.related-post:hover h4 {
    color: var(--accent-primary);
}

/* --- Single Post Meta --- */
.single-post__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.single-post__dot {
    color: var(--text-muted);
    font-size: 0.5rem;
}

/* --- Page Transition --- */
.page-exit {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

body {
    animation: page-enter 0.4s ease forwards;
}

@keyframes page-enter {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- Code Copy Button --- */
.code-copy-wrap {
    position: relative;
}
.code-copy-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(0, 240, 255, 0.9);
    background: rgba(5, 7, 11, 0.7);
    border: 1px solid rgba(0, 240, 255, 0.35);
    border-radius: 3px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-2px);
    transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
    z-index: 2;
}
.code-copy-wrap:hover .code-copy-btn,
.code-copy-btn:focus-visible {
    opacity: 1;
    transform: translateY(0);
}
.code-copy-btn:hover {
    background: rgba(0, 240, 255, 0.12);
    border-color: var(--accent-primary, #00f0ff);
    color: #e8f7ff;
}
.code-copy-btn.is-copied {
    color: #7fffa7;
    border-color: rgba(127, 255, 167, 0.5);
    background: rgba(40, 80, 50, 0.4);
}
.code-copy-btn svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
}
[data-theme="light"] .code-copy-btn {
    color: #005ab4;
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(0, 90, 180, 0.4);
}
[data-theme="light"] .code-copy-btn:hover {
    background: rgba(0, 90, 180, 0.1);
    color: #002f6c;
}

@media (hover: none) and (pointer: coarse) {
    .code-copy-btn { opacity: 1; transform: none; }
}

/* --- Scanline Overlay --- */
.scanline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 240, 255, 0.008) 2px,
        rgba(0, 240, 255, 0.008) 4px
    );
}

/* --- Three.js Canvas Container --- */
.scene-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.scene-container canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* --- Section Header Pattern --- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .label {
    margin-bottom: 1rem;
    display: block;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    margin: 0 auto;
    max-width: 50ch;
}

/* --- Accent Line / Divider --- */
.accent-line {
    width: 60px;
    height: 2px;
    background: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-glow);
    margin: 1.5rem 0;
}

.accent-line--center {
    margin: 1.5rem auto;
}

/* --- Selection --- */
::selection {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

/* --- Focus visible for a11y --- */
:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* --- Skip nav link (a11y) --- */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 10001;
    padding: 0.75rem 1.5rem;
    background: var(--accent-primary);
    color: var(--bg-primary);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0 0 4px 4px;
    transition: top var(--transition-fast);
}

.skip-nav:focus {
    top: 0;
}

/* ===================================================
   Header & Navigation
   =================================================== */

.zyno-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background: rgba(5, 5, 16, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-subtle);
    transition: background var(--transition-base), backdrop-filter var(--transition-base);
}

.zyno-header--scrolled {
    background: rgba(5, 5, 16, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--border);
}

.zyno-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    height: 100%;
}

/* Logo */
.zyno-header__logo {
    text-decoration: none;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}

.zyno-header__logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.zyno-header__logo-accent {
    color: var(--accent-primary);
}

.zyno-header__logo-img {
    height: 34px;
    width: auto;
    display: block;
}

.zyno-header__logo-img--light { display: none; }
[data-theme="light"] .zyno-header__logo-img--dark  { display: none; }
[data-theme="light"] .zyno-header__logo-img--light { display: block; }

.zyno-footer__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.zyno-footer__logo-img {
    height: 42px;
    width: auto;
    display: block;
}

.zyno-footer__logo-img--light { display: none; }
[data-theme="light"] .zyno-footer__logo-img--dark  { display: none; }
[data-theme="light"] .zyno-footer__logo-img--light { display: block; }

/* Desktop Nav */
.zyno-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.zyno-nav__menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.zyno-nav__item {
    position: relative;
}

.zyno-nav__link {
    position: relative;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    padding: 0.5rem 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.zyno-nav__link:hover,
.zyno-nav__item--active > .zyno-nav__link {
    color: var(--accent-primary);
}

.zyno-nav__chevron {
    transition: transform var(--transition-fast);
    opacity: 0.5;
}

.zyno-nav__item--has-dropdown:hover .zyno-nav__chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* Dropdown */
.zyno-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.5rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.zyno-nav__item--has-dropdown:hover > .zyno-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.zyno-dropdown__link {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    padding: 0.625rem 0.875rem;
    border-radius: 4px;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.zyno-dropdown__link:hover {
    color: var(--accent-primary);
    background: var(--accent-subtle);
}

/* CTA in nav */
.zyno-nav__cta {
    flex-shrink: 0;
    font-size: 0.65rem;
    padding: 0.625rem 1.25rem;
}

/* Theme Toggle */
.theme-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.theme-toggle:hover {
    border-color: var(--accent-primary);
    background: var(--accent-subtle);
}

.theme-toggle__icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.theme-toggle:hover .theme-toggle__icon {
    transform: rotate(30deg);
}

/* Show sun in dark mode, moon in light mode */
.theme-toggle__moon { display: none; }
.theme-toggle--light .theme-toggle__sun { display: none; }
.theme-toggle--light .theme-toggle__moon { display: block; }

/* Hamburger */
.zyno-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.zyno-hamburger__line {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.zyno-hamburger--active .zyno-hamburger__line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.zyno-hamburger--active .zyno-hamburger__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.zyno-hamburger--active .zyno-hamburger__line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ===================================================
   Mobile Navigation Overlay
   =================================================== */

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(5, 5, 16, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.mobile-nav--open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav__inner {
    text-align: center;
}

.mobile-nav__menu {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.mobile-nav__menu li {
    margin-bottom: 0.5rem;
}

.mobile-nav__link,
.mobile-nav__menu a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

.mobile-nav__link:hover,
.mobile-nav__menu a:hover {
    color: var(--accent-primary);
}

.mobile-nav--open .mobile-nav__menu li {
    animation: mobile-nav-in 0.5s var(--ease-out) forwards;
    opacity: 0;
}

.mobile-nav--open .mobile-nav__menu li:nth-child(1) { animation-delay: 0.05s; }
.mobile-nav--open .mobile-nav__menu li:nth-child(2) { animation-delay: 0.1s; }
.mobile-nav--open .mobile-nav__menu li:nth-child(3) { animation-delay: 0.15s; }
.mobile-nav--open .mobile-nav__menu li:nth-child(4) { animation-delay: 0.2s; }
.mobile-nav--open .mobile-nav__menu li:nth-child(5) { animation-delay: 0.25s; }
.mobile-nav--open .mobile-nav__menu li:nth-child(6) { animation-delay: 0.3s; }

.mobile-nav__cta {
    animation: mobile-nav-in 0.5s var(--ease-out) 0.35s forwards;
    opacity: 0;
}

/* ===================================================
   Hero Section
   =================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero__gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 25% 50%, rgba(0, 240, 255, 0.06), transparent 55%),
        radial-gradient(ellipse at 75% 40%, rgba(255, 51, 102, 0.04), transparent 55%),
        linear-gradient(180deg, transparent 60%, var(--bg-primary) 100%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.hero__title {
    margin-bottom: 1.5rem;
    line-height: 1.05;
}

.hero__title-accent {
    color: var(--accent-primary);
    text-shadow: 0 0 40px var(--accent-glow);
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 55ch;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero__ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero__scroll-line {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--accent-primary), transparent);
    animation: scroll-hint 2s ease-in-out infinite;
}

@keyframes scroll-hint {
    0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ===================================================
   Services Grid
   =================================================== */

.services-section {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 240, 255, 0.03), transparent 50%),
        var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--accent-subtle);
    color: var(--accent-primary);
    margin-bottom: 1.25rem;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
}

.service-card__icon svg {
    width: 22px;
    height: 22px;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex: 1;
    margin-bottom: 1rem;
}

.service-card__arrow {
    font-family: var(--font-mono);
    color: var(--accent-primary);
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition-base);
    font-size: 1.2rem;
}

.service-card:hover .service-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ===================================================
   Approach Section
   =================================================== */

.approach-section {
    background: var(--bg-secondary);
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .approach-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.approach-step {
    padding: 2.5rem 2rem;
    position: relative;
    text-align: center;
}

.approach-step__number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--accent-primary);
    opacity: 0.15;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.approach-step__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.approach-step__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 auto;
}

.approach-step__line {
    display: none;
}

@media (min-width: 768px) {
    .approach-step__line {
        display: block;
        position: absolute;
        top: 50%;
        right: -0.75rem;
        width: 1.5rem;
        height: 1px;
        background: var(--border);
    }
}

/* ===================================================
   Stats Section
   =================================================== */

.stats-section {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(0, 240, 255, 0.04), transparent 60%),
        var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item__number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
    display: inline;
}

.stat-item__suffix {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--accent-primary);
    opacity: 0.6;
}

.stat-item__label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* ===================================================
   Capabilities Marquee
   =================================================== */

.marquee-section {
    padding: 2rem 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-subtle);
}

.marquee-overflow {
    overflow: hidden;
    width: 100%;
}

/* ===================================================
   CTA Section
   =================================================== */

.cta-section {
    background: var(--bg-primary);
}

.cta-block {
    text-align: center;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem);
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.cta-block .label {
    margin-bottom: 1rem;
    display: block;
}

.cta-block__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-block__desc {
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.cta-block__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================================
   Service Detail Pages
   =================================================== */

.service-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.service-hero__gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 240, 255, 0.06), transparent 55%),
        radial-gradient(ellipse at 70% 40%, rgba(255, 51, 102, 0.04), transparent 55%),
        linear-gradient(180deg, transparent 50%, var(--bg-primary) 100%);
    pointer-events: none;
}

.service-hero__content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.service-hero__sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 55ch;
    margin-top: 1rem;
}

/* Page Hero (non-scene pages) */
.page-hero {
    padding-top: calc(var(--nav-height) + 4rem);
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 240, 255, 0.04), transparent 55%),
        var(--bg-primary);
}

.page-hero__sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 55ch;
    margin-top: 1rem;
}

/* Test Tags */
.service-tests {
    background: var(--bg-secondary);
}

.test-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.test-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.test-tag:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    background: var(--accent-subtle);
}

/* Methodology Flow */
.methodology-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.methodology-step {
    padding: 1.25rem 1.5rem;
    text-align: center;
    min-width: 140px;
}

.methodology-step__num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-primary);
    opacity: 0.2;
    display: block;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.methodology-step__label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-primary);
}

.methodology-step__arrow {
    color: var(--accent-primary);
    opacity: 0.3;
    font-size: 1.2rem;
}

@media (max-width: 767px) {
    .methodology-step__arrow {
        display: none;
    }
    .methodology-flow {
        flex-direction: column;
    }
}

/* Service CTA */
.service-cta {
    background: var(--bg-primary);
}

/* ===================================================
   About Page
   =================================================== */

.about-content {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-location {
    color: var(--accent-primary) !important;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-value {
    padding: 1.5rem;
}

.about-value__icon {
    color: var(--accent-primary);
    margin-right: 0.5rem;
}

.about-value h3 {
    display: inline;
    font-size: 1rem;
    font-weight: 600;
}

.about-value p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* ===================================================
   Why ZynoSec + Credentials
   =================================================== */

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .why-grid { grid-template-columns: repeat(3, 1fr); }
}

.why-card {
    padding: 2rem;
    position: relative;
}

.why-card__num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-primary);
    opacity: 0.12;
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.9rem;
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .credentials-grid { grid-template-columns: repeat(3, 1fr); }
}

.credential-block {
    padding: 2rem;
}

.credential-block h3 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.credential-block p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ===================================================
   Contact Page
   =================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
    }
}

.contact-form-wrap {
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact-form .required {
    color: var(--danger);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-primary);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%2300f0ff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-form .field--error {
    border-color: var(--danger) !important;
    box-shadow: 0 0 0 3px var(--danger-glow) !important;
}

.contact-form .field--valid {
    border-color: var(--success) !important;
}

.contact-form__submit {
    width: 100%;
}

.form-status {
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.form-status--success {
    color: var(--success);
}

.form-status--error {
    color: var(--danger);
}

/* Contact Info Sidebar */
.contact-info__block {
    margin-bottom: 2rem;
}

.contact-info__block .label {
    margin-bottom: 0.5rem;
    display: block;
}

.contact-info__block a {
    font-size: 1.1rem;
}

.contact-info__block p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.contact-emergency {
    padding: 1.5rem;
    border-left: 3px solid var(--danger);
    margin-top: 2rem;
}

.contact-emergency__label {
    color: var(--danger) !important;
}

.contact-emergency p {
    font-size: 0.9rem;
    margin: 0.75rem 0 1rem;
}

/* ===================================================
   Blog
   =================================================== */

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    overflow: hidden;
    transition: transform var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

/* Blog card fallback gradient when no featured image */
.blog-card:not(:has(.blog-card__image)) .blog-card__content {
    padding-top: 2.5rem;
    position: relative;
}

.blog-card:not(:has(.blog-card__image))::before {
    content: '';
    display: block;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-primary), transparent);
    border-radius: 12px 12px 0 0;
}

.blog-card__content {
    padding: 1.5rem;
}

.blog-card__date {
    margin-bottom: 0.5rem;
    display: block;
}

.blog-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.blog-card__title a {
    color: var(--text-primary);
    text-decoration: none;
}

.blog-card__title a:hover {
    color: var(--accent-primary);
}

.blog-card__excerpt {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.blog-card__link {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Single Post */
.single-post__container {
    max-width: 780px;
    margin: 0 auto;
    padding-top: calc(var(--nav-height) + 2rem);
}

.single-post__header {
    margin-bottom: 2rem;
}

.single-post__header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
}

/* Content headings must be smaller than post title */
.single-post__content h2 {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.single-post__content h3 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.single-post__content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.single-post__excerpt {
    font-size: 1.15rem;
    margin-top: 1rem;
}

.single-post__featured {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.single-post__content {
    font-size: 1.05rem;
    line-height: 1.85;
}

/* heading sizes set above in single-post__header h1 block */

.single-post__content p {
    margin-bottom: 1.25rem;
    max-width: none;
    color: var(--text-secondary);
}

.single-post__content a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.single-post__content code {
    font-family: var(--font-mono);
    font-size: 0.85em;
    background: var(--bg-surface);
    padding: 0.15em 0.4em;
    border-radius: 3px;
    color: var(--accent-primary);
}

.single-post__content pre {
    background: #0d1117;
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    overflow-x: auto;
    margin-bottom: 1.25rem;
    position: relative;
    line-height: 1.6;
    tab-size: 4;
}

[data-theme="light"] .single-post__content pre {
    background: #1e293b;
    border-color: rgba(0, 0, 0, 0.1);
}

.single-post__content pre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), transparent);
    border-radius: 8px 8px 0 0;
    opacity: 0.5;
}

.single-post__content pre code {
    background: none;
    padding: 0;
    font-size: 0.85rem;
    color: #e6edf3;
    line-height: 1.6;
    font-family: var(--font-mono);
}

.single-post__content blockquote {
    border-left: 3px solid var(--accent-primary);
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin: 1.5rem 0;
    color: var(--text-secondary);
    font-style: italic;
}

.single-post__content img {
    border-radius: 8px;
    margin: 1.5rem 0;
}

.single-post__content ul,
.single-post__content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.single-post__content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.single-post__content ul li {
    list-style: disc;
}

.single-post__content ol li {
    list-style: decimal;
}

.single-post__footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.single-post__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.single-post__nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.pagination {
    margin-top: 3rem;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination a,
.pagination span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 0.5rem 0.875rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.pagination a:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.pagination .current {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--bg-primary);
}

/* ===================================================
   404 Page
   =================================================== */

.error-404 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-bottom: clamp(3rem, 8vh, 6rem);
}

.error-404__content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.error-404__eyebrow {
    display: inline-block;
}

/* ===================================================
   Certifications Bar
   =================================================== */

.certs-section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.certs-bar {
    text-align: center;
}

.certs-bar__label {
    display: block;
    margin-bottom: 1rem;
}

.certs-bar__items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.cert-badge {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-primary);
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

.cert-badge:hover {
    border-color: var(--accent-primary);
    background: var(--accent-subtle);
}

/* ===================================================
   Testimonials
   =================================================== */

.testimonials-section {
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial {
    padding: 2rem;
}

.testimonial__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial__name {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    display: block;
}

.testimonial__company {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--accent-primary);
    display: block;
    margin-top: 0.25rem;
}

/* ===================================================
   FAQ
   =================================================== */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-item__question:hover {
    color: var(--accent-primary);
}

.faq-item__icon {
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item--open .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item--open .faq-item__answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

.faq-item__answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===================================================
   Case Studies
   =================================================== */

.case-study-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.case-study {
    padding: 2.5rem;
}

.case-study__header .label {
    margin-bottom: 0.75rem;
    display: block;
}

.case-study__header h3 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.case-study__row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.case-study__severity {
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-weight: 600;
}

.case-study__severity--critical {
    color: var(--danger);
    border: 1px solid var(--danger);
}

.case-study__severity--high {
    color: var(--orange);
    border: 1px solid var(--orange);
}

.case-study__body p {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    max-width: none;
}

.case-study__body strong {
    color: var(--text-primary);
}

/* ===================================================
   Resources
   =================================================== */

.resources-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .resources-grid { grid-template-columns: repeat(2, 1fr); }
}

.resource-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.resource-card__type {
    margin-bottom: 0.75rem;
    display: block;
}

.resource-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.resource-card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex: 1;
    margin-bottom: 1.5rem;
}

/* ===================================================
   Industries
   =================================================== */

.industries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .industries-grid { grid-template-columns: repeat(3, 1fr); }
}

.industry-card {
    padding: 2rem;
}

.industry-card__name {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.industry-card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.industry-card__compliance .label {
    display: block;
    margin-bottom: 0.5rem;
}

.industry-card__badges {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent-primary);
    letter-spacing: 1px;
}

/* ===================================================
   Legal Pages
   =================================================== */

.legal-body {
    max-width: 780px;
    margin: 0 auto;
}

.legal-body h2 {
    font-size: 1.2rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: none;
}

.legal-body ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-body li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    list-style: disc;
}

/* ===================================================
   Service Enhancements: Findings, Deliverables, Related
   =================================================== */

.service-findings {
    background: var(--bg-primary);
}

.findings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .findings-grid { grid-template-columns: repeat(2, 1fr); }
}

.finding-item {
    padding: 1rem 1.25rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.finding-item__icon {
    color: var(--danger);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.finding-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .deliverables-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}

.deliverable-card {
    padding: 2rem;
}

.deliverable-card .label {
    display: block;
    margin-bottom: 0.5rem;
}

.deliverable-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.deliverable-list {
    list-style: none;
    padding: 0;
}

.deliverable-list li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.deliverable-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--success);
    font-size: 0.75rem;
}

.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.deliverable-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ===================================================
   Cookie Banner
   =================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    padding: 1rem 0;
}

.cookie-banner__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner__inner p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
    max-width: none;
}

.cookie-banner__accept {
    padding: 0.5rem 1.5rem;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ===================================================
   Footer
   =================================================== */

.zyno-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 0 2rem;
}

.zyno-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .zyno-footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 3rem;
    }
}

.zyno-footer__logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.zyno-footer__tagline {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
}

.zyno-footer__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 280px;
}

.zyno-footer__heading {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.zyno-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zyno-footer__links li {
    margin-bottom: 0.625rem;
}

.zyno-footer__links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.zyno-footer__links a:hover {
    color: var(--accent-primary);
}

.zyno-footer__contact li {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.zyno-footer__bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.zyno-footer__bottom p {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin: 0 auto;
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .scene-container {
        display: none;
    }

    .scanline {
        display: none;
    }

    .hero__gradient {
        background:
            radial-gradient(ellipse at 30% 50%, rgba(0, 240, 255, 0.08), transparent 60%),
            radial-gradient(ellipse at 70% 50%, rgba(255, 51, 102, 0.05), transparent 60%),
            var(--bg-primary);
    }
}

/* ============================================================
   CAREERS PAGE
   ============================================================ */

.careers-hero .page-hero__content {
    max-width: 760px;
}

.careers-values {
    padding-top: 2rem;
}

.careers-values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.25rem;
}

.careers-value {
    position: relative;
    padding: 1.75rem 1.5rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color, rgba(255,255,255,0.08));
    overflow: hidden;
}

.careers-value__num {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    color: var(--accent-primary, #00f0ff);
    opacity: 0.7;
}

.careers-value h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    letter-spacing: 0.01em;
}

.careers-value p {
    margin: 0;
    opacity: 0.85;
    font-size: 0.96rem;
    line-height: 1.55;
}

.careers-jobs {
    padding-top: 4rem;
}

.careers-jobs__header {
    max-width: 720px;
    margin: 0 0 3rem;
}

.careers-jobs__header h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.05;
    margin: 0.5rem 0 1rem;
    letter-spacing: 0.01em;
}

.careers-jobs__sub {
    opacity: 0.82;
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0;
    max-width: 60ch;
}

.careers-jobs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.25rem;
}

.careers-job {
    --job-accent: #00f0ff;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.75rem 1.6rem 1.6rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    isolation: isolate;
    transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
                border-color 420ms ease,
                box-shadow 420ms ease,
                background 420ms ease;
}

.careers-job::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 10%, var(--job-accent), transparent 55%);
    opacity: 0.08;
    z-index: -1;
    transition: opacity 400ms ease;
}

.careers-job::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--job-accent);
    transition: width 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.careers-job:hover {
    transform: translateY(-4px);
    border-color: var(--job-accent);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.7);
}

.careers-job:hover::before { opacity: 0.18; }
.careers-job:hover::after  { width: 100%; }

.careers-job__team {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--job-accent);
    margin-bottom: 0.75rem;
}

.careers-job__title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    letter-spacing: 0.005em;
}

.careers-job__meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.careers-job__chip {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
}

.careers-job__blurb {
    margin: 0 0 1.25rem;
    opacity: 0.88;
    font-size: 0.98rem;
    line-height: 1.55;
}

.careers-job__lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.careers-job__list-label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.careers-job__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.88rem;
    line-height: 1.4;
    opacity: 0.92;
}

.careers-job__list li {
    position: relative;
    padding-left: 0.9rem;
}

.careers-job__list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--job-accent);
    opacity: 0.85;
}

.careers-job__list--dim { opacity: 0.72; }
.careers-job__list--dim li::before { color: currentColor; opacity: 0.5; }

.careers-job__apply {
    align-self: flex-start;
    margin-top: auto;
}

.careers-cta {
    padding-top: 3rem;
    padding-bottom: 6rem;
}

.careers-cta__inner {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255,255,255,0.08);
    max-width: 760px;
    margin: 0 auto;
}

.careers-cta__inner h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin: 0 0 1rem;
}

.careers-cta__inner p {
    opacity: 0.85;
    font-size: 1.02rem;
    line-height: 1.55;
    margin: 0 auto 1.75rem;
    max-width: 52ch;
}

@media (max-width: 640px) {
    .careers-job__lists {
        grid-template-columns: 1fr;
    }
}

/* Light-mode readability for careers */
[data-theme='light'] .careers-job {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme='light'] .careers-job__chip {
    border-color: rgba(0, 0, 0, 0.12);
}

[data-theme='light'] .careers-cta__inner {
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme='light'] .careers-value {
    border-color: rgba(0, 0, 0, 0.08);
}

