/*
 * ============================================================
 *  GSYNCD â€” Tech Daemon Front-End Stylesheet
 *  File:    gsyncd-theme.css
 *  Version: 1.0.0
 *
 *  TABLE OF CONTENTS
 *  â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
 *  1.   Google Fonts Import
 *  2.   CSS Custom Properties (Design Tokens)
 *  3.   Global Reset & Base
 *  4.   Typography
 *  5.   Utility Classes
 *  6.   â”€â”€ HEADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
 *       6a. Header Shell & Layout (CSS Grid)
 *       6b. Header Logo
 *       6c. Navigation Menus (Desktop)
 *       6d. Menu Items & Links
 *       6e. Mobile Hamburger & Drawer
 *  7.   â”€â”€ HERO SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
 *       7a. Hero Shell & Background
 *       7b. Terminal Bar Chrome
 *       7c. Hero Content Layout
 *       7d. Pre-Line & Status Line
 *       7e. H1 Typing Animation
 *       7f. Sub-Headline
 *       7g. CTA Buttons (+ Blinking Cursor on Hover)
 *       7h. Glow & Grid Decorations
 *  8.   â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
 *       8a. Footer Shell
 *       8b. Footer Logo
 *       8c. Footer Navigation
 *       8d. Copyright Bar
 *  9.   Accessibility
 * 10.   Keyframe Animations
 * 11.   Responsive â€” Tablet (â‰¤ 900px)
 * 12.   Responsive â€” Mobile (â‰¤ 600px)
 * ============================================================
 */

/* ============================================================
   1. GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

/* ============================================================
   2. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    /* â”€â”€ Colour Palette â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    --c-bg:            #0d0d0d;   /* Matte black â€” main background      */
    --c-bg-2:          #141414;   /* Dark charcoal â€” surfaces           */
    --c-bg-3:          #1a1a1a;   /* Elevated panels                    */
    --c-bg-4:          #202020;   /* Cards, input fills                 */
    --c-border:        #252525;   /* Default border                     */
    --c-border-2:      #333333;   /* Hover / focus border               */

    --c-text:          #f0f0f0;   /* Primary text                       */
    --c-text-2:        #a0a0a0;   /* Secondary / muted text             */
    --c-text-3:        #555555;   /* Dim / placeholder text             */

    --c-accent:        #b3ff00;   /* Neon Lime Green â€” all accents      */
    --c-accent-dim:    #8acc00;   /* Accent pressed state               */
    --c-accent-glow:   rgba(179, 255, 0, 0.18);  /* Glow halo          */
    --c-accent-glow-2: rgba(179, 255, 0, 0.06);  /* Large subtle glow  */

    /* â”€â”€ Typography â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    --font:            'JetBrains Mono', 'Fira Code', 'Roboto Mono', ui-monospace, monospace;
    --fs-xs:           0.6875rem; /* 11px */
    --fs-sm:           0.75rem;   /* 12px */
    --fs-base:         0.875rem;  /* 14px */
    --fs-md:           1rem;      /* 16px */
    --fs-lg:           1.25rem;   /* 20px */
    --fs-xl:           1.75rem;   /* 28px */
    --fs-2xl:          2.5rem;    /* 40px */
    --fs-3xl:          3.5rem;    /* 56px */

    /* â”€â”€ Spacing â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    --space-xs:        0.25rem;
    --space-sm:        0.5rem;
    --space-md:        1rem;
    --space-lg:        1.5rem;
    --space-xl:        2.5rem;
    --space-2xl:       4rem;
    --space-3xl:       6rem;

    /* â”€â”€ Layout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    --max-width:       1280px;
    --header-height:   72px;
    --header-z:        100;

    /* â”€â”€ Radius â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    --r-sm:            3px;
    --r-md:            6px;
    --r-lg:            12px;

    /* â”€â”€ Transitions â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    --t-fast:          140ms ease;
    --t-base:          220ms ease;
    --t-slow:          400ms ease;
}

/* ============================================================
   3. GLOBAL RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/*
 * Full-bleed foundation â€” required for Elementor full-width sections.
 * Any margin or padding on html/body creates white side gutters.
 */
html,
body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}

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

body {
    font-family: var(--font);
    font-size: var(--fs-base);
    line-height: 1.7;
    background-color: var(--c-bg);
    color: var(--c-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    text-align: justify;
}

/*
 * â”€â”€ Elementor full-width / 100vw layout support â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
 * Strip every wrapper that could clip a stretched section.
 * Elementor adds its own .e-container / .elementor-section
 * max-width controls inside the editor.
 */
.site-content,
.elementor-page .site-content {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Elementor's own inner sections / containers */
.elementor-section.elementor-section-stretched {
    left: 0 !important;
    width: 100vw !important;
}

/* Remove any margin WP or Hello-Elementor adds to page.hentry wrappers */
.hentry,
.page,
.post,
article.type-page {
    margin: 0 !important;
    padding: 0 !important;
}

/* Scrollbars */
::-webkit-scrollbar       { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--c-bg-2); }
::-webkit-scrollbar-thumb { background: var(--c-border-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-accent); }

/* Selection */
::selection {
    background: var(--c-accent);
    color: #000;
}

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

a {
    color: var(--c-accent);
    text-decoration: none;
    transition: color var(--t-fast), text-shadow var(--t-fast);
}
a:hover {
    color: #fff;
    text-shadow: 0 0 8px var(--c-accent-glow);
}

ul, ol { list-style: none; }

/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
    color: var(--c-text);
}

/* ============================================================
   5. UTILITY CLASSES
   ============================================================ */
.container {
    width: min(100%, var(--max-width));
    margin-inline: auto;
    padding-inline: var(--space-xl);
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

/* ============================================================
   6a. HEADER SHELL & LAYOUT
   ============================================================ */

/*
 * The header is position: absolute so it floats transparently
 * over the hero section (and any page background beneath it).
 * z-index: 999 keeps it above all page content.
 *
 * Three-column CSS Grid inside .header-inner:
 *
 *    | header-nav--left (1fr) | header-logo (auto) | header-nav--right (1fr) |
 *
 * The equal 1fr columns guarantee the logo is always exactly
 * centred regardless of how many menu items are on either side.
 */
.site-header {
    position: relative;         /* Normal flow, no longer absolute */
    width: 100% !important;     /* Force full width */
    max-width: 100% !important; /* Force full width */
    z-index: 9999;              /* Above hero section */
    background: transparent !important; /* Fully see-through on load */
    background-color: transparent !important;
    border: none !important;    /* No border whatsoever */
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background-color var(--t-slow), border-color var(--t-slow),
                backdrop-filter var(--t-slow), box-shadow var(--t-slow);
}

/*
 * .is-scrolled: toggled by the inline JS in header.php when the user
 * scrolls past 40px. Adds a blurred dark background so the nav stays
 * readable on inner pages that have no hero behind the header.
 */
.site-header.is-scrolled {
    background-color: rgba(13, 13, 13, 0.95) !important;
    border-bottom: 1px solid var(--c-border) !important;
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    box-shadow: 0 2px 20px rgba(0,0,0,0.4) !important;
}

/* header-inner: flexbox layout */
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

/* ============================================================
   6b. HEADER LOGO
   ============================================================ */
.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo__link {
    display: inline-flex;
    align-items: center;
    color: var(--c-text) !important;
    text-shadow: none !important;
}

.header-logo__img {
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    /*
     * mix-blend-mode: screen blends a white/transparent PNG cleanly
     * onto the dark background without any visible box or halo.
     * If the logo has a solid white base, use "multiply" instead.
     */
    mix-blend-mode: screen;
    filter: brightness(1) contrast(1);
    transition: filter var(--t-base), transform var(--t-base);
}

.header-logo__link:hover .header-logo__img {
    filter: brightness(1.15) drop-shadow(0 0 10px var(--c-accent));
    transform: scale(1.03);
    text-shadow: none !important;
}

/* Text fallback logo */
.header-logo__text {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--c-text);
    letter-spacing: 0.1em;
}
.header-logo__text:hover {
    color: var(--c-accent);
}

/* ============================================================
   6c. NAVIGATION MENUS (DESKTOP)
   ============================================================ */
.header-nav {
    display: flex;
    align-items: center;
}

/* â”€â”€ Nav <ul> list â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.header-nav .gsyncd-menu {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* â”€â”€ Nav <li> items â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.header-nav .gsyncd-menu > li {
    position: relative;
}

/* ============================================================
   6d. MENU ITEM LINKS
   ============================================================ */
.header-nav .gsyncd-menu a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #f0f0f0; /* Pure white/light grey for high legibility over dark hero */
    border-radius: var(--r-sm);
    border: 1px solid transparent;
    transition:
        color var(--t-fast),
        background var(--t-fast),
        border-color var(--t-fast),
        box-shadow var(--t-fast);
    white-space: nowrap;
    text-shadow: none !important;
}

.header-nav .gsyncd-menu a:hover,
.header-nav .gsyncd-menu .current-menu-item > a,
.header-nav .gsyncd-menu .current-menu-ancestor > a {
    color: var(--c-accent);
    background: rgba(179, 255, 0, 0.05);
    border-color: var(--c-border);
}

/* Active / current page indicator â€” underline accent */
.header-nav .gsyncd-menu .current-menu-item > a::after,
.header-nav .gsyncd-menu .current-menu-ancestor > a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--c-accent);
    border-radius: 1px;
}
.header-nav .gsyncd-menu > li {
    position: relative;
}

/* â”€â”€ Sub-menu dropdowns â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.header-nav .gsyncd-menu .sub-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 180px;
    background: var(--c-bg-3);
    border: 1px solid var(--c-border);
    border-top: 2px solid var(--c-accent);
    border-radius: 0 0 var(--r-md) var(--r-md);
    padding: var(--space-sm) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
    z-index: 200;
    flex-direction: column;
}

.header-nav--right .gsyncd-menu .sub-menu {
    left: auto;
    right: 0; /* Right-aligned for the right menu */
}

.header-nav .gsyncd-menu li:hover > .sub-menu,
.header-nav .gsyncd-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-nav .gsyncd-menu .sub-menu a {
    display: block;
    padding: 8px 16px;
    font-size: var(--fs-xs);
    color: var(--c-text-2);
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--c-border);
}
.header-nav .gsyncd-menu .sub-menu a:hover {
    color: var(--c-accent);
    background: var(--c-bg-4);
    border-color: transparent;
}

/* ============================================================
   6e. MOBILE HAMBURGER & DRAWER
   ============================================================ */

/* Hide the checkbox input visually (but keep it interactive) */
/* (Removed â€” now using Vanilla JS and button element) */

/* Hamburger button â€” hidden on desktop */
.gsyncd-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: transparent;
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    padding: 8px;
    transition: border-color var(--t-fast), background var(--t-fast);
    grid-area: unset; /* Removed from grid flow; positioned at end */
    margin-left: auto;
    z-index: 1000; /* Keeps toggle above the overlay */
}
.gsyncd-hamburger:hover {
    border-color: var(--c-accent);
    background: rgba(179, 255, 0, 0.04);
}

.gsyncd-hamburger__bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--c-accent); /* Neon Lime Green as requested */
    border-radius: 1px;
    transition: transform var(--t-base), opacity var(--t-base), background var(--t-fast);
}

/* Animate hamburger â†’ X when .is-open class is present */
.gsyncd-hamburger.is-open .gsyncd-hamburger__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.gsyncd-hamburger.is-open .gsyncd-hamburger__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.gsyncd-hamburger.is-open .gsyncd-hamburger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.gsyncd-mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100vw;
    height: calc(100vh - var(--header-height));
    background: #1a1a1a; /* Matte Black overlay */
    padding: var(--space-xl);
    overflow-y: auto;
    z-index: 998;
    
    /* Layout */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 10vh; /* Push links down a bit */
    
    /* Animation state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
}

.gsyncd-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gsyncd-menu--mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: var(--space-md);
}

.gsyncd-menu--mobile li {
    border: none;
    width: 100%;
    text-align: center;
}

.gsyncd-menu--mobile a {
    display: block;
    padding: 12px 0;
    font-size: var(--fs-lg); /* Large monospace font */
    color: #f0f0f0;
}
.gsyncd-menu--mobile a:hover {
    color: var(--c-accent);
}

/* ============================================================
   7a. HERO SHELL & BACKGROUND
   ============================================================ */
.hero {
    position: relative;
    margin-top: -80px; /* Pull the hero up underneath the transparent header */
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--c-bg);
    background-image:
        radial-gradient(ellipse 60% 50% at 10% 20%,  rgba(179,255,0,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 90% 80%,  rgba(179,255,0,0.04) 0%, transparent 60%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(255,255,255,0.01) 3px,
            rgba(255,255,255,0.01) 4px
        );
}

/* ============================================================
   7b. TERMINAL BAR CHROME
   ============================================================ */
.hero__terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--c-bg-3);
    border: 1px solid var(--c-border);
    border-bottom: none;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    font-size: var(--fs-xs);
    color: var(--c-text-3);
}

.terminal-bar__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}
.terminal-bar__dot--red    { background: #ff5f57; }
.terminal-bar__dot--yellow { background: #febc2e; }
.terminal-bar__dot--green  { background: #28c840; }

.terminal-bar__title {
    margin-left: 8px;
    font-size: var(--fs-xs);
    letter-spacing: 0.06em;
    color: var(--c-text-3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================================
   7c. HERO CONTENT LAYOUT
   ============================================================ */
.hero__inner {
    position: relative;
    z-index: 2;
    width: min(100%, 900px);
    margin-inline: auto;
    padding-inline: var(--space-xl);
    /*
     * Padding ensures hero text isn't hidden under the transparent header
     */
    padding-top: 140px;
    padding-block-end: var(--space-2xl);
}

.hero__content {
    background: var(--c-bg-2);
    border: 1px solid var(--c-border);
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    padding: var(--space-xl) clamp(1.5rem, 5vw, 3rem);
}

/* ============================================================
   7d. PRE-LINE & STATUS LINE
   ============================================================ */
.hero__pre-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-lg);
    font-size: var(--fs-sm);
}

.hero__prompt {
    color: var(--c-accent);
    font-weight: 700;
    white-space: nowrap;
}

.hero__pre-cmd {
    color: var(--c-text-2);
    animation: gsyncd-fade-in 500ms ease 200ms both;
}

.hero__status-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: var(--space-lg);
    font-size: var(--fs-xs);
    color: var(--c-text-3);
    letter-spacing: 0.06em;
}

.status-ok {
    color: #28c840;
    font-weight: 700;
}

/* Solid block cursor at end of status line */
.hero__blink-cursor {
    color: var(--c-accent);
    animation: gsyncd-cursor-blink 900ms step-end infinite;
    font-size: var(--fs-sm);
}

/* ============================================================
   7e. H1 TYPING ANIMATION
   ============================================================
   Two-line headline. Each line is a separate <span> with its own
   typing animation, offset by a delay so line 2 starts after
   line 1 has finished appearing.

   How the animation works:
   â”€ Each <span> starts with max-width: 0ch and overflow: hidden.
   â”€ The animation interpolates max-width to a large value using
     the "steps()" timing function to mimic discrete character
     additions.
   â”€ A border-right creates the blinking text cursor caret while
     the text is being "typed".
   â”€ animation-fill-mode: forwards keeps the final expanded state.

   Line 1: ~20 chars â†’ duration â‰ˆ 1.5 s, delay 0.3s
   Line 2: ~8 chars  â†’ duration â‰ˆ 0.7 s, delay 1.9s (0.3 + 1.5 + 0.1)
   ============================================================ */
.hero__headline {
    display: flex;
    flex-direction: column;
    gap: 0.1em;
    margin-bottom: var(--space-lg);
    font-size: clamp(var(--fs-xl), 5vw, var(--fs-3xl));
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.05em;
    padding-left: 10px;
    overflow: visible;
}

/* Common styles for both lines */
.hero__headline-line {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    max-width: 0ch;
    border-right: 3px solid var(--c-accent);
    animation-fill-mode: forwards;
    color: var(--c-text);
    padding-bottom: 0.12em; /* Prevents descenders like 'g' or 'y' from being clipped */
}

/* Line 1 — ">_ get synced" */
.hero__headline-line--1 {
    animation:
        gsyncd-type-line1   1.5s steps(20, end) 0.3s  forwards,
        gsyncd-border-blink 800ms step-end       0.3s  3;  /* blink 3× then stop */
}

/* Line 2 — "with us." */
.hero__headline-line--2 {
    animation:
        gsyncd-type-line2   0.8s steps(9, end)  1.9s  forwards,
        gsyncd-border-blink 800ms step-end       1.9s  infinite; /* keep blinking */
    color: var(--c-accent);
    text-shadow: 0 0 20px var(--c-accent-glow), 0 0 40px var(--c-accent-glow-2);
}

/* After both lines are done, remove the caret from line 1 */
.hero__headline-line--1 {
    border-right-color: transparent;
    animation:
        gsyncd-type-line1   1.5s steps(20, end) 0.3s  forwards,
        gsyncd-caret-fade   200ms ease           1.8s  forwards; /* fade the caret out */
}

/* Neon lime accent on the "get synced" em span */
.hero__headline-accent {
    color: var(--c-accent);
    font-style: normal;
    text-shadow: 0 0 20px var(--c-accent-glow), 0 0 40px var(--c-accent-glow-2);
}

/* ============================================================
   7f. SUB-HEADLINE
   ============================================================ */
.hero__subheadline {
    font-size: var(--fs-base);
    color: var(--c-text-2);
    line-height: 1.8;
    max-width: 60ch;
    margin-bottom: var(--space-xl);
    /* Fade in after line 2 has typed */
    opacity: 0;
    animation: gsyncd-fade-in 600ms ease 2.8s forwards;
}

/* ============================================================
   7g. CTA BUTTONS (+ BLINKING CURSOR ON HOVER)
   ============================================================
   Each button contains:
     <span class="btn__text">Label</span>
     <span class="btn__cursor" aria-hidden="true">_</span>

   The cursor span is always present in the DOM but hidden by
   default (opacity: 0 + width: 0). On hover, it slides in and
   blinks.
   ============================================================ */
.hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    /* Fade in with the sub-headline */
    opacity: 0;
    animation: gsyncd-fade-in 600ms ease 3.0s forwards;
}

/* â”€â”€ Base button styles â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 13px 28px;
    font-family: var(--font);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--r-sm);
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    transition:
        background    var(--t-base),
        border-color  var(--t-base),
        color         var(--t-base),
        box-shadow    var(--t-base),
        transform     var(--t-fast);
    text-decoration: none !important;
}

.btn:hover {
    transform: translateY(-2px);
    text-shadow: none !important;
}
.btn:active {
    transform: translateY(0);
}

/* â”€â”€ Primary button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn--primary {
    background: var(--c-accent);
    color: #000;
    border-color: var(--c-accent);
    box-shadow: 0 0 18px var(--c-accent-glow);
}
.btn--primary:hover {
    background: transparent;
    color: var(--c-accent);
    border-color: var(--c-accent);
    box-shadow: 0 0 28px var(--c-accent-glow), 0 4px 20px rgba(0,0,0,0.4);
}
.btn--primary:hover .btn__text {
    color: var(--c-accent);
}

/* â”€â”€ Secondary button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn--secondary {
    background: transparent;
    color: var(--c-text);
    border-color: var(--c-border-2);
}
.btn--secondary:hover {
    background: rgba(179, 255, 0, 0.05);
    border-color: var(--c-accent);
    color: var(--c-accent);
    box-shadow: 0 0 16px var(--c-accent-glow);
}

/* â”€â”€ Blinking cursor on hover â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/*
 * The <span class="btn__cursor">_</span> starts collapsed.
 * On hover, it expands and begins the blink animation.
 * Using max-width transition instead of display toggle for smooth
 * animation performance (no layout reflow on visibility change).
 */
.btn__cursor {
    display: inline-block;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    color: inherit;
    font-weight: 700;
    margin-left: 0;
    transition: max-width var(--t-base), opacity var(--t-fast), margin-left var(--t-base);
}

.btn:hover .btn__cursor {
    max-width: 1ch;
    opacity: 1;
    margin-left: 4px;
    animation: gsyncd-cursor-blink 700ms step-end infinite;
}

/* Ensure the primary button cursor inherits the right colour in both states */
.btn--primary .btn__cursor         { color: #000; }
.btn--primary:hover .btn__cursor   { color: var(--c-accent); }
.btn--secondary .btn__cursor       { color: var(--c-text); }
.btn--secondary:hover .btn__cursor { color: var(--c-accent); }

/* ============================================================
   7h. GLOW & GRID DECORATIONS
   ============================================================ */
.hero__grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(179,255,0,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(179,255,0,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero__glow {
    position: absolute;
    z-index: 0;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    opacity: 0.4;
    animation: gsyncd-glow-pulse 4s ease-in-out infinite;
}
.hero__glow--tl {
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(179,255,0,0.12) 0%, transparent 70%);
    animation-delay: 0s;
}
.hero__glow--br {
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(179,255,0,0.08) 0%, transparent 70%);
    animation-delay: 2s;
}

/* ============================================================
   8a. FOOTER SHELL
   ============================================================ */
.site-footer {
    position: relative;              /* stacking context for pseudo-elements  */
    left: 0;                         /* guarantee flush-left alignment        */
    width: 100%;                     /* full viewport width                   */
    max-width: 100% !important;      /* override any parent max-width         */
    box-sizing: border-box;
    margin: 0 !important;
    padding-block: var(--space-2xl) var(--space-xl);
    background: var(--c-bg-2);
    border-top: 1px solid var(--c-border);
    overflow: hidden;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    width: min(100%, var(--max-width));
    margin-inline: auto;
    padding-inline: var(--space-xl);
    text-align: center;
}

/* ============================================================
   8b. FOOTER LOGO
   ============================================================ */
.footer-logo {}

.footer-logo__link {
    display: inline-flex;
    align-items: center;
    color: var(--c-text) !important;
    text-shadow: none !important;
}

.footer-logo__img {
    height: 36px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: brightness(0.9);
    transition: filter var(--t-base), transform var(--t-base);
}
.footer-logo__link:hover .footer-logo__img {
    filter: brightness(1.1) drop-shadow(0 0 8px var(--c-accent));
    transform: scale(1.04);
}

/* Text fallback logo */
.footer-logo__text {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--c-text);
    letter-spacing: 0.12em;
}

/* Tagline below logo */
.footer-tagline {
    font-size: var(--fs-xs);
    color: var(--c-text-3);
    letter-spacing: 0.08em;
    max-width: 50ch;
}

/* ============================================================
   8c. FOOTER NAVIGATION
   ============================================================ */
.footer-nav {}

.footer-nav .footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px var(--space-sm);
    list-style: none;
}

.footer-nav .footer-menu li {
    display: inline-flex;
    align-items: center;
}

/* Bullet separator between items */
.footer-nav .footer-menu li + li::before {
    content: 'Â·';
    margin-right: var(--space-sm);
    color: var(--c-border-2);
    font-size: var(--fs-xs);
}

.footer-nav .footer-menu a {
    font-size: var(--fs-xs);
    color: var(--c-text-3);
    letter-spacing: 0.06em;
    padding: 4px 6px;
    border-radius: var(--r-sm);
    transition: color var(--t-fast), background var(--t-fast);
}
.footer-nav .footer-menu a:hover {
    color: var(--c-accent);
    background: rgba(179, 255, 0, 0.04);
    text-shadow: none !important;
}

/* ============================================================
   8d. COPYRIGHT BAR
   ============================================================ */
.footer-divider {
    width: 100%;
    max-width: 400px;
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 0; /* gap on footer-inner handles spacing */
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer-copyright__text {
    font-size: var(--fs-xs);
    color: var(--c-text-3);
    letter-spacing: 0.06em;
}

.footer-copyright__accent {
    color: var(--c-accent);
    font-weight: 700;
}

.footer-copyright__stack {
    font-size: 10px;
    color: var(--c-text-3);
    letter-spacing: 0.04em;
}
.footer-copyright__prompt {
    color: var(--c-text-3);
    margin-right: 4px;
}
.footer-copyright__stack a {
    color: var(--c-text-3);
    text-decoration: none;
}
.footer-copyright__stack a:hover {
    color: var(--c-accent);
    text-shadow: none !important;
}

/* ============================================================
   9. ACCESSIBILITY
   ============================================================ */
.gsyncd-skip-link {
    position: absolute;
    top: -100px;
    left: var(--space-md);
    z-index: 9999;
    background: var(--c-accent);
    color: #000;
    font-family: var(--font);
    font-size: var(--fs-sm);
    font-weight: 700;
    padding: 8px 16px;
    border-radius: var(--r-sm);
    transition: top var(--t-fast);
}
.gsyncd-skip-link:focus {
    top: var(--space-md);
}

/* Focus rings using accent colour */
:focus-visible {
    outline: 2px solid var(--c-accent);
    outline-offset: 3px;
    border-radius: var(--r-sm);
}

/* ============================================================
   10. KEYFRAME ANIMATIONS
   ============================================================ */

/* â”€â”€ Typing animation â€” Line 1 (max-width: 0 â†’ 20ch) â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes gsyncd-type-line1 {
    0%   { max-width: 0ch; }
    100% { max-width: 24ch; }  /* Slightly wider than text to avoid clipping */
}

/* â”€â”€ Typing animation â€” Line 2 (max-width: 0 â†’ 9ch) â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes gsyncd-type-line2 {
    0%   { max-width: 0ch; }
    100% { max-width: 12ch; }
}

/* ── Blinking cursor ────────────────────────────────────────── */
@keyframes gsyncd-cursor-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ── Blinking border cursor ─────────────────────────────────── */
@keyframes gsyncd-border-blink {
    0%, 100% { border-right-color: var(--c-accent); }
    50%       { border-right-color: transparent; }
}

/* â”€â”€ Caret fade out after line finishes typing â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes gsyncd-caret-fade {
    0%   { border-right-color: var(--c-accent); }
    100% { border-right-color: transparent; }
}

/* â”€â”€ Fade in (for sub-headline and buttons) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes gsyncd-fade-in {
    0%   { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* â”€â”€ Ambient glow pulse â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes gsyncd-glow-pulse {
    0%, 100% { opacity: 0.3; }
    50%       { opacity: 0.5; }
}

/* â”€â”€ Header scroll JS class (added via inline script) â”€â”€â”€â”€â”€â”€â”€â”€
   Add this script in footer.php before wp_footer():
   <script>
     window.addEventListener('scroll', () => {
       document.getElementById('site-header')
         .classList.toggle('is-scrolled', window.scrollY > 10);
     }, { passive: true });
   </script>
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* ============================================================
   11. RESPONSIVE â€” TABLET (â‰¤ 768px)
   ============================================================ */
@media (max-width: 768px) {

    .header-inner {
        flex-direction: row;
        padding: 15px 5%;
    }

    /* Hide desktop navs */
    .header-nav--primary {
        display: none;
    }

    /* Show hamburger */
    .gsyncd-hamburger {
        display: flex;
    }

    /* Show mobile drawer */
    .gsyncd-mobile-menu {
        display: flex;
    }

    /* Reduce hero font on tablet */
    .hero__headline {
        font-size: clamp(var(--fs-lg), 6vw, var(--fs-2xl));
    }

    .hero__inner {
        padding-block: var(--space-xl);
    }

    /* Homepage and Subpage Hero Spacing Fix for Mobile/Tablet */
    .hero,
    .hero--page {
        margin-top: -60px !important;
        padding-top: 140px !important;
    }

    /* Prevent dynamic terminal path/domain title overlapping */
    .terminal-bar-title {
        position: static !important;
        transform: none !important;
        margin-left: 12px !important;
        white-space: normal !important;
        word-break: break-word !important;
        font-size: 11px !important;
        line-height: 1.2 !important;
    }

    /* Scale terminal h1 headline and allow it to wrap */
    .terminal-body h1.hero__headline,
    .terminal-body .hero__headline {
        font-size: 1.5rem !important;
    }

    .terminal-body .hero__headline-line {
        white-space: normal !important;
        max-width: none !important;
        word-break: break-word !important;
        border-right: none !important;
        height: auto !important;
    }

    /* Wrapping safeties for terminal shell inputs */
    .hero__pre-line {
        flex-wrap: wrap !important;
    }

    .hero__pre-cmd {
        white-space: normal !important;
        word-break: break-word !important;
    }

    /* Tighten vertical padding for the projects list section on mobile */
    .projects-grid-wrapper {
        padding-block: var(--space-md) !important;
    }
}

/* ============================================================
   12. RESPONSIVE â€” MOBILE (â‰¤ 600px)
   ============================================================ */
@media (max-width: 600px) {

    :root {
        --header-height: 60px;
    }

    .header-inner {
        padding-inline: var(--space-md);
        height: var(--header-height);
    }

    .header-logo__img {
        height: 30px;
        max-width: 120px;
    }

    .hero {
        min-height: calc(100vh - var(--header-height));
        align-items: flex-start;
        padding-top: var(--space-xl);
    }

    .hero__inner {
        padding-inline: var(--space-md);
        padding-block: var(--space-lg);
    }

    .hero__content {
        padding: var(--space-lg);
    }

    .hero__terminal-bar {
        padding: 8px 14px;
    }

    .terminal-bar__title {
        font-size: 10px;
    }

    .hero__headline {
        font-size: clamp(1.4rem, 8vw, 2rem);
    }

    .hero__cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
        width: 100%;
        padding: 13px 20px;
    }

    /* Footer */
    .footer-nav .footer-menu {
        flex-direction: column;
        align-items: center;
    }

    .footer-nav .footer-menu li + li::before {
        display: none;
    }

    .footer-copyright {
        padding-inline: var(--space-md);
    }
}

/* ============================================================
   13. PAGE TEMPLATE â€” ACCOUNTS (Solarized Light Terminal)
   ============================================================ */

/* â”€â”€ Base Override â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.page-template-page-accounts {
    background-color: #ffffff !important; /* White background */
    color: #1e1e1e !important;            /* Dark Charcoal text */
}

/* Headings & Links */
body.page-template-page-accounts h1,
body.page-template-page-accounts h2,
body.page-template-page-accounts h3,
body.page-template-page-accounts h4,
body.page-template-page-accounts h5,
body.page-template-page-accounts h6 {
    color: #1e1e1e !important;
}

body.page-template-page-accounts a {
    color: #1e1e1e; /* Darker links by default on this page */
}
body.page-template-page-accounts a:hover {
    color: var(--c-accent); /* Lime green accent on hover */
    text-shadow: none;
}

/* â”€â”€ Header Overrides (Light Mode) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Invert logo so it's visible on the light background */
body.page-template-page-accounts .header-logo__img {
    filter: invert(1) brightness(0.2); 
    mix-blend-mode: normal;
}
body.page-template-page-accounts .header-logo__link:hover .header-logo__img {
    filter: invert(1) brightness(0) drop-shadow(0 0 5px rgba(0,0,0,0.3));
}

/* Invert nav links in the header */
body.page-template-page-accounts .header-nav .gsyncd-menu a {
    color: #1e1e1e;
}
body.page-template-page-accounts .header-nav .gsyncd-menu a:hover,
body.page-template-page-accounts .header-nav .gsyncd-menu .current-menu-item > a,
body.page-template-page-accounts .header-nav .gsyncd-menu .current-menu-ancestor > a {
    color: var(--c-accent);
    background: rgba(179, 255, 0, 0.15); /* Slightly stronger for contrast against light */
}

/* Light mode scrolled header */
body.page-template-page-accounts .site-header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05) !important;
}

/* Sub-menus */
body.page-template-page-accounts .header-nav .gsyncd-menu .sub-menu {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 2px solid var(--c-accent);
}
body.page-template-page-accounts .header-nav .gsyncd-menu .sub-menu a {
    color: #1e1e1e;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
body.page-template-page-accounts .header-nav .gsyncd-menu .sub-menu a:hover {
    background: rgba(0, 0, 0, 0.02);
}

/* Hamburger */
body.page-template-page-accounts .gsyncd-hamburger__bar {
    background: #1e1e1e;
}
body.page-template-page-accounts .gsyncd-mobile-menu {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
body.page-template-page-accounts .gsyncd-menu--mobile a {
    color: #1e1e1e;
}

/* â”€â”€ Hero Overrides â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.page-template-page-accounts .hero--accounts {
    background-color: transparent;
    background-image:
        radial-gradient(ellipse 60% 50% at 10% 20%,  rgba(179,255,0,0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 90% 80%,  rgba(179,255,0,0.1) 0%, transparent 60%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(0,0,0,0.02) 3px,
            rgba(0,0,0,0.02) 4px
        );
}

/* Glows adjusted for light background */
body.page-template-page-accounts .hero__glow--tl {
    background: radial-gradient(circle, rgba(179,255,0,0.3) 0%, transparent 70%);
}
body.page-template-page-accounts .hero__glow--br {
    background: radial-gradient(circle, rgba(179,255,0,0.2) 0%, transparent 70%);
}

/* Terminal Card in Light Mode */
body.page-template-page-accounts .hero__content--accounts {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

body.page-template-page-accounts .hero__terminal-bar {
    background: #f0f0f0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

body.page-template-page-accounts .terminal-bar__title {
    color: #666;
}

body.page-template-page-accounts .hero__prompt {
    color: var(--c-accent);
}

body.page-template-page-accounts .hero__pre-cmd {
    color: #1e1e1e;
}

body.page-template-page-accounts .hero__headline-accent {
    color: var(--c-accent);
    text-shadow: none;
}

body.page-template-page-accounts .hero__subheadline {
    color: #444;
}

body.page-template-page-accounts .hero__status-line {
    color: #666;
}
body.page-template-page-accounts .hero__status-line .status-ok {
    color: var(--c-accent);
}

/* â”€â”€ Services Grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.accounts-services {
    padding-block: var(--space-3xl);
    background-color: transparent;
    position: relative;
    z-index: 10;
}

.accounts-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

/* Service Card */
.accounts-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--r-md);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}

.accounts-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    border-color: var(--c-accent);
}

.accounts-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    padding-bottom: var(--space-sm);
}

.accounts-card__icon {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--c-accent);
}

.accounts-card__title {
    font-size: var(--fs-md);
    margin: 0;
}

.accounts-card__body {
    flex-grow: 1;
}

.accounts-card__body p {
    color: #555;
    font-size: var(--fs-sm);
    line-height: 1.6;
}

.accounts-card__footer {
    padding-top: var(--space-sm);
    border-top: 1px dashed rgba(0,0,0,0.1);
    font-size: var(--fs-xs);
    font-weight: 600;
}

.accounts-card__footer .status-ok {
    color: #1e1e1e; /* Darker green or accent */
}

/* â”€â”€ Footer Overrides â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.page-template-page-accounts .site-footer {
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.1);
}

body.page-template-page-accounts .footer-logo__img {
    filter: invert(1) brightness(0.2); 
    mix-blend-mode: normal;
}

body.page-template-page-accounts .footer-logo__link:hover .footer-logo__img {
    filter: invert(1) brightness(0) drop-shadow(0 0 5px rgba(0,0,0,0.3));
}

body.page-template-page-accounts .footer-nav .gsyncd-menu a {
    color: #555;
}

body.page-template-page-accounts .footer-nav .gsyncd-menu a:hover {
    color: var(--c-accent);
}

body.page-template-page-accounts .footer-copyright__text {
    color: #666;
}

/* ============================================================
   14. BLOG ARCHIVE (home.php)
   ============================================================ */

/* Hero Specifics for Blog Archive */
.hero--blog {
    min-height: 50vh; /* Shorter than home page hero */
    padding-bottom: 60px;
}
.hero__inner--blog {
    /* Padding-top is globally handled, but we enforce specific blog bottom padding */
    padding-bottom: 60px;
}

/* Blog Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    padding-block: var(--space-2xl);
}

/* Post Card Terminal Style */
.post-card {
    background-color: var(--c-bg-2); /* Lighter charcoal #1e1e1e */
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: var(--space-lg);
    transition: all var(--t-fast);
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    border-color: var(--c-accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(179, 255, 0, 0.1);
}

.post-card__header {
    margin-bottom: var(--space-sm);
}

.post-card__date {
    font-family: var(--ff-mono);
    font-size: var(--fs-xs);
    color: var(--c-text-3);
}

.post-card__title {
    font-size: var(--fs-xl);
    font-family: var(--ff-mono);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.post-card__title a {
    color: var(--c-text);
    text-decoration: none;
}

.post-card__title a:hover {
    color: var(--c-accent);
}

.post-card__excerpt {
    color: var(--c-text-2);
    font-size: var(--fs-sm);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.post-card__footer {
    margin-top: auto;
    padding-top: var(--space-md);
    border-top: 1px solid var(--c-border);
}

.post-card__read-more {
    display: inline-block;
    font-family: var(--ff-mono);
    color: var(--c-accent);
    font-weight: 700;
    text-decoration: none;
    font-size: var(--fs-sm);
    transition: color var(--t-fast);
}

.post-card__read-more:hover {
    color: #fff;
    text-shadow: 0 0 8px var(--c-accent);
}

.post-card__read-prompt {
    opacity: 0.7;
    margin-right: 4px;
}

/* Pagination */
.navigation.pagination {
    margin-block: var(--space-xl);
    display: flex;
    justify-content: space-between;
}

.nav-links a,
.nav-links span {
    font-family: var(--ff-mono);
    padding: 8px 16px;
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    color: var(--c-text);
    text-decoration: none;
}

.nav-links a:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
}

.nav-links .current {
    background: var(--c-accent);
    color: var(--c-bg);
    border-color: var(--c-accent);
}

.no-posts-found {
    font-family: var(--ff-mono);
    color: #ff5f57; /* Terminal red error */
    text-align: center;
    padding-block: var(--space-2xl);
}

/* ============================================================
   15. PAGE TEMPLATES (Projects, About, Contact)
   ============================================================ */

/* Generic Page Hero */
.hero--page {
    min-height: 50vh;
    padding-bottom: 60px;
}
.hero__inner--page {
    padding-bottom: 60px;
}

/* 1. Our Projects Grid */
.projects-grid-wrapper {
    padding-block: var(--space-2xl);
}
.projects-grid-wrapper .elementor-widget-wrap,
.projects-grid-wrapper > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}
.project-card {
    background-color: var(--c-bg-2);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: var(--space-lg);
    transition: all var(--t-fast);
}
.project-card:hover {
    border-color: var(--c-accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(179, 255, 0, 0.1);
}

/* 2. Get To Know Us */
.about-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding-block: var(--space-2xl);
}
.about-content-wrapper blockquote {
    background: var(--c-bg-2);
    border-left: 4px solid var(--c-accent);
    padding: var(--space-md) var(--space-lg);
    margin-block: var(--space-lg);
    font-family: var(--ff-mono);
    color: var(--c-text-2);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

/* 3. Contact Us Forms */
.contact-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding-block: var(--space-2xl);
}
.contact-content-wrapper input[type="text"],
.contact-content-wrapper input[type="email"],
.contact-content-wrapper input[type="tel"],
.contact-content-wrapper textarea {
    width: 100%;
    background-color: var(--c-bg-2);
    color: var(--c-text);
    border: none;
    border-bottom: 2px solid var(--c-border);
    border-radius: 0;
    padding: var(--space-md) 0;
    font-family: var(--ff-mono);
    font-size: var(--fs-md);
    transition: border-color var(--t-fast);
    box-shadow: none !important;
    outline: none !important;
}
.contact-content-wrapper input:focus,
.contact-content-wrapper textarea:focus {
    border-bottom-color: var(--c-accent);
    background-color: rgba(255, 255, 255, 0.02);
}
.contact-content-wrapper label {
    font-family: var(--ff-mono);
    color: var(--c-text-3);
    font-size: var(--fs-sm);
    display: block;
    margin-bottom: var(--space-xs);
}

/* ============================================================
   16. BLOG ARCHIVE MAIN CONTENT (3-COLUMN GRID & UTILITY BAR)
   ============================================================ */

.blog-utility-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--c-border);
}

.blog-utility__left,
.blog-utility__right {
    display: flex;
    align-items: center;
}

.blog-utility__prompt {
    font-family: var(--font);
    color: var(--c-accent);
    font-weight: 700;
    margin-right: var(--space-sm);
    font-size: var(--fs-base);
}

.blog-utility__select,
.blog-utility__search-input {
    background-color: var(--c-bg-2);
    color: var(--c-text);
    border: none;
    border-bottom: 2px solid var(--c-border);
    border-radius: 0;
    padding: var(--space-xs) var(--space-sm);
    font-family: var(--font);
    font-size: var(--fs-base);
    outline: none !important;
    box-shadow: none !important;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
    min-width: 200px;
    appearance: none;
    -webkit-appearance: none;
}

.blog-utility__select {
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23b3ff00' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 32px;
}

.blog-utility__select:focus,
.blog-utility__search-input:focus {
    border-bottom-color: var(--c-accent);
    box-shadow: 0 0 10px var(--c-accent-glow) !important;
    background-color: rgba(255, 255, 255, 0.02);
}

.blog-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.post-card-3col {
    background: var(--c-bg-2);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}

.post-card-3col:hover {
    border-color: var(--c-accent);
    box-shadow: 0 8px 25px var(--c-accent-glow);
    transform: translateY(-4px);
}

.post-card__image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background-color: var(--c-bg-3);
    border-bottom: 1px solid var(--c-border);
}

.post-card__image-wrapper--empty {
    position: relative;
    height: 180px;
    background-color: var(--c-bg-3);
    border-bottom: 1px solid var(--c-border);
}

.post-card__image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.post-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--t-slow);
}

.post-card-3col:hover .post-card__image {
    transform: scale(1.04);
}

.post-card__date-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background-color: rgba(13, 13, 13, 0.85);
    color: var(--c-accent);
    font-family: var(--font);
    font-size: var(--fs-xs);
    font-weight: 700;
    padding: 4px 8px;
    border-radius: var(--r-sm);
    border: 1px solid var(--c-accent);
    z-index: 10;
    letter-spacing: 0.05em;
}

.post-card__content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-card__meta {
    margin-bottom: var(--space-xs);
    font-family: var(--font);
    font-size: var(--fs-xs);
    color: var(--c-text-2);
}

.post-card__read-time {
    display: inline-block;
}

.post-card__title {
    font-family: var(--font);
    font-size: var(--fs-lg);
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 var(--space-sm) 0;
}

.post-card__title a {
    color: var(--c-text);
    text-decoration: none;
    transition: color var(--t-fast);
}

.post-card-3col:hover .post-card__title a,
.post-card__title a:hover {
    color: var(--c-accent);
}

.post-card__excerpt {
    color: var(--c-text-2);
    font-family: var(--font);
    font-size: var(--fs-base);
    line-height: 1.5;
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.post-card__action {
    margin-top: auto;
}

.post-card__btn {
    display: inline-block;
    font-family: var(--font);
    color: var(--c-accent);
    text-decoration: none;
    font-size: var(--fs-base);
    font-weight: 700;
    transition: color var(--t-fast), text-shadow var(--t-fast);
}

.post-card__btn:hover {
    color: #ffffff;
    text-shadow: 0 0 8px var(--c-accent);
}

@media (max-width: 900px) {
    .blog-grid-3col {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 600px) {
    .blog-grid-3col {
        grid-template-columns: 1fr;
    }
    .blog-utility-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .blog-utility__left,
    .blog-utility__right {
        justify-content: space-between;
    }
    .blog-utility__select,
    .blog-utility__search-input {
        min-width: unset;
        flex-grow: 1;
    }
}

/* ============================================================
   17. ACCOUNTS PAGE â€” SOLARIZED LIGHT MAIN CONTENT
   ============================================================ */

.accounts-main-content {
    background-color: #ffffff;
    color: #1e1e1e;
    font-family: var(--font);
    padding: var(--space-2xl) 0;
}

.accounts-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-inline: var(--space-md);
}

.accounts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.accounts-module-card {
    background-color: #ffffff;
    border: 1px solid #d3c7a3;
    border-bottom: 4px solid #d3c7a3;
    border-radius: var(--r-md);
    padding: var(--space-lg);
    transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}

.accounts-module-card:hover {
    border-color: var(--c-accent);
    border-bottom-color: var(--c-accent);
    box-shadow: 0 8px 20px var(--c-accent-glow);
    transform: translateY(-3px);
}

.accounts-module-card__header {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
}

.accounts-module-card__prompt {
    background-color: #1e1e1e;
    color: #b3ff00;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: var(--r-sm);
    margin-right: var(--space-sm);
    font-size: var(--fs-xs);
    letter-spacing: 0.05em;
}

.accounts-module-card__title {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: #1e1e1e;
    margin: 0;
}

.accounts-module-card__body {
    color: #4a4a4a;
    line-height: 1.6;
    font-size: var(--fs-base);
}

/* Accordion */
.accounts-accordion-wrapper {
    margin-bottom: var(--space-xl);
}

.accounts-accordion-trigger {
    width: 100%;
    text-align: left;
    background-color: #ffffff;
    border: 1px solid #d3c7a3;
    border-bottom: 3px solid #d3c7a3;
    border-radius: var(--r-sm);
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font);
    font-size: var(--fs-md);
    font-weight: 700;
    color: #1e1e1e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all var(--t-fast);
    outline: none !important;
}

.accounts-accordion-trigger:hover,
.accounts-accordion-trigger:focus,
.accounts-accordion-trigger.is-open {
    background-color: #ffffff !important;
    color: #1e1e1e !important;
    border-color: var(--c-accent) !important;
    border-bottom-color: var(--c-accent) !important;
    box-shadow: 0 4px 12px var(--c-accent-glow) !important;
}

.accounts-accordion-trigger__prompt {
    background-color: #1e1e1e;
    color: #b3ff00;
    padding: 2px 6px;
    border-radius: var(--r-sm);
    margin-right: var(--space-sm);
    font-size: var(--fs-xs);
    letter-spacing: 0.05em;
}

.accounts-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-slow) ease-in-out, opacity var(--t-base) ease;
    opacity: 0;
    background-color: #ffffff;
    border-radius: 0 0 var(--r-sm) var(--r-sm);
    border: 0 solid #d3c7a3;
}

.accounts-accordion-content.is-open {
    max-height: 500px;
    opacity: 1;
    border: 1px solid #d3c7a3;
    border-top: none;
    margin-bottom: var(--space-lg);
}

.accounts-accordion-inner {
    padding: var(--space-lg);
}

.accounts-granular-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.accounts-granular-item {
    font-size: var(--fs-base);
    color: #1e1e1e;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.accounts-granular-item__bullet {
    color: #b3ff00;
    text-shadow: 0 0 1px #1e1e1e;
    margin-right: var(--space-sm);
    font-weight: 700;
}

/* Supported Architectures */
.accounts-architectures {
    margin-top: var(--space-2xl);
    border-top: 2px solid #e6dbb9;
    padding-top: var(--space-xl);
}

.accounts-architectures__title {
    font-size: var(--fs-xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: #1e1e1e;
}

.accounts-architectures-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.accounts-arch-item {
    font-size: var(--fs-md);
    line-height: 1.6;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.accounts-arch-item__tag {
    background-color: #1e1e1e;
    color: #b3ff00;
    padding: 3px 8px;
    border-radius: var(--r-sm);
    font-weight: 700;
    font-size: var(--fs-base);
    letter-spacing: 0.05em;
    display: inline-block;
}

.accounts-arch-item__desc {
    color: #4a4a4a;
}

@media (max-width: 900px) {
    .accounts-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    .accounts-granular-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .accounts-granular-grid {
        grid-template-columns: 1fr;
    }
    .accounts-arch-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
    }
}

/* ============================================================
   18. STANDARDIZED PAGE HERO (MIN-HEIGHT & FLEX LAYOUT)
   ============================================================ */

.hero--page {
    min-height: 350px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -80px;
    padding-top: 100px;
    box-sizing: border-box;
}

.hero__inner--page {
    width: min(100%, 900px);
    margin-inline: auto;
    padding-inline: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Terminal Window UI */
.terminal-window {
    background: #141414; /* Dark Charcoal/Matte Black */
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    width: 100%;
    margin-bottom: var(--space-md);
    font-family: var(--font);
}

.terminal-top-bar {
    background: #1a1a1a;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--c-border);
    position: relative;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.terminal-btn--red {
    background: #ff5f56;
}

.terminal-btn--yellow {
    background: #ffbd2e;
}

.terminal-btn--green {
    background: #27c93f;
}

.terminal-bar-title {
    color: var(--c-text-3);
    font-size: var(--fs-xs);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    pointer-events: none;
    font-family: var(--font);
}

.terminal-body {
    padding: var(--space-lg) var(--space-xl);
    padding-right: 30px !important; /* ensures extra space on right for shadows/italic fonts */
    text-align: left;
    overflow: visible !important; /* prevent pixel-clipping */
}

.terminal-body h1.hero__headline--terminal {
    font-size: clamp(var(--fs-md), 3vw, var(--fs-lg));
    line-height: 1.4;
    margin: 0 0 var(--space-sm) 0;
    font-weight: 700;
    letter-spacing: normal;
    padding-left: 0;
    font-family: var(--font);
}

.term-lime {
    color: var(--c-accent); /* Neon Lime Green */
}

.term-white {
    color: #ffffff; /* Pure white */
}

.hero__description {
    color: var(--c-text-2); /* subtle white/grey */
    font-size: var(--fs-sm);
    line-height: 1.6;
    margin: 0 0 var(--space-sm) 0;
    font-family: var(--font);
}

.terminal-feedback {
    color: var(--c-accent); /* Neon Lime Green */
    font-size: var(--fs-sm);
    margin: 0;
    font-family: var(--font);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__breadcrumbs--centered {
    font-family: var(--font);
    font-size: var(--fs-xs);
    color: var(--c-text-3);
    margin-top: var(--space-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.05em;
    width: 100%;
}

.hero__breadcrumb-link {
    color: var(--c-text-3);
    text-decoration: none;
    transition: color var(--t-fast);
}

.hero__breadcrumb-link:hover {
    color: #ffffff;
}

.accent-slash {
    color: var(--c-accent);
    font-weight: 700;
}

.hero__breadcrumb-current {
    color: var(--c-text-2);
}

/* Breadcrumbs on light accounts page override */
body.page-template-page-accounts .hero__breadcrumbs--centered {
    color: #555555;
}
body.page-template-page-accounts .hero__breadcrumb-link {
    color: #555555;
}
body.page-template-page-accounts .hero__breadcrumb-link:hover {
    color: #1e1e1e;
}
body.page-template-page-accounts .hero__breadcrumb-current {
    color: #2b2b2b;
}

/* ============================================================
   19. ABOUT US PAGE (TERMINAL CONTENT LAYOUT)
   ============================================================ */

.about-content-wrapper {
    max-width: 1200px !important;
    margin-inline: auto;
    padding-block: var(--space-xl);
}

.about-console {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    font-family: var(--font);
    color: #1e1e1e; /* Dark Charcoal text for legibility */
}

.console-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.console-title {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: #1e1e1e; /* Dark Charcoal heading so it is visible on white bg */
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.05em;
    font-family: var(--font);
}

.console-prompt {
    color: var(--c-accent); /* Neon Lime Green */
}

.console-content {
    padding-left: 20px;
    border-left: 2px solid #e6dbb9; /* Light border style matching Solarized Light */
}

.console-text {
    font-size: var(--fs-base);
    line-height: 1.8;
    color: #4a4a4a; /* High contrast dark grey text */
    margin: 0 0 var(--space-md) 0;
}

.console-text:last-child {
    margin-bottom: 0;
}

.console-lead {
    color: #1e1e1e;
    font-weight: 700;
}

/* Pillars grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.pillar-card {
    background-color: #ffffff; /* White card */
    border: 1px solid #d3c7a3;
    border-bottom: 4px solid #d3c7a3;
    border-radius: var(--r-md);
    padding: var(--space-lg);
    transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.pillar-card:hover {
    border-color: var(--c-accent);
    border-bottom-color: var(--c-accent);
    box-shadow: 0 8px 20px var(--c-accent-glow);
    transform: translateY(-3px);
}

.pillar-badge {
    background-color: #1e1e1e;
    color: var(--c-accent);
    padding: 4px 10px;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--r-sm);
    display: inline-block;
    letter-spacing: 0.05em;
}

.pillar-body p {
    font-size: var(--fs-base);
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

/* Call to Action */
.console-cta {
    background: #ffffff; /* White alert container */
    border: 1px solid #d3c7a3;
    border-radius: var(--r-md);
    padding: var(--space-lg);
    transition: border-color var(--t-base);
}

.console-cta:hover {
    border-color: var(--c-accent);
}

.console-cta .console-content {
    border-left: none;
    padding-left: 0;
}

.console-action {
    margin-top: var(--space-md);
}

@media (max-width: 900px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* ============================================================
   20. PRIVACY POLICY PAGE (LIGHT MODE OVERRIDES)
   ============================================================ */
body.page-template-page-privacy-policy {
    background-color: #ffffff !important;
    color: #1e1e1e !important;
}

body.page-template-page-privacy-policy h1,
body.page-template-page-privacy-policy h2,
body.page-template-page-privacy-policy h3,
body.page-template-page-privacy-policy h4,
body.page-template-page-privacy-policy h5,
body.page-template-page-privacy-policy h6 {
    color: #1e1e1e !important;
}

body.page-template-page-privacy-policy a {
    color: #1e1e1e;
}
body.page-template-page-privacy-policy a:hover {
    color: var(--c-accent);
    text-shadow: none;
}

/* Header */
body.page-template-page-privacy-policy .header-logo__img {
    filter: invert(1) brightness(0.2);
    mix-blend-mode: normal;
}
body.page-template-page-privacy-policy .header-logo__link:hover .header-logo__img {
    filter: invert(1) brightness(0) drop-shadow(0 0 5px rgba(0,0,0,0.3));
}
body.page-template-page-privacy-policy .header-nav .gsyncd-menu a {
    color: #1e1e1e;
}
body.page-template-page-privacy-policy .header-nav .gsyncd-menu a:hover,
body.page-template-page-privacy-policy .header-nav .gsyncd-menu .current-menu-item > a,
body.page-template-page-privacy-policy .header-nav .gsyncd-menu .current-menu-ancestor > a {
    color: var(--c-accent);
    background: rgba(179, 255, 0, 0.15);
}
body.page-template-page-privacy-policy .site-header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05) !important;
}
body.page-template-page-privacy-policy .header-nav .gsyncd-menu .sub-menu {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 2px solid var(--c-accent);
}
body.page-template-page-privacy-policy .header-nav .gsyncd-menu .sub-menu a {
    color: #1e1e1e;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
body.page-template-page-privacy-policy .header-nav .gsyncd-menu .sub-menu a:hover {
    background: rgba(0, 0, 0, 0.02);
}
body.page-template-page-privacy-policy .gsyncd-hamburger__bar {
    background: #1e1e1e;
}
body.page-template-page-privacy-policy .gsyncd-mobile-menu {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
body.page-template-page-privacy-policy .gsyncd-menu--mobile a {
    color: #1e1e1e;
}

/* Footer */
body.page-template-page-privacy-policy .site-footer {
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.1);
}
body.page-template-page-privacy-policy .footer-logo__img {
    filter: invert(1) brightness(0.2);
    mix-blend-mode: normal;
}
body.page-template-page-privacy-policy .footer-logo__link:hover .footer-logo__img {
    filter: invert(1) brightness(0) drop-shadow(0 0 5px rgba(0,0,0,0.3));
}
body.page-template-page-privacy-policy .footer-nav .gsyncd-menu a {
    color: #555;
}
body.page-template-page-privacy-policy .footer-nav .gsyncd-menu a:hover {
    color: var(--c-accent);
}
body.page-template-page-privacy-policy .footer-copyright__text {
    color: #666;
}

/* Breadcrumbs */
body.page-template-page-privacy-policy .hero__breadcrumbs--centered {
    color: #555555;
}
body.page-template-page-privacy-policy .hero__breadcrumb-link {
    color: #555555;
}
body.page-template-page-privacy-policy .hero__breadcrumb-link:hover {
    color: #1e1e1e;
}
body.page-template-page-privacy-policy .hero__breadcrumb-current {
    color: #2b2b2b;
}

/* Fix button hover contrast on light-themed About/Get to Know Us page */
.about-console .btn--primary:hover {
    color: #000000 !important;
}
.about-console .btn--primary:hover .btn__text,
.about-console .btn--primary:hover .btn__cursor {
    color: #000000 !important;
}
