/* ============================================================
   SiteForge Theme — main.css
   Dark luxury editorial aesthetic
   ============================================================ */

/* ---- DESIGN TOKENS ---- */
:root {
    --bg:        #09090f;
    --surface:   #111118;
    --surface2:  #18181f;
    --border:    rgba(255, 255, 255, 0.07);
    --border-hover: rgba(255, 255, 255, 0.15);
    --accent:    #e8ff47;   /* overridden by customizer */
    --accent2:   #7c5cfc;   /* overridden by customizer */
    --text:      #f0f0f8;
    --muted:     #7a7a8a;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --transition: 0.25s ease;
    --nav-h:     72px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Noise texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

img { max-width: 100%; display: block; }
a  { color: inherit; }
h1, h2, h3, h4 { line-height: 1.15; }
em { font-style: normal; color: var(--accent); }

/* ---- SCROLL REVEAL ---- */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible          { opacity: 1; transform: translateY(0); }
.reveal--delay-1         { transition-delay: 0.08s; }
.reveal--delay-2         { transition-delay: 0.16s; }
.reveal--delay-3         { transition-delay: 0.24s; }
.reveal--delay-4         { transition-delay: 0.32s; }

/* ============================================================
   NAV
   ============================================================ */
.sf-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(9, 9, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    height: var(--nav-h);
    transition: background var(--transition);
}

.sf-nav.scrolled {
    background: rgba(9, 9, 15, 0.95);
}

.sf-nav__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.sf-nav__logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}

.sf-nav__logo img { height: 36px; width: auto; }

.sf-nav__logo-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    display: inline-block;
    flex-shrink: 0;
}

.sf-nav__menu { display: flex; align-items: center; }

.sf-nav__links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.sf-nav__links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 400;
    transition: color var(--transition);
}

.sf-nav__links a:hover { color: var(--text); }

.sf-nav__links .current-menu-item a,
.sf-nav__links .current_page_item a { color: var(--text); }

.sf-nav__cta,
.sf-nav__links a.sf-nav__cta {
    background: var(--accent) !important;
    color: #09090f !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    transition: opacity var(--transition) !important;
}

.sf-nav__cta:hover,
.sf-nav__links a.sf-nav__cta:hover { opacity: 0.82 !important; }

/* Hamburger */
.sf-nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.sf-nav__hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.sf-nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sf-nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.sf-nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   BUTTONS
   ============================================================ */
.sf-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition), background var(--transition);
    padding: 0.8rem 1.8rem;
    border: none;
}

.sf-btn--primary {
    background: var(--accent);
    color: #09090f;
    font-weight: 600;
    box-shadow: 0 0 28px rgba(232, 255, 71, 0.22);
}

.sf-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 42px rgba(232, 255, 71, 0.38);
}

.sf-btn--ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border: 1px solid var(--border);
}

.sf-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
}


/* ============================================================
   SECTION COMMON
   ============================================================ */
.sf-section-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.65rem;
}

.sf-section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.sf-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}


/* ============================================================
   HERO
   ============================================================ */
.sf-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-h) + 4rem) 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.sf-hero__glow {
    position: absolute;
    width: 640px; height: 640px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 92, 252, 0.16) 0%, transparent 70%);
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: sfGlowPulse 6s ease-in-out infinite alternate;
}

.sf-hero__glow--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(232, 255, 71, 0.07) 0%, transparent 70%);
    top: 60%; left: 60%;
    animation-delay: -3s;
}

@keyframes sfGlowPulse {
    from { transform: translate(-50%, -50%) scale(1);    opacity: 0.6; }
    to   { transform: translate(-50%, -50%) scale(1.18); opacity: 1;   }
}

.sf-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 860px;
    width: 100%;
}

.sf-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(232, 255, 71, 0.08);
    border: 1px solid rgba(232, 255, 71, 0.22);
    border-radius: 100px;
    padding: 0.38rem 1rem;
    font-size: 0.76rem;
    color: var(--accent);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 2rem;
}

.sf-hero__badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: sfBlink 2s ease-in-out infinite;
}

@keyframes sfBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

.sf-hero__title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.8rem, 7.5vw, 5.6rem);
    letter-spacing: -0.04em;
    line-height: 1.0;
    margin-bottom: 0;
}

.sf-hero__sub {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 500px;
    line-height: 1.75;
    font-weight: 300;
    margin-top: 1.6rem;
}

.sf-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2.4rem;
    justify-content: center;
}

.sf-hero__stats {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.sf-stat { text-align: center; }

.sf-stat__num {
    font-family: 'Syne', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.sf-stat__label {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.sf-stat__divider {
    width: 1px; height: 44px;
    background: var(--border);
}

/* Scroll hint */
.sf-hero__scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sf-hero__scroll-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--muted);
    animation: sfScrollBounce 2s ease-in-out infinite;
}

@keyframes sfScrollBounce {
    0%, 100% { transform: translateY(0);   opacity: 0.4; }
    50%       { transform: translateY(8px); opacity: 1; }
}

/* Multisite notice */
.sf-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    background: rgba(124, 92, 252, 0.08);
    border: 1px solid rgba(124, 92, 252, 0.2);
    border-radius: var(--radius-md);
    padding: 0.9rem 1.2rem;
    font-size: 0.84rem;
    color: var(--muted);
    max-width: 540px;
    margin-top: 2rem;
    text-align: left;
    line-height: 1.55;
}

.sf-notice__icon {
    color: var(--accent2);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}


/* ============================================================
   DEMO GRID
   ============================================================ */
.sf-demos {
    padding: 5rem 2rem 6rem;
}

.sf-demos__inner {
    max-width: 1300px;
    margin: 0 auto;
}

/* Filter tabs */
.sf-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sf-filter__tab {
    padding: 0.42rem 1.1rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    font-size: 0.82rem;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.sf-filter__tab:hover,
.sf-filter__tab.active {
    background: var(--accent);
    color: #09090f;
    border-color: var(--accent);
    font-weight: 600;
}

/* Grid */
.sf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* Card */
.sf-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.sf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    border-color: var(--border-hover);
}

.sf-card[data-hidden] { display: none; }

/* Thumbnail area */
.sf-card__thumb {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
    background: var(--surface2);
    display: flex;
    flex-direction: column;
}

/* Browser chrome */
.sf-card__browser {
    position: relative;
    z-index: 2;
    height: 32px;
    background: #1c1c26;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.sf-card__browser-dots { display: flex; gap: 5px; flex-shrink: 0; }

.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot--r { background: #ff5f57; }
.dot--y { background: #ffbd2e; }
.dot--g { background: #28c840; }

.sf-card__browser-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    height: 18px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    font-family: 'DM Sans', monospace;
    font-size: 0.62rem;
    color: var(--muted);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* Preview area */
.sf-card__preview {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.sf-card__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.sf-card:hover .sf-card__preview img { transform: scale(1.03); }

/* CSS mock previews */
.sf-card__mock {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sf-card__mock-nav {
    height: 22px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sf-card__mock-hero {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.sf-card__mock-h {
    height: 8px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.7);
    width: 65%;
}

.sf-card__mock-s {
    height: 5px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    width: 45%;
}

.sf-card__mock-btn {
    height: 14px;
    border-radius: 4px;
    width: 55px;
    margin-top: 4px;
    background: var(--accent);
    opacity: 0.8;
}

.sf-card__mock-body {
    padding: 0 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sf-card__mock-bar {
    height: 5px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.12);
    width: 80%;
}

.sf-card__mock-bar--short { width: 50%; }

/* Category-specific mock colours */
.sf-card__mock--business   .sf-card__mock-hero { background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%); }
.sf-card__mock--portfolio  .sf-card__mock-hero { background: linear-gradient(135deg, #2a2a2a 0%, #444 100%); }
.sf-card__mock--e-commerce .sf-card__mock-hero,
.sf-card__mock--ecommerce  .sf-card__mock-hero { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.sf-card__mock--blog       .sf-card__mock-hero { background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%); }
.sf-card__mock--education  .sf-card__mock-hero { background: linear-gradient(135deg, #0a2342 0%, #1a5cb0 100%); }
.sf-card__mock--nonprofit  .sf-card__mock-hero { background: linear-gradient(135deg, #2d6a4f 0%, #40916c 100%); }
.sf-card__mock--general    .sf-card__mock-hero { background: linear-gradient(135deg, #2a2a36 0%, #3a3a48 100%); }

/* Overlay */
.sf-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 9, 15, 0.72);
    display: grid;
    place-items: center;
    opacity: 0;
    transition: opacity var(--transition);
    backdrop-filter: blur(4px);
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.04em;
}

.sf-card:hover .sf-card__overlay { opacity: 1; }

/* Badge */
.sf-card__badge {
    position: absolute;
    top: 44px; left: 10px;
    background: var(--accent2);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    z-index: 3;
}

/* Card body */
.sf-card__body { padding: 1.2rem 1.4rem 1.4rem; }

.sf-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.65rem;
}

.sf-card__tag {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.22rem 0.65rem;
    border-radius: 4px;
    font-weight: 600;
}

.tag-business   { background: rgba(59,  130, 246, 0.14); color: #93c5fd; }
.tag-portfolio  { background: rgba(232, 255,  71, 0.10); color: var(--accent); }
.tag-ecommerce  { background: rgba(239,  68,  68, 0.12); color: #fca5a5; }
.tag-blog       { background: rgba( 52, 211, 153, 0.12); color: #6ee7b7; }
.tag-education  { background: rgba(251, 191,  36, 0.12); color: #fcd34d; }
.tag-nonprofit  { background: rgba( 52, 211, 153, 0.10); color: #6ee7b7; }
.tag-general    { background: rgba(255, 255, 255, 0.06); color: var(--muted); }

.sf-card__status {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sf-card__status--live {
    background: #34d399;
    box-shadow: 0 0 6px #34d399;
}

.sf-card__status--soon {
    background: var(--muted);
}

.sf-card__title {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}

.sf-card__desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sf-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--border);
}

.sf-card__url {
    font-size: 0.7rem;
    color: var(--muted);
    font-family: 'DM Sans', monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
}

.sf-card__arrow {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    color: var(--muted);
    transition: all var(--transition);
}

.sf-card:hover .sf-card__arrow {
    background: var(--accent);
    border-color: var(--accent);
    color: #09090f;
}

/* Empty states */
.sf-empty {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--muted);
}

.sf-empty__icon { font-size: 3rem; margin-bottom: 1rem; }
.sf-empty h3    { font-family: 'Syne', sans-serif; font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--text); }
.sf-empty p     { font-size: 0.9rem; }

.sf-grid__empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--muted);
    font-size: 0.9rem;
    grid-column: 1 / -1;
}


/* ============================================================
   FEATURES
   ============================================================ */
.sf-features {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 2rem;
}

.sf-features__inner { max-width: 1300px; margin: 0 auto; }

.sf-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.sf-feat {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    transition: border-color var(--transition), transform var(--transition);
}

.sf-feat:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.sf-feat__icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.sf-feat__icon--yellow { background: rgba(232, 255,  71, 0.1); }
.sf-feat__icon--purple { background: rgba(124,  92, 252, 0.12); }
.sf-feat__icon--green  { background: rgba( 52, 211, 153, 0.1); }
.sf-feat__icon--blue   { background: rgba( 59, 130, 246, 0.1); }
.sf-feat__icon--orange { background: rgba(251, 146,  60, 0.1); }

.sf-feat__title {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.sf-feat__desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.65;
}


/* ============================================================
   CTA
   ============================================================ */
.sf-cta { padding: 5rem 2rem; }

.sf-cta__inner { max-width: 1300px; margin: 0 auto; }

.sf-cta__box {
    background: linear-gradient(135deg,
        rgba(124, 92, 252, 0.1) 0%,
        rgba(232, 255,  71, 0.05) 100%);
    border: 1px solid rgba(124, 92, 252, 0.18);
    border-radius: 20px;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sf-cta__glow {
    position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 92, 252, 0.14), transparent 70%);
    top: -80px; right: -60px;
    pointer-events: none;
}

.sf-cta__title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 1rem 0;
}

.sf-cta__desc {
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.sf-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}


/* ============================================================
   FOOTER
   ============================================================ */
.sf-footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 2rem;
    background: var(--bg);
}

.sf-footer__inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.sf-footer__brand { display: flex; flex-direction: column; gap: 0.4rem; }

.sf-footer__logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.03em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.sf-footer__tagline { font-size: 0.8rem; color: var(--muted); }

.sf-footer__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
}

.sf-footer__copy {
    font-size: 0.8rem;
    color: var(--muted);
}

.sf-footer__copy a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.sf-footer__copy a:hover { color: var(--text); }

.sf-footer__nav {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.sf-footer__nav a {
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    transition: color var(--transition);
}

.sf-footer__nav a:hover { color: var(--text); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .sf-nav__hamburger  { display: flex; }
    .sf-nav__menu {
        display: none;
        position: absolute;
        top: var(--nav-h); left: 0; right: 0;
        background: rgba(9, 9, 15, 0.97);
        border-bottom: 1px solid var(--border);
        padding: 1.5rem 2rem;
        backdrop-filter: blur(20px);
    }
    .sf-nav__menu.open  { display: flex; }
    .sf-nav__links { flex-direction: column; gap: 1.2rem; }
    .sf-section-header { flex-direction: column; align-items: flex-start; }
    .sf-hero__stats { gap: 1.5rem; }
    .sf-cta__box { padding: 3rem 1.5rem; }
    .sf-footer__inner { flex-direction: column; align-items: flex-start; }
    .sf-footer__meta   { align-items: flex-start; }
}

@media (max-width: 600px) {
    .sf-grid { grid-template-columns: 1fr; }
    .sf-stat__divider { display: none; }
    .sf-hero__stats { flex-direction: row; justify-content: center; gap: 2rem; }
    .sf-hero__title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
}

/* ============================================================
   WORDPRESS ADMIN BAR OFFSET
   ============================================================ */
.admin-bar .sf-nav { top: 32px; }
@media screen and (max-width: 782px) {
    .admin-bar .sf-nav { top: 46px; }
}
